mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
b072dd9ba4
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138891 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
424 B
LLVM
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(...)
|