remove the "debug" modifier, it is only used by one instruction which can

never be generated.

llvm-svn: 75305
This commit is contained in:
Chris Lattner 2009-07-10 22:34:11 +00:00
parent 94575aacc1
commit 2745607dc6
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))]>;