blob: 88d539294777e18d9558bd3350af31e6162d685a [file] [log] [blame]
; RUN: opt -S -passes=wholeprogramdevirt -whole-program-visibility %s | FileCheck %s
target datalayout = "e-p:64:64"
target triple = "x86_64-unknown-linux-gnu"
@vt1 = constant [1 x ptr] [ptr @vf1], !type !0
@vt2 = constant [1 x ptr] [ptr @vf2], !type !0
define i32 @vf1(ptr %this) readnone {
ret i32 123
}
define i32 @vf2(ptr %this) readnone {
ret i32 123
}
; CHECK: define i32 @call
define i32 @call(ptr %obj) personality ptr undef {
%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: br label %[[RET:[0-9A-Za-z]*]]
%result = invoke i32 %fptr(ptr %obj) to label %ret unwind label %unwind
unwind:
%x = landingpad i32 cleanup
unreachable
ret:
; CHECK: [[RET]]:
; CHECK-NEXT: ret i32 123
ret i32 %result
}
declare i1 @llvm.type.test(ptr, metadata)
declare void @llvm.assume(i1)
!0 = !{i32 0, !"typeid"}