[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / cfi-ms-rtti.cpp
blob328297d85c12c5e384f6a67f73e92b5b478b8da8
1 // RUN: %clang_cc1 -flto -flto-unit -emit-llvm -o - -triple=x86_64-pc-win32 %s -fsanitize=cfi-vcall | FileCheck --check-prefix=RTTI %s
2 // RUN: %clang_cc1 -flto -flto-unit -emit-llvm -o - -triple=x86_64-pc-win32 %s -fsanitize=cfi-vcall -fno-rtti-data | FileCheck --check-prefix=NO-RTTI %s
4 struct A {
5 A();
6 virtual void f() {}
7 };
9 A::A() {}
11 // RTTI: !{i64 8, !"?AUA@@"}
12 // NO-RTTI: !{i64 0, !"?AUA@@"}