Sign in
llvm
/
llvm
/
8924ea3d57d5fdfc11ce7562c3eaf0ce127ebc86
/
.
/
test
/
ExecutionEngine
/
OrcMCJIT
/
2003-01-04-PhiTest.ll
blob: a24e188438fb5c0c9c7156b24baa20d3cb91ca82 [
file
] [
log
] [
blame
]
; RUN: %lli -jit-kind=orc-mcjit %s > /dev/null
define
i32
@main
()
{
; <label>:0
br
label
%Loop
Loop
:
; preds = %Loop, %0
%X
=
phi
i32
[
0
,
%0
],
[
1
,
%Loop
]
; <i32> [#uses=1]
br
i1
true
,
label
%Out
,
label
%Loop
Out
:
; preds = %Loop
ret
i32
%X
}