[x86] Fix disassembly of callw instruction
[oota-llvm.git] / test / Transforms / InstCombine / apint-div1.ll
index 4c394f6a1642e8287f602daf72c1229da22d27e1..68aadac1de44fd27d4de55799ebead5d77e87b3f 100644 (file)
@@ -1,8 +1,7 @@
 ; 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
+; RUN: opt < %s -instcombine -S | not grep div
 
 
 define i33 @test1(i33 %X) {
@@ -16,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
 }