Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

29 lines
576 B
LLVM

; RUN: opt < %s -simplifycfg -S | FileCheck %s
; Checks that the SimplifyCFG pass won't duplicate a call to a function marked
; convergent.
;
; CHECK: call void @barrier
; CHECK-NOT: call void @barrier
define void @check(i1 %cond, i32* %out) {
entry:
br i1 %cond, label %if.then, label %if.end
if.then:
store i32 5, i32* %out
br label %if.end
if.end:
%x = phi i1 [ true, %entry ], [ false, %if.then ]
call void @barrier()
br i1 %x, label %cond.end, label %cond.false
cond.false:
br label %cond.end
cond.end:
ret void
}
declare void @barrier() convergent