From: Bill Wendling Date: Mon, 21 Mar 2011 05:02:03 +0000 (+0000) Subject: Pass in the TargetMachine parameter to the inst printer. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad3dfbe463cb72f2b99a8b5ff3cab92ccfbaa9ea;p=clang Pass in the TargetMachine parameter to the inst printer. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127987 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/driver/cc1as_main.cpp b/tools/driver/cc1as_main.cpp index 1d544f3d3c..643bd412be 100644 --- a/tools/driver/cc1as_main.cpp +++ b/tools/driver/cc1as_main.cpp @@ -275,7 +275,7 @@ static bool ExecuteAssembler(AssemblerInvocation &Opts, Diagnostic &Diags) { // FIXME: There is a bit of code duplication with addPassesToEmitFile. if (Opts.OutputType == AssemblerInvocation::FT_Asm) { MCInstPrinter *IP = - TheTarget->createMCInstPrinter(Opts.OutputAsmVariant, *MAI); + TheTarget->createMCInstPrinter(*TM, Opts.OutputAsmVariant, *MAI); MCCodeEmitter *CE = 0; TargetAsmBackend *TAB = 0; if (Opts.ShowEncoding) {