1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-31 16:02:52 +01:00
llvm-mirror/test/Transforms/LowerInvoke/2005-08-03-InvokeWithPHIUse.ll

16 lines
461 B
LLVM
Raw Normal View History

; RUN: opt < %s -lowerinvoke -enable-correct-eh-support -disable-output
2005-08-03 20:51:15 +02:00
2008-03-19 08:28:33 +01:00
declare fastcc i32 @ll_listnext__listiterPtr()
2005-08-03 20:51:15 +02:00
2008-03-19 08:28:33 +01:00
define fastcc i32 @WorkTask.fn() {
2005-08-03 20:51:15 +02:00
block0:
2008-03-19 08:28:33 +01:00
%v2679 = invoke fastcc i32 @ll_listnext__listiterPtr( )
to label %block9 unwind label %block8_exception_handling ; <i32> [#uses=1]
2005-08-03 20:51:15 +02:00
block8_exception_handling: ; preds = %block0
2008-03-19 08:28:33 +01:00
ret i32 0
2005-08-03 20:51:15 +02:00
block9: ; preds = %block0
2008-03-19 08:28:33 +01:00
%i_2689 = phi i32 [ %v2679, %block0 ] ; <i32> [#uses=1]
ret i32 %i_2689
2005-08-03 20:51:15 +02:00
}
2008-03-19 08:28:33 +01:00