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:
Chris Lattner 2009-07-10 22:34:11 +00:00
parent bbf1caa46b
commit 226b60827e
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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))]>;