[llvm-commits] CVS: llvm/lib/Target/X86/X86InstrInfo.td

Evan Cheng evan.cheng at apple.com
Wed Dec 7 18:15:18 PST 2005



Changes in directory llvm/lib/Target/X86:

X86InstrInfo.td updated: 1.149 -> 1.150
---
Log message:

Added explicit type field to ComplexPattern.


---
Diffs of the changes:  (+2 -2)

 X86InstrInfo.td |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Target/X86/X86InstrInfo.td
diff -u llvm/lib/Target/X86/X86InstrInfo.td:1.149 llvm/lib/Target/X86/X86InstrInfo.td:1.150
--- llvm/lib/Target/X86/X86InstrInfo.td:1.149	Wed Dec  7 20:01:35 2005
+++ llvm/lib/Target/X86/X86InstrInfo.td	Wed Dec  7 20:15:07 2005
@@ -47,8 +47,8 @@
 def brtarget : Operand<OtherVT>;
 
 // Define X86 specific addressing mode.
-def addr    : ComplexPattern<4, "SelectAddr", []>;
-def leaaddr : ComplexPattern<4, "SelectLEAAddr", [add]>;
+def addr    : ComplexPattern<i32, 4, "SelectAddr", []>;
+def leaaddr : ComplexPattern<i32, 4, "SelectLEAAddr", [add]>;
 
 // Format specifies the encoding used by the instruction.  This is part of the
 // ad-hoc solution used to emit machine instruction encodings by our machine






More information about the llvm-commits mailing list