Fix testcase. For some reason this was failing only with a release build and

not with a debug build?  Rather testrunner only caught it in that case.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14514 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-07-01 04:09:14 +00:00
parent c76920a2ab
commit f380445185

View File

@ -6,14 +6,12 @@
; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not egrep 'invoke|br'
declare void %bar()
declare void %llvm.unwind()
int %test() {
invoke void %bar() to label %Ok except label %Rethrow
Ok:
ret int 0
Rethrow:
call void %llvm.unwind()
br label %Ok
unwind
}