remove redundant/dead vars

llvm-svn: 31434
This commit is contained in:
Chris Lattner 2006-11-03 23:47:20 +00:00
parent 895d199348
commit eb7128465d
1 changed files with 0 additions and 2 deletions

View File

@ -73,12 +73,10 @@ def ADDRri : ComplexPattern<i32, 2, "SelectADDRri", [frameindex], []>;
// Address operands // Address operands
def MEMrr : Operand<i32> { def MEMrr : Operand<i32> {
let PrintMethod = "printMemOperand"; let PrintMethod = "printMemOperand";
let NumMIOperands = 2;
let MIOperandInfo = (ops IntRegs, IntRegs); let MIOperandInfo = (ops IntRegs, IntRegs);
} }
def MEMri : Operand<i32> { def MEMri : Operand<i32> {
let PrintMethod = "printMemOperand"; let PrintMethod = "printMemOperand";
let NumMIOperands = 2;
let MIOperandInfo = (ops IntRegs, i32imm); let MIOperandInfo = (ops IntRegs, i32imm);
} }