[llvm-commits] CVS: llvm/lib/Target/PowerPC/PowerPCInstrInfo.td

Chris Lattner lattner at cs.uiuc.edu
Thu Sep 29 15:37:36 PDT 2005



Changes in directory llvm/lib/Target/PowerPC:

PowerPCInstrInfo.td updated: 1.112 -> 1.113
---
Log message:

tblgen autogens this pattern now


---
Diffs of the changes:  (+0 -6)

 PowerPCInstrInfo.td |    6 ------
 1 files changed, 6 deletions(-)


Index: llvm/lib/Target/PowerPC/PowerPCInstrInfo.td
diff -u llvm/lib/Target/PowerPC/PowerPCInstrInfo.td:1.112 llvm/lib/Target/PowerPC/PowerPCInstrInfo.td:1.113
--- llvm/lib/Target/PowerPC/PowerPCInstrInfo.td:1.112	Thu Sep 29 14:29:15 2005
+++ llvm/lib/Target/PowerPC/PowerPCInstrInfo.td	Thu Sep 29 17:37:24 2005
@@ -796,16 +796,10 @@
 def : Pat<(i32 imm:$imm),
           (ORI (LIS (HI16 imm:$imm)), (LO16 imm:$imm))>;
 
-
 // Implement the 'not' operation with the NOR instruction.
 def NOT : Pat<(not GPRC:$in),
               (NOR GPRC:$in, GPRC:$in)>;
 
-// EQV patterns
-// FIXME: This should be autogenerated from the above due to xor association.
-def EQV1 : Pat<(xor (not GPRC:$in1), GPRC:$in2),
-               (EQV GPRC:$in1, GPRC:$in2)>;
-
 // ADD an arbitrary immediate.
 def : Pat<(add GPRC:$in, imm:$imm),
           (ADDIS (ADDI GPRC:$in, (LO16 imm:$imm)), (HA16 imm:$imm))>;






More information about the llvm-commits mailing list