1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Moved to Regression/Codegen/Generic.

llvm-svn: 23829
This commit is contained in:
John Criswell 2005-10-19 18:52:52 +00:00
parent c1547066cd
commit ef91e2976a

View File

@ -1,13 +0,0 @@
; RUN: llvm-as < %s | llc -march=x86 -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
}