mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +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,23 +161,18 @@ 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()));
|
||||
OutStreamer.SwitchSection(Context.getELFSection(".AMDGPU.disasm",
|
||||
ELF::SHT_NOTE, 0,
|
||||
SectionKind::getReadOnly()));
|
||||
|
||||
for (size_t i = 0; i < DisasmLines.size(); ++i) {
|
||||
std::string Comment(DisasmLineMaxLen - DisasmLines[i].size(), ' ');
|
||||
Comment += " ; " + HexLines[i] + "\n";
|
||||
for (size_t i = 0; i < DisasmLines.size(); ++i) {
|
||||
std::string Comment(DisasmLineMaxLen - DisasmLines[i].size(), ' ');
|
||||
Comment += " ; " + HexLines[i] + "\n";
|
||||
|
||||
OutStreamer.EmitBytes(StringRef(DisasmLines[i]));
|
||||
OutStreamer.EmitBytes(StringRef(Comment));
|
||||
}
|
||||
OutStreamer.EmitBytes(StringRef(DisasmLines[i]));
|
||||
OutStreamer.EmitBytes(StringRef(Comment));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user