mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
a9d8d647ca
llvm-svn: 49971
12 lines
196 B
LLVM
12 lines
196 B
LLVM
; RUN: llvm-as < %s | opt -inline -prune-eh -disable-output
|
|
|
|
define linkonce void @caller() {
|
|
call void @callee( )
|
|
ret void
|
|
}
|
|
|
|
define linkonce void @callee() {
|
|
ret void
|
|
}
|
|
|