mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
7e6c6c85b9
llvm-svn: 13079
13 lines
175 B
Plaintext
13 lines
175 B
Plaintext
; RUN: llvm-as < %s | opt -inline -prune-eh -disable-output
|
|
|
|
implementation
|
|
|
|
linkonce void %caller() {
|
|
call void %callee()
|
|
ret void
|
|
}
|
|
|
|
linkonce void %callee() {
|
|
ret void
|
|
}
|