[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / phi-to-select-constexpr-icmp.ll
blob20f192d3445fbdec5bda6fdcc4f67761598b0ec6
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -simplifycfg -simplifycfg-require-and-preserve-domtree=1 -S %s | FileCheck %s
4 @glob = internal constant [5 x i8*] zeroinitializer, align 16
6 ; Make sure simplifycfg does not crash when dealing with icmp constant
7 ; expressions.
8 define i1 @test(i1 %c) {
9 ; CHECK-LABEL: @test(
10 ; CHECK-NEXT:  entry:
11 ; CHECK-NEXT:    [[SPEC_SELECT:%.*]] = select i1 [[C:%.*]], i1 false, i1 icmp ult (i8** getelementptr inbounds ([5 x i8*], [5 x i8*]* @glob, i64 0, i64 0), i8** inttoptr (i64 -40 to i8**))
12 ; CHECK-NEXT:    ret i1 [[SPEC_SELECT]]
14 entry:
15   br i1 %c, label %if.then, label %exit
17 if.then:
18   br label %exit
20 exit:
21   %p = phi i1 [ false, %if.then ], [ icmp ult (i8** getelementptr inbounds ([5 x i8*], [5 x i8*]* @glob, i64 0, i64 0), i8** inttoptr (i64 -40 to i8**)), %entry ]
22   ret i1 %p