summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/icmp.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2012-01-27 01:44:03 +0000
committerChris Lattner <sabre@nondot.org>2012-01-27 01:44:03 +0000
commitf983da030e8295ae0f9a74d1185f999485f792b3 (patch)
treec033072ddf8ee19c88d4a40ab993493c9a1f6436 /test/Transforms/InstCombine/icmp.ll
parentcb5dca38157a48c734660746e7f7340d5db7c2db (diff)
downloadllvm-f983da030e8295ae0f9a74d1185f999485f792b3.tar.gz
llvm-f983da030e8295ae0f9a74d1185f999485f792b3.tar.bz2
llvm-f983da030e8295ae0f9a74d1185f999485f792b3.tar.xz
enhance constant folding to be able to constant fold bitcast of
ConstantVector's to integer type. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149110 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/icmp.ll')
-rw-r--r--test/Transforms/InstCombine/icmp.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/icmp.ll b/test/Transforms/InstCombine/icmp.ll
index 5e483cbac4..6e91ed20c0 100644
--- a/test/Transforms/InstCombine/icmp.ll
+++ b/test/Transforms/InstCombine/icmp.ll
@@ -121,8 +121,8 @@ define i1 @test12(i1 %A) {
%B = icmp ne i64 bitcast (<2 x i32> <i32 1, i32 -1> to i64), %S
ret i1 %B
; CHECK: @test12
-; CHECK-NEXT: %B = select i1
-; CHECK-NEXT: ret i1 %B
+; CHECK-NEXT: = xor i1 %A, true
+; CHECK-NEXT: ret i1
}
; PR6481