[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / InstCombine / 2006-12-15-Range-Test.ll
blob3d08ae5e4012a7db84d59c1ca951d0159fe4c383
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -instcombine -S | FileCheck %s
4 target datalayout = "e-p:32:32"
5 target triple = "i686-pc-linux-gnu"
6 @r = external global [17 x i32]         ; <[17 x i32]*> [#uses=1]
8 define i1 @print_pgm_cond_true(i32 %tmp12.reload, i32* %tmp16.out) {
9 ; CHECK-LABEL: @print_pgm_cond_true(
10 ; CHECK-NEXT:  newFuncRoot:
11 ; CHECK-NEXT:    br label [[COND_TRUE:%.*]]
12 ; CHECK:       bb27.exitStub:
13 ; CHECK-NEXT:    store i32 [[TMP16:%.*]], i32* [[TMP16_OUT:%.*]], align 4
14 ; CHECK-NEXT:    ret i1 true
15 ; CHECK:       cond_next23.exitStub:
16 ; CHECK-NEXT:    store i32 [[TMP16]], i32* [[TMP16_OUT]], align 4
17 ; CHECK-NEXT:    ret i1 false
18 ; CHECK:       cond_true:
19 ; CHECK-NEXT:    [[TMP15:%.*]] = getelementptr [17 x i32], [17 x i32]* @r, i32 0, i32 [[TMP12_RELOAD:%.*]]
20 ; CHECK-NEXT:    [[TMP16]] = load i32, i32* [[TMP15]], align 4
21 ; CHECK-NEXT:    [[TMP16_OFF:%.*]] = add i32 [[TMP16]], 31
22 ; CHECK-NEXT:    [[TMP0:%.*]] = icmp ugt i32 [[TMP16_OFF]], 62
23 ; CHECK-NEXT:    br i1 [[TMP0]], label [[BB27_EXITSTUB:%.*]], label [[COND_NEXT23_EXITSTUB:%.*]]
25 newFuncRoot:
26   br label %cond_true
28 bb27.exitStub:          ; preds = %cond_true
29   store i32 %tmp16, i32* %tmp16.out
30   ret i1 true
32 cond_next23.exitStub:           ; preds = %cond_true
33   store i32 %tmp16, i32* %tmp16.out
34   ret i1 false
36 cond_true:              ; preds = %newFuncRoot
37   %tmp15 = getelementptr [17 x i32], [17 x i32]* @r, i32 0, i32 %tmp12.reload         ; <i32*> [#uses=1]
38   %tmp16 = load i32, i32* %tmp15               ; <i32> [#uses=4]
39   %tmp18 = icmp slt i32 %tmp16, -31               ; <i1> [#uses=1]
40   %tmp21 = icmp sgt i32 %tmp16, 31                ; <i1> [#uses=1]
41   %bothcond = or i1 %tmp18, %tmp21                ; <i1> [#uses=1]
42   br i1 %bothcond, label %bb27.exitStub, label %cond_next23.exitStub
45 define i1 @print_pgm_cond_true_logical(i32 %tmp12.reload, i32* %tmp16.out) {
46 ; CHECK-LABEL: @print_pgm_cond_true_logical(
47 ; CHECK-NEXT:  newFuncRoot:
48 ; CHECK-NEXT:    br label [[COND_TRUE:%.*]]
49 ; CHECK:       bb27.exitStub:
50 ; CHECK-NEXT:    store i32 [[TMP16:%.*]], i32* [[TMP16_OUT:%.*]], align 4
51 ; CHECK-NEXT:    ret i1 true
52 ; CHECK:       cond_next23.exitStub:
53 ; CHECK-NEXT:    store i32 [[TMP16]], i32* [[TMP16_OUT]], align 4
54 ; CHECK-NEXT:    ret i1 false
55 ; CHECK:       cond_true:
56 ; CHECK-NEXT:    [[TMP15:%.*]] = getelementptr [17 x i32], [17 x i32]* @r, i32 0, i32 [[TMP12_RELOAD:%.*]]
57 ; CHECK-NEXT:    [[TMP16]] = load i32, i32* [[TMP15]], align 4
58 ; CHECK-NEXT:    [[TMP16_OFF:%.*]] = add i32 [[TMP16]], 31
59 ; CHECK-NEXT:    [[TMP0:%.*]] = icmp ugt i32 [[TMP16_OFF]], 62
60 ; CHECK-NEXT:    br i1 [[TMP0]], label [[BB27_EXITSTUB:%.*]], label [[COND_NEXT23_EXITSTUB:%.*]]
62 newFuncRoot:
63   br label %cond_true
65 bb27.exitStub:          ; preds = %cond_true
66   store i32 %tmp16, i32* %tmp16.out
67   ret i1 true
69 cond_next23.exitStub:           ; preds = %cond_true
70   store i32 %tmp16, i32* %tmp16.out
71   ret i1 false
73 cond_true:              ; preds = %newFuncRoot
74   %tmp15 = getelementptr [17 x i32], [17 x i32]* @r, i32 0, i32 %tmp12.reload         ; <i32*> [#uses=1]
75   %tmp16 = load i32, i32* %tmp15               ; <i32> [#uses=4]
76   %tmp18 = icmp slt i32 %tmp16, -31               ; <i1> [#uses=1]
77   %tmp21 = icmp sgt i32 %tmp16, 31                ; <i1> [#uses=1]
78   %bothcond = select i1 %tmp18, i1 true, i1 %tmp21                ; <i1> [#uses=1]
79   br i1 %bothcond, label %bb27.exitStub, label %cond_next23.exitStub