[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / InstCombine / urem-simplify-bug.ll
blob4f18f3598540756f8abd99e3577c6245a0d44989
1 ; RUN: opt < %s -instcombine -S | FileCheck %s
3 @.str = internal constant [5 x i8] c"foo\0A\00"
4 @.str1 = internal constant [5 x i8] c"bar\0A\00"
6 define i32 @main() nounwind  {
7 entry:
8   %x = call i32 @func_11() nounwind
9   %tmp3 = or i32 %x, -5
10   %tmp5 = urem i32 251, %tmp3
11   %tmp6 = icmp ne i32 %tmp5, 0
12   %tmp67 = zext i1 %tmp6 to i32
13   %tmp9 = urem i32 %tmp67, 95
14   %tmp10 = and i32 %tmp9, 1
15   %tmp12 = icmp eq i32 %tmp10, 0
16   br i1 %tmp12, label %bb14, label %bb
18 bb:
19   br label %bb15
21 bb14:
22   br label %bb15
24 bb15:
25   %iftmp.0.0 = phi i8* [ getelementptr ([5 x i8], [5 x i8]* @.str1, i32 0, i32 0), %bb14 ], [ getelementptr ([5 x i8], [5 x i8]* @.str, i32 0, i32 0), %bb ]
26   %tmp17 = call i32 (i8*, ...) @printf(i8* %iftmp.0.0) nounwind
27   ret i32 0
30 ; CHECK-LABEL: define i32 @main(
31 ; CHECK: call i32 @func_11()
32 ; CHECK-NEXT: br i1 false, label %bb14, label %bb
34 declare i32 @func_11()
36 declare i32 @printf(i8*, ...) nounwind