Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / SCCP / return-zapped.ll
blob6d705001250930f92481aebc936c5cdf68ea2550
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature
2 ; RUN: opt < %s -S -passes=ipsccp | FileCheck %s
4 ; testf() performs an unconditional branch on undef, as such the testf() return
5 ; value used in test1() will remain "unknown" and the following branch on it
6 ; replaced by unreachable. This is fine, as the call to testf() will already
7 ; trigger undefined behavior.
8 define void @test1() {
9 ; CHECK-LABEL: define {{[^@]+}}@test1() {
10 ; CHECK-NEXT:  entry:
11 ; CHECK-NEXT:    br label [[IF_THEN:%.*]]
12 ; CHECK:       if.then:
13 ; CHECK-NEXT:    [[CALL:%.*]] = call i1 @testf()
14 ; CHECK-NEXT:    unreachable
16 entry:
17   br label %if.then
18 if.then:                                          ; preds = %entry, %if.then
19   %foo = phi i32 [ 0, %entry], [ %next, %if.then]
20   %next = add i32 %foo, 1
21   %call = call i1 @testf()
22   br i1 %call, label %if.end, label %if.then
24 if.end:                                           ; preds = %if.then, %entry
25   ret void
28 define internal i1 @testf() {
29 ; CHECK-LABEL: define {{[^@]+}}@testf() {
30 ; CHECK-NEXT:  entry:
31 ; CHECK-NEXT:    unreachable
33 entry:
34   br i1 undef, label %if.then1, label %if.end3
36 if.then1:                                         ; preds = %if.end
37   br label %if.end3
39 if.end3:                                          ; preds = %if.then1, %entry
40   ret i1 true
43 ; Call sites in unreachable blocks should not be a problem.
44 define i1 @test2() {
45 ; CHECK-LABEL: define {{[^@]+}}@test2() {
46 ; CHECK-NEXT:  entry:
47 ; CHECK-NEXT:    br label [[IF_END:%.*]]
48 ; CHECK:       if.end:
49 ; CHECK-NEXT:    [[CALL2:%.*]] = call i1 @testf()
50 ; CHECK-NEXT:    ret i1 undef
52 entry:
53   br label %if.end
55 if.then:                                          ; preds = %entry, %if.then
56   %call = call i1 @testf()
57   br i1 %call, label %if.end, label %if.then
59 if.end:                                           ; preds = %if.then, %entry
60   %call2 = call i1 @testf()
61   ret i1 %call2