forked from OSchip/llvm-project
remove the "debug" modifier, it is only used by one instruction which can
never be generated. llvm-svn: 75305
This commit is contained in:
parent
94575aacc1
commit
2745607dc6
|
@ -392,7 +392,7 @@ void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
|
|||
}
|
||||
|
||||
case MachineOperand::MO_Immediate:
|
||||
if (!Modifier || (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
|
||||
if (!Modifier || strcmp(Modifier, "mem"))
|
||||
O << '$';
|
||||
O << MO.getImm();
|
||||
return;
|
||||
|
|
|
@ -3143,7 +3143,7 @@ def FS_MOV32rm : I<0x8B, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
|
|||
|
||||
def DWARF_LOC : I<0, Pseudo, (outs),
|
||||
(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),
|
||||
(i32 imm:$file))]>;
|
||||
|
||||
|
|
Loading…
Reference in New Issue