mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
remove the "debug" modifier, it is only used by one instruction which can
never be generated. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75305 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -392,7 +392,7 @@ void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
|
|||||||
}
|
}
|
||||||
|
|
||||||
case MachineOperand::MO_Immediate:
|
case MachineOperand::MO_Immediate:
|
||||||
if (!Modifier || (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
|
if (!Modifier || strcmp(Modifier, "mem"))
|
||||||
O << '$';
|
O << '$';
|
||||||
O << MO.getImm();
|
O << MO.getImm();
|
||||||
return;
|
return;
|
||||||
|
@@ -3143,7 +3143,7 @@ def FS_MOV32rm : I<0x8B, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
|
|||||||
|
|
||||||
def DWARF_LOC : I<0, Pseudo, (outs),
|
def DWARF_LOC : I<0, Pseudo, (outs),
|
||||||
(ins i32imm:$line, i32imm:$col, i32imm:$file),
|
(ins i32imm:$line, i32imm:$col, i32imm:$file),
|
||||||
".loc\t${file:debug} ${line:debug} ${col:debug}",
|
".loc\t$file $line $col",
|
||||||
[(dwarf_loc (i32 imm:$line), (i32 imm:$col),
|
[(dwarf_loc (i32 imm:$line), (i32 imm:$col),
|
||||||
(i32 imm:$file))]>;
|
(i32 imm:$file))]>;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user