mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
streamerize printing of dbg_value, the x86 backend is now fully
streamerized for everything. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100316 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bfbab35653
commit
1ce3f565ef
@ -381,7 +381,6 @@ void X86AsmPrinter::PrintDebugValueComment(const MachineInstr *MI,
|
||||
}
|
||||
O << "+";
|
||||
printOperand(MI, NOps-2, O);
|
||||
OutStreamer.AddBlankLine();
|
||||
}
|
||||
|
||||
|
||||
@ -389,8 +388,12 @@ void X86AsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
||||
X86MCInstLower MCInstLowering(OutContext, Mang, *this);
|
||||
switch (MI->getOpcode()) {
|
||||
case TargetOpcode::DBG_VALUE:
|
||||
if (VerboseAsm)
|
||||
PrintDebugValueComment(MI, O);
|
||||
if (VerboseAsm && OutStreamer.hasRawTextSupport()) {
|
||||
std::string TmpStr;
|
||||
raw_string_ostream OS(TmpStr);
|
||||
PrintDebugValueComment(MI, OS);
|
||||
OutStreamer.EmitRawText(StringRef(OS.str()));
|
||||
}
|
||||
return;
|
||||
|
||||
case X86::MOVPC32r: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user