summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/virt-call-offsets.cpp
blob: 5eef6fea9e6fdfb50bd16283351af73dc83c023b (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s

struct A { virtual void a(); };
struct B : A {};
struct C : B { virtual void a(); };
void (C::*x)() = &C::a;

// CHECK: @x = global { i{{[0-9]+}}, i{{[0-9]+}} } { i{{[0-9]+}} 1, i{{[0-9]+}} 0 }