summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2012-3-15-or-xor-constant.ll
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2012-03-16 00:52:42 +0000
committerEli Friedman <eli.friedman@gmail.com>2012-03-16 00:52:42 +0000
commite9f15c8a563a745c5cafa7c98b1f12de2dcab070 (patch)
treedf4af33b10b43d8c5900d38c2d6b9cc994d8df6c /test/Transforms/InstCombine/2012-3-15-or-xor-constant.ll
parent213d2e7dc31bef3ceeef0cefa703cb4ce52de51a (diff)
downloadllvm-e9f15c8a563a745c5cafa7c98b1f12de2dcab070.tar.gz
llvm-e9f15c8a563a745c5cafa7c98b1f12de2dcab070.tar.bz2
llvm-e9f15c8a563a745c5cafa7c98b1f12de2dcab070.tar.xz
In InstCombiner::visitOr, make sure we reverse the operand swap used for checking for or-of-xor operations after those checks; a later check expects that any constant will be in Op1. PR12234.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152884 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/2012-3-15-or-xor-constant.ll')
-rw-r--r--test/Transforms/InstCombine/2012-3-15-or-xor-constant.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/2012-3-15-or-xor-constant.ll b/test/Transforms/InstCombine/2012-3-15-or-xor-constant.ll
new file mode 100644
index 0000000000..c1602da4c8
--- /dev/null
+++ b/test/Transforms/InstCombine/2012-3-15-or-xor-constant.ll
@@ -0,0 +1,12 @@
+; RUN: opt < %s -instcombine -S | FileCheck %s
+; PR12234
+
+@g = extern_weak global i32
+define i32 @function(i32 %x) nounwind {
+entry:
+ %xor = xor i32 %x, 1
+ store volatile i32 %xor, i32* inttoptr (i64 1 to i32*), align 4
+ %or4 = or i32 or (i32 zext (i1 icmp eq (i32* @g, i32* null) to i32), i32 1), %xor
+ ret i32 %or4
+}
+; CHECK: define i32 @function