mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
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:
parent
e46783d5b7
commit
7d710486d4
@ -161,12 +161,8 @@ bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
||||
}
|
||||
}
|
||||
|
||||
if (STM.dumpCode()) {
|
||||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
||||
MF.dump();
|
||||
#endif
|
||||
if (STM.dumpCode() && DisasmEnabled) {
|
||||
|
||||
if (DisasmEnabled) {
|
||||
OutStreamer.SwitchSection(Context.getELFSection(".AMDGPU.disasm",
|
||||
ELF::SHT_NOTE, 0,
|
||||
SectionKind::getReadOnly()));
|
||||
@ -179,7 +175,6 @@ bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
||||
OutStreamer.EmitBytes(StringRef(Comment));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user