; 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 { %this_int = ptrtoint ptr %this to i32 ret i32 %this_int } define i32 @vf2(ptr %this) readnone { %this_int = ptrtoint ptr %this to i32 ret i32 %this_int } ; CHECK: define i32 @call define i32 @call(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) ret i32 %result } declare i1 @llvm.type.test(ptr, metadata) declare void @llvm.assume(i1) !0 = !{i32 0, !"typeid"}