[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / attr-convergent.ll
blobffc88efdb0dca2759e25ede949f7e7033d34ae8b
1 ; RUN: opt < %s -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, i32* %out) {
9 entry:
10   br i1 %cond, label %if.then, label %if.end
12 if.then:
13   store i32 5, i32* %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