mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
47a504c87c
llvm-svn: 56716
11 lines
192 B
LLVM
11 lines
192 B
LLVM
; RUN: llvm-as < %s | opt -inline-threshold=0 -inline | llvm-dis | not grep call
|
|
|
|
define i32 @fn2() alwaysinline {
|
|
ret i32 1
|
|
}
|
|
|
|
define i32 @fn3() {
|
|
%r = call i32 @fn2()
|
|
ret i32 %r
|
|
}
|