mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
15 lines
320 B
LLVM
15 lines
320 B
LLVM
; RUN: opt < %s -always-inline -S | not grep call
|
|
|
|
; Ensure that threshold doesn't disrupt always inline.
|
|
; RUN: opt < %s -inline-threshold=-2000000001 -always-inline -S | not grep call
|
|
|
|
|
|
define internal i32 @if0() alwaysinline {
|
|
ret i32 1
|
|
}
|
|
|
|
define i32 @f0() {
|
|
%r = call i32 @if0()
|
|
ret i32 %r
|
|
}
|