Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / attr-convergent.ll
blob41828b86fa1d8e3bf3c30e2156184b851f2e4987
1 ; RUN: opt < %s -passes=simplifycfg -simplifycfg-require-and-preserve-domtree=1 -S | FileCheck %s
3 ; Checks that the SimplifyCFG pass won't duplicate a call to a function marked
4 ; convergent.
6 ; CHECK: call void @barrier
7 ; CHECK-NOT: call void @barrier
8 define void @check(i1 %cond, ptr %out) {
9 entry:
10   br i1 %cond, label %if.then, label %if.end
12 if.then:
13   store i32 5, ptr %out
14   br label %if.end
16 if.end:
17   %x = phi i1 [ true, %entry ], [ false, %if.then ]
18   call void @barrier()
19   br i1 %x, label %cond.end, label %cond.false
21 cond.false:
22   br label %cond.end
24 cond.end:
25   ret void
28 declare void @barrier() convergent