aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-09-29 22:37:24 +0000
committerChris Lattner <sabre@nondot.org>2005-09-29 22:37:24 +0000
commit0a1cd715d4f82e861cb7b21a5767ff898de87d51 (patch)
treebc7c3b39f2fa166a3384ccf9056fb56abcd65afc /llvm/lib/Target
parent366fe043013916eac88eabcc25ae9281969325c0 (diff)
downloadllvm-0a1cd715d4f82e861cb7b21a5767ff898de87d51.zip
llvm-0a1cd715d4f82e861cb7b21a5767ff898de87d51.tar.gz
llvm-0a1cd715d4f82e861cb7b21a5767ff898de87d51.tar.bz2
tblgen autogens this pattern now
llvm-svn: 23530
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r--llvm/lib/Target/PowerPC/PowerPCInstrInfo.td6
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCInstrInfo.td b/llvm/lib/Target/PowerPC/PowerPCInstrInfo.td
index 46ccd63..41ad224 100644
--- a/llvm/lib/Target/PowerPC/PowerPCInstrInfo.td
+++ b/llvm/lib/Target/PowerPC/PowerPCInstrInfo.td
@@ -796,16 +796,10 @@ def RLDICR : MDForm_1<30, 1,
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))>;