llvm-6502/test/Transforms/SCCP/2004-11-16-DeadInvoke.ll
Bill Wendling b072dd9ba4 Update the tests to the new EH scheme.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138891 91177308-0d34-0410-b5e6-96231b3b80d8
2011-08-31 20:55:40 +00:00

19 lines
424 B
LLVM

; RUN: opt < %s -sccp -disable-output
declare i32 @foo()
define void @caller() {
br i1 true, label %T, label %F
F: ; preds = %0
%X = invoke i32 @foo( )
to label %T unwind label %LP ; <i32> [#uses=0]
LP:
%val = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
catch i8* null
br label %T
T:
ret void
}
declare i32 @__gxx_personality_v0(...)