summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/and-compare.ll
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2008-03-09 08:16:40 +0000
committerTanya Lattner <tonic@nondot.org>2008-03-09 08:16:40 +0000
commit76806b6a434ad5477727d3733d18fe309a1281fe (patch)
tree52f42bc2ac7b48d2e9f86d81304d55c8c777daa5 /test/Transforms/InstCombine/and-compare.ll
parent90b347dc90a0f002ac5ac1e990991f98371f730b (diff)
downloadllvm-76806b6a434ad5477727d3733d18fe309a1281fe.tar.gz
llvm-76806b6a434ad5477727d3733d18fe309a1281fe.tar.bz2
llvm-76806b6a434ad5477727d3733d18fe309a1281fe.tar.xz
Remove llvm-upgrade and update tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48103 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/and-compare.ll')
-rw-r--r--test/Transforms/InstCombine/and-compare.ll12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Transforms/InstCombine/and-compare.ll b/test/Transforms/InstCombine/and-compare.ll
index 8969f98fc1..d2f2753f88 100644
--- a/test/Transforms/InstCombine/and-compare.ll
+++ b/test/Transforms/InstCombine/and-compare.ll
@@ -1,11 +1,11 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
; RUN: grep and | count 1
; Should be optimized to one and.
-bool %test1(uint %a, uint %b) {
- %tmp1 = and uint %a, 65280
- %tmp3 = and uint %b, 65280
- %tmp = setne uint %tmp1, %tmp3
- ret bool %tmp
+define i1 @test1(i32 %a, i32 %b) {
+ %tmp1 = and i32 %a, 65280 ; <i32> [#uses=1]
+ %tmp3 = and i32 %b, 65280 ; <i32> [#uses=1]
+ %tmp = icmp ne i32 %tmp1, %tmp3 ; <i1> [#uses=1]
+ ret i1 %tmp
}