llvm-mirror/test/Transforms/InstCombine/2005-06-15-DivSelectCrash.ll
Dan Gohman 8d84372836 Change these tests to feed the assembly files to opt directly, instead
of using llvm-as, now that opt supports this.

llvm-svn: 81226
2009-09-08 16:50:01 +00:00

11 lines
458 B
LLVM

; RUN: opt %s -instcombine -disable-output
define i32 @_Z13func_31585107li(i32 %l_39521025, i32 %l_59244666) {
%shortcirc_val = select i1 false, i32 1, i32 0 ; <i32> [#uses=1]
%tmp.8 = udiv i32 0, %shortcirc_val ; <i32> [#uses=1]
%tmp.9 = icmp eq i32 %tmp.8, 0 ; <i1> [#uses=1]
%retval = select i1 %tmp.9, i32 %l_59244666, i32 -1621308501 ; <i32> [#uses=1]
ret i32 %retval
}