[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenCXX / non-const-init-cxx2a.cpp
blob8370fe6eacdb4146e172055a96b7ad429cf0984f
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s -std=c++2a | FileCheck %s
3 // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-pch -o %t.pch %s -std=c++2a
4 // RUN: %clang_cc1 -triple x86_64-apple-darwin -include-pch %t.pch -x c++ /dev/null -emit-llvm -o - -std=c++2a | FileCheck %s
6 struct B {
7 constexpr B() {}
8 constexpr ~B() { n *= 5; }
9 int n = 123;
12 // We emit a dynamic destructor here because b.n might have been modified
13 // before b is destroyed.
15 // CHECK: @b ={{.*}} global {{.*}} i32 123
16 B b = B();
18 // CHECK: define {{.*}}cxx_global_var_init
19 // CHECK: call {{.*}} @__cxa_atexit({{.*}} @_ZN1BD1Ev {{.*}} @b