diff options
author | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-02-12 15:39:20 +0000 |
---|---|---|
committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-02-12 15:39:20 +0000 |
commit | abe212a3b80e5749d5ff8320301a8fc273c59d11 (patch) | |
tree | bf53fdf4db49321a741ad2d0023ae732ae543dce /llvm/lib/MC/MCAsmInfo.cpp | |
parent | 8ab205fb74b39da46e83dadbb91452e0ff186919 (diff) | |
download | llvm-abe212a3b80e5749d5ff8320301a8fc273c59d11.zip llvm-abe212a3b80e5749d5ff8320301a8fc273c59d11.tar.gz llvm-abe212a3b80e5749d5ff8320301a8fc273c59d11.tar.bz2 |
Revert r201237+r201238: Demote EmitRawText call in AsmPrinter::EmitInlineAsm() and remove hasRawTextSupport() call
It introduced multiple test failures in the buildbots.
llvm-svn: 201241
Diffstat (limited to 'llvm/lib/MC/MCAsmInfo.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfo.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/lib/MC/MCAsmInfo.cpp b/llvm/lib/MC/MCAsmInfo.cpp index 0243f00..7ece272 100644 --- a/llvm/lib/MC/MCAsmInfo.cpp +++ b/llvm/lib/MC/MCAsmInfo.cpp @@ -86,20 +86,6 @@ MCAsmInfo::MCAsmInfo() { DwarfRegNumForCFI = false; NeedsDwarfSectionOffsetDirective = false; UseParensForSymbolVariant = false; - - // FIXME: Clang's logic should be synced with the logic used to initialize - // this member and the two implementations should be merged. - // For reference: - // - Solaris always enables the integrated assembler by default - // - SparcELFMCAsmInfo and X86ELFMCAsmInfo are handling this case - // - Windows always enables the integrated assembler by default - // - MCAsmInfoCOFF is handling this case, should it be MCAsmInfoMicrosoft? - // - MachO targets always enables the integrated assembler by default - // - MCAsmInfoDarwin is handling this case - // - Generic_GCC toolchains enable the integrated assembler on a per - // architecture basis. - // - The target subclasses for AArch64, ARM, and X86 handle these cases - UseIntegratedAssembler = false; } MCAsmInfo::~MCAsmInfo() { |