Add a priority queue class, which is a wrapper around std::priority_queue
[oota-llvm.git] / test / Transforms / InstCombine / apint-div1.ll
index b11b8bc24fb6e1fbe7f9e8d45013afe0981e9dc1..e9aa579b958356cc63b455b4e308c46581e04e5c 100644 (file)
@@ -1,10 +1,8 @@
 ; This test makes sure that div instructions are properly eliminated.
 ; This test is for Integer BitWidth < 64 && BitWidth % 2 != 0.
 ;
-
 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep div
 
-implementation
 
 define i33 @test1(i33 %X) {
     %Y = udiv i33 %X, 4096
@@ -17,8 +15,8 @@ define i49 @test2(i49 %X) {
     ret i49 %Y
 }
 
-define i59 @test3(i59 %X, bool %C) {
-        %V = select bool %C, i59 1024, i59 4096
+define i59 @test3(i59 %X, i1 %C) {
+        %V = select i1 %C, i59 1024, i59 4096
         %R = udiv i59 %X, %V
         ret i59 %R
 }