[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenCXX / debug-info-class-optzns.cpp
blob3fca31bc03b33f61c9afa37f4b9ff8f084dc6642
1 // RUN: %clang_cc1 -triple x86_64-unknown_unknown -emit-llvm -debug-info-kind=limited %s -O1 -fno-experimental-new-pass-manager -o - | FileCheck %s
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.
8 // CHECK: @_ZTV3foo = available_externally
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)
13 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "bar<int>"
14 template <typename> struct bar {};
15 extern template struct bar<int>;
16 bar<int> *p1;
17 bar<int> a;
19 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "foo"
20 // CHECK-SAME: DIFlagFwdDecl
22 struct foo {
23 virtual void f();
26 foo f;