1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-02 00:42:52 +01:00
llvm-mirror/test/Transforms/Inline/2004-04-20-InlineLinkOnce.ll
Chris Lattner a9d8d647ca rename *.llx -> *.ll, last batch.
llvm-svn: 49971
2008-04-19 22:32:52 +00:00

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
}