Add a priority queue class, which is a wrapper around std::priority_queue
[oota-llvm.git] / test / Transforms / InstCombine / cast-and-cast.ll
index 6a1a803aebf86282ec7dca48a551183b24e85495..f90cb7499aff79b194932fd403c1e53a8fb2363d 100644 (file)
@@ -1,19 +1,17 @@
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep bitcast
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
+; RUN:   not grep bitcast
 
-;; This requires Reid to remove the instcombine hack that turns trunc to bool into setne.
-; XFAIL: *
-
-
-bool %test1(uint %val) {
-  %t1 = bitcast uint %val to int 
-  %t2 = and int %t1, 1
-  %t3 = trunc int %t2 to bool
-  ret bool %t3
+define i1 @test1(i32 %val) {
+        %t1 = bitcast i32 %val to i32           ; <i32> [#uses=1]
+        %t2 = and i32 %t1, 1            ; <i32> [#uses=1]
+        %t3 = trunc i32 %t2 to i1               ; <i1> [#uses=1]
+        ret i1 %t3
 }
 
-short %test1(uint %val) {
-  %t1 = bitcast uint %val to int 
-  %t2 = and int %t1, 1
-  %t3 = trunc int %t2 to short
-  ret short %t3
+define i16 @test1.upgrd.1(i32 %val) {
+        %t1 = bitcast i32 %val to i32           ; <i32> [#uses=1]
+        %t2 = and i32 %t1, 1            ; <i32> [#uses=1]
+        %t3 = trunc i32 %t2 to i16              ; <i16> [#uses=1]
+        ret i16 %t3
 }
+