forked from OSchip/llvm-project
parent
0178d262e6
commit
8f36a47acc
|
@ -0,0 +1,24 @@
|
|||
; RUN: llvm-as < %s | opt -inline -disable-output
|
||||
implementation
|
||||
|
||||
int %main() {
|
||||
entry:
|
||||
invoke void %__main( )
|
||||
to label %else except label %RethrowExcept
|
||||
|
||||
else:
|
||||
%i.2 = phi int [ 36, %entry ], [ %i.2, %LJDecisionBB ]
|
||||
br label %LJDecisionBB
|
||||
|
||||
LJDecisionBB:
|
||||
br label %else
|
||||
|
||||
RethrowExcept:
|
||||
ret int 0
|
||||
}
|
||||
|
||||
void %__main() {
|
||||
ret void
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue