Files
clang-p2996/llvm/test/Transforms/Inline/devirtualize-2.ll
Sebastian Peryt 99c9b37d11 [NFC][1/n] Remove -enable-new-pm=0 flags from lit tests
This is the first patch in a series intended for removing flag
-enable-new-pm=0 from lit tests. This is part of a bigger
effort of completely removing legacy code related to legacy
pass manager in favor of currently default new pass manager.

In this patch flag has been removed only from tests where no significant
change has been required because checks has been duplicated for
both PMs.

Reviewed By: fhahn

Differential Revision: https://reviews.llvm.org/D134150
2022-09-19 09:57:37 -07:00

45 lines
772 B
LLVM

; RUN: opt < %s -passes='cgscc(devirt<4>(inline))' -S | FileCheck %s
; PR4834
define i32 @test1() {
%funcall1_ = call fastcc i32 ()* () @f1()
%executecommandptr1_ = call i32 %funcall1_()
ret i32 %executecommandptr1_
}
define internal fastcc i32 ()* @f1() nounwind readnone {
ret i32 ()* @f2
}
define internal i32 @f2() nounwind readnone {
ret i32 1
}
; CHECK: @test1()
; CHECK-NEXT: ret i32 1
declare i8* @f1a(i8*) ssp align 2
define internal i32 @f2a(i8* %t) inlinehint ssp {
entry:
ret i32 41
}
define internal i32 @f3a(i32 (i8*)* %__f) ssp {
entry:
%A = call i32 %__f(i8* undef)
ret i32 %A
}
define i32 @test2(i8* %this) ssp align 2 {
%X = call i32 @f3a(i32 (i8*)* @f2a) ssp
ret i32 %X
}
; CHECK-LABEL: @test2(
; CHECK-NEXT: ret i32 41