forked from OSchip/llvm-project
This is a generic test for all code generators. It originally came from
Regression/Codegen/X86. llvm-svn: 23826
This commit is contained in:
parent
9f3c26c4ea
commit
14582b1a73
|
@ -0,0 +1,13 @@
|
|||
; RUN: llvm-as < %s | llc -enable-correct-eh-support
|
||||
|
||||
int %test() {
|
||||
unwind
|
||||
}
|
||||
|
||||
int %main() {
|
||||
%X = invoke int %test() to label %cont except label %EH
|
||||
cont:
|
||||
ret int 1
|
||||
EH:
|
||||
ret int 0
|
||||
}
|
Loading…
Reference in New Issue