blob: cd2ab59506d4f50fd1ec7f8417956ceb3e565a7e [file] [log] [blame]
Benjamin Kramerf3fce802012-08-03 08:39:58 +00001// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - -std=c++11 | FileCheck %s
2// PR13424
3
Benjamin Kramerc23aca42012-08-03 15:43:22 +00004namespace Test1 {
Benjamin Kramerf3fce802012-08-03 08:39:58 +00005struct X {
Benjamin Kramerc23aca42012-08-03 15:43:22 +00006 virtual ~X(); // Key function.
7 virtual void f(); // Not a key function.
8};
9
10X::~X() = default;
11
12// Verify that the vtable is emitted.
13// CHECK: @_ZTVN5Test11XE = unnamed_addr constant
14}
15
16namespace Test2 {
17struct X {
18 virtual ~X() = default; // Not a key function.
19 virtual void f(); // Key function.
Benjamin Kramerf3fce802012-08-03 08:39:58 +000020};
21
22void X::f() {}
23
Benjamin Kramerc23aca42012-08-03 15:43:22 +000024// Verify that the vtable is emitted.
25// CHECK: @_ZTVN5Test21XE = unnamed_addr constant
26}
27
28namespace Test3 {
29struct X {
30 virtual ~X() = delete; // Not a key function.
31 virtual void f(); // Key function.
32};
33
34void X::f() {}
35
36// Verify that the vtable is emitted.
37// CHECK: @_ZTVN5Test31XE = unnamed_addr constant
38}