[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / InstCombine / preserve-sminmax.ll
blobd04816e83711fd2f9e4271639579bde19534d802
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -instcombine -S | FileCheck %s
4 ; Instcombine normally would fold the sdiv into the comparison,
5 ; making "icmp slt i32 %h, 2", but in this case the sdiv has
6 ; another use, so it wouldn't a big win, and it would also
7 ; obfuscate an otherise obvious smax pattern to the point where
8 ; other analyses wouldn't recognize it.
10 define i32 @foo(i32 %h) {
11 ; CHECK-LABEL: @foo(
12 ; CHECK-NEXT:    [[SD:%.*]] = sdiv i32 [[H:%.*]], 2
13 ; CHECK-NEXT:    [[T:%.*]] = icmp slt i32 [[SD]], 1
14 ; CHECK-NEXT:    [[R:%.*]] = select i1 [[T]], i32 [[SD]], i32 1
15 ; CHECK-NEXT:    ret i32 [[R]]
17   %sd = sdiv i32 %h, 2
18   %t = icmp slt i32 %sd, 1
19   %r = select i1 %t, i32 %sd, i32 1
20   ret i32 %r
23 define i32 @bar(i32 %h) {
24 ; CHECK-LABEL: @bar(
25 ; CHECK-NEXT:    [[SD:%.*]] = sdiv i32 [[H:%.*]], 2
26 ; CHECK-NEXT:    [[T:%.*]] = icmp sgt i32 [[SD]], 1
27 ; CHECK-NEXT:    [[R:%.*]] = select i1 [[T]], i32 [[SD]], i32 1
28 ; CHECK-NEXT:    ret i32 [[R]]
30   %sd = sdiv i32 %h, 2
31   %t = icmp sgt i32 %sd, 1
32   %r = select i1 %t, i32 %sd, i32 1
33   ret i32 %r