blob: 4fab1c99346a424f80ba7f01aaf895dd044f9287 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | opt -inline -prune-eh -disable-output
2
3implementation
4
5linkonce void %caller() {
6 call void %callee()
7 ret void
8}
9
10linkonce void %callee() {
11 ret void
12}