625038d5d5f406385f44983ac2a442b20ad7b241 added NewPM CGSCC coverage to all of the inliner tests. Now that the NewPM is the default for the middle end, both check lines cover the same thing (with -passes="inline" expanding to -passes="cgscc(inline)"). Given that, remove them to get rid of the redundancy and make the tests run slightly faster (not measured).
21 lines
462 B
LLVM
21 lines
462 B
LLVM
; RUN: opt -passes=inline -S < %s | FileCheck %s
|
|
; RUN: opt -passes='module-inline' -S < %s | FileCheck %s
|
|
|
|
define i32 @caller() {
|
|
; CHECK-LABEL: @caller(
|
|
; CHECK-NEXT: %val2 = call i32 @linkonce_callee(i32 42)
|
|
; CHECK-NEXT: ret i32 %val2
|
|
|
|
%val = call i32 @odr_callee()
|
|
%val2 = call i32 @linkonce_callee(i32 %val);
|
|
ret i32 %val2
|
|
}
|
|
|
|
define linkonce_odr i32 @odr_callee() {
|
|
ret i32 42
|
|
}
|
|
|
|
define linkonce i32 @linkonce_callee(i32 %val) {
|
|
ret i32 %val
|
|
}
|