mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 01:43:06 +00:00
Fix buggy test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21936 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e0f395b25f
commit
a02e0bd1a3
@ -1,10 +1,9 @@
|
|||||||
; Test that any rethrown exceptions in an inlined function are automatically
|
; Test that any rethrown exceptions in an inlined function are automatically
|
||||||
; turned into branches to the invoke destination.
|
; turned into branches to the invoke destination.
|
||||||
|
|
||||||
; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep 'call void %llvm.unwind'
|
; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep unwind$
|
||||||
|
|
||||||
declare void %might_throw()
|
declare void %might_throw()
|
||||||
declare void %llvm.unwind()
|
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
@ -13,8 +12,7 @@ internal int %callee() {
|
|||||||
cont:
|
cont:
|
||||||
ret int 0
|
ret int 0
|
||||||
exc: ; This just rethrows the exception!
|
exc: ; This just rethrows the exception!
|
||||||
call void %llvm.unwind()
|
unwind
|
||||||
ret int 123 ; DEAD!
|
|
||||||
}
|
}
|
||||||
|
|
||||||
; caller returns true if might_throw throws an exception... which gets
|
; caller returns true if might_throw throws an exception... which gets
|
||||||
|
Loading…
Reference in New Issue
Block a user