Add enforce known alignment test with address space
[oota-llvm.git] / test / Transforms / InstCombine / and-compare.ll
index 8969f98fc187f5dee774ac3691486489b546b2e1..c30a245e4156587dff289156a765456b4a15970d 100644 (file)
@@ -1,11 +1,11 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
+; RUN: opt < %s -instcombine -S | \
 ; 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
 }