R600/SI: Remove MachineFunction dump from AsmPrinter

The dump was dependent on a feature string, which meant that it couldn't
be disabled or enable on a per compile basis.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225275 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tom Stellard
2015-01-06 17:59:56 +00:00
parent e46783d5b7
commit 7d710486d4

View File

@ -161,12 +161,8 @@ bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
} }
} }
if (STM.dumpCode()) { if (STM.dumpCode() && DisasmEnabled) {
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
MF.dump();
#endif
if (DisasmEnabled) {
OutStreamer.SwitchSection(Context.getELFSection(".AMDGPU.disasm", OutStreamer.SwitchSection(Context.getELFSection(".AMDGPU.disasm",
ELF::SHT_NOTE, 0, ELF::SHT_NOTE, 0,
SectionKind::getReadOnly())); SectionKind::getReadOnly()));
@ -179,7 +175,6 @@ bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
OutStreamer.EmitBytes(StringRef(Comment)); OutStreamer.EmitBytes(StringRef(Comment));
} }
} }
}
return false; return false;
} }