New testcase

llvm-svn: 4065
This commit is contained in:
Chris Lattner 2002-10-07 20:32:38 +00:00
parent 84d7b61585
commit dd8a336e09
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
; RUN: as < %s | opt -cee
;
; This testcase causes an assertion error.
;
implementation ; Functions:
void %test(int %A) {
br label %bb2
bb2:
ret void
bb3: ; No predecessors!
br bool true, label %bb4, label %bb2
bb4:
ret void
}