No need to call the InitializeAll* functions.
authorChad Rosier <mcrosier@apple.com>
Tue, 2 Oct 2012 16:41:12 +0000 (16:41 +0000)
committerChad Rosier <mcrosier@apple.com>
Tue, 2 Oct 2012 16:41:12 +0000 (16:41 +0000)
llvm-svn: 165025

clang/lib/Sema/SemaStmtAsm.cpp

index af59e34..81ae7e7 100644 (file)
@@ -522,11 +522,6 @@ StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
   // AsmParser doesn't fully support these asm statements.
   if (bailOnMSAsm(Pieces)) { DEF_SIMPLE_MSASM(EmptyAsmStr); return Owned(NS); }
 
-  // Initialize targets and assembly printers/parsers.
-  llvm::InitializeAllTargetInfos();
-  llvm::InitializeAllTargetMCs();
-  llvm::InitializeAllAsmParsers();
-
   // Get the target specific parser.
   std::string Error;
   const std::string &TT = Context.getTargetInfo().getTriple().getTriple();