diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-29 22:37:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-29 22:37:24 +0000 |
commit | c7a37a52cd05c27aa0ddf743bfaf02cee4a2580e (patch) | |
tree | e93f859020efc6ec27cdd49bee61935c1059d1d0 | |
parent | af302914d1f77e95910abbc5e6f61de6e69ea1ef (diff) |
tblgen autogens this pattern now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23530 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index 46ccd639ba..41ad224466 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.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))>; |