new testcase for PR635

llvm-svn: 23615
This commit is contained in:
Chris Lattner 2005-10-03 23:42:54 +00:00
parent b64419ac40
commit a6e98f2e85
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
; RUN: llvm-as < %s | opt -simplifycfg -disable-output
bool %foo() {
%X = invoke bool %foo() to label %N unwind label %F
F:
ret bool false
N:
br bool %X, label %A, label %B
A:
ret bool true
B:
ret bool true
}