Address issues found by Duncan during post-commit review of r177856.
[oota-llvm.git] / test / Transforms / InstCombine / 2005-06-16-RangeCrash.ll
index a586d87cac90aeeb1079be8c84195fe501b3d3a5..f0e60aca59f5d150ec15c5e40e10e8b3a9580d32 100644 (file)
@@ -1,7 +1,9 @@
-; RUN: llvm-as < %s | opt -instcombine -disable-output
+; RUN: opt < %s -instcombine -disable-output
 ; PR585
-bool %test() {
-       %tmp.26 = div int 0, -2147483648                ; <int> [#uses=1]
-       %tmp.27 = seteq int %tmp.26, 0          ; <bool> [#uses=1]
-       ret bool %tmp.27
+
+define i1 @test() {
+        %tmp.26 = sdiv i32 0, -2147483648               ; <i32> [#uses=1]
+        %tmp.27 = icmp eq i32 %tmp.26, 0                ; <i1> [#uses=1]
+        ret i1 %tmp.27
 }
+