blob: 7d1bdd2489028c5262dc85cfb1a1a1757acddbe1 [file] [edit]
; RUN: opt -S -passes=wholeprogramdevirt -whole-program-visibility %s | FileCheck %s
; The `noipa` attribute prevents interprocedural function body inspection,
; including this virtual constant propagation transformation.
@vt1 = constant [1 x ptr] [ptr @vf1], !type !0
@vt2 = constant [1 x ptr] [ptr @vf2], !type !0
define i32 @vf1(ptr %this, i32 %arg) readnone noipa {
ret i32 %arg
}
define i32 @vf2(ptr %this, i32 %arg) readnone {
ret i32 %arg
}
; CHECK: define i32 @fn
define i32 @fn(ptr %obj) {
%vtable = load ptr, ptr %obj
%p = call i1 @llvm.type.test(ptr %vtable, metadata !"typeid")
call void @llvm.assume(i1 %p)
%fptr = load ptr, ptr %vtable
; CHECK: call i32 %
%result = call i32 %fptr(ptr %obj, i32 1)
ret i32 %result
}
declare i1 @llvm.type.test(ptr, metadata)
declare void @llvm.assume(i1)
!0 = !{i32 0, !"typeid"}