aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-09-15 21:44:00 +0000
committerChris Lattner <sabre@nondot.org>2005-09-15 21:44:00 +0000
commit4ac85b3e94b5eca5c8e6decea570f207daee419f (patch)
tree969232ab356e4029b8709bdf00618f74798bccf8 /lib/Target
parentabbb605d806d177ac99292fe217fc80b84f06652 (diff)
downloadexternal_llvm-4ac85b3e94b5eca5c8e6decea570f207daee419f.zip
external_llvm-4ac85b3e94b5eca5c8e6decea570f207daee419f.tar.gz
external_llvm-4ac85b3e94b5eca5c8e6decea570f207daee419f.tar.bz2
disable this for now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23366 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/PowerPC/PPCInstrInfo.td2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td
index d762acd..705fcea 100644
--- a/lib/Target/PowerPC/PPCInstrInfo.td
+++ b/lib/Target/PowerPC/PPCInstrInfo.td
@@ -775,9 +775,11 @@ def : Pat<(xor GPRC:$in, imm:$imm),
(XORIS (XORI GPRC:$in, (LO16 imm:$imm)), (HI16 imm:$imm))>;
// Same as above, but using a temporary.
+/*
def : Pattern<(xor GPRC:$in, imm:$imm),
[(set GPRC:$tmp, (XORI GPRC:$in, (LO16 imm:$imm))),
(XORIS GPRC:$tmp, (HI16 imm:$imm))]>;
+*/
//===----------------------------------------------------------------------===//