new testcase, reduced by bugpoint

llvm-svn: 8665
This commit is contained in:
Chris Lattner 2003-09-22 22:22:41 +00:00
parent 0178d262e6
commit 8f36a47acc
1 changed files with 24 additions and 0 deletions

View File

@ -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
}