blob: 6bfa025beaab78d73535040fa1dc7971c8aa8b58 [file] [log] [blame]
Anders Carlsson824d7ea2010-02-11 08:02:13 +00001// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm-only -fdump-vtable-layouts 2>&1 | FileCheck %s
2namespace Test1 {
3
4// CHECK: Vtable for 'Test1::A' (3 entries).
5// CHECK-NEXT: 0 | offset_to_top (0)
6// CHECK-NEXT: 1 | Test1::A RTTI
7// CHECK-NEXT: 2 | Test1::A::f
8struct A {
9 virtual void f();
10};
11
12void A::f() { }
13
14}
15