mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
c310b1f1f3
llvm-svn: 49970
18 lines
328 B
LLVM
18 lines
328 B
LLVM
; RUN: llvm-as < %s | llc -enable-correct-eh-support
|
|
|
|
define i32 @test() {
|
|
unwind
|
|
}
|
|
|
|
define i32 @main() {
|
|
%X = invoke i32 @test( )
|
|
to label %cont unwind label %EH ; <i32> [#uses=0]
|
|
|
|
cont: ; preds = %0
|
|
ret i32 1
|
|
|
|
EH: ; preds = %0
|
|
ret i32 0
|
|
}
|
|
|