blob: 3fca31bc03b33f61c9afa37f4b9ff8f084dc6642 [file] [log] [blame]
Chih-Hung Hsieh43f06942019-12-19 15:01:08 -08001// RUN: %clang_cc1 -triple x86_64-unknown_unknown -emit-llvm -debug-info-kind=limited %s -O1 -fno-experimental-new-pass-manager -o - | FileCheck %s
Inna Palantff3f07a2019-07-11 16:15:26 -07002
3// Ensure class definitions are not emitted to debug info just because the
4// vtable is emitted for optimization purposes (as available_externally). The
5// class definition debug info should only go where the vtable is actually
6// emitted into the object file.
7
8// CHECK: @_ZTV3foo = available_externally
9
10// Verify that this doesn't involve querying for the vtable of types that aren't
11// dynamic (that would cause an assertion in the case below)
12
13// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "bar<int>"
14template <typename> struct bar {};
15extern template struct bar<int>;
16bar<int> *p1;
17bar<int> a;
18
19// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "foo"
20// CHECK-SAME: DIFlagFwdDecl
21
22struct foo {
23 virtual void f();
24};
25
26foo f;