summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/cfi-ms-rtti.cpp
blob: b6e9175c865c6361dc4e8a80ce8e3aae62ea4d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -emit-llvm -o - -triple=x86_64-pc-win32 %s -fsanitize=cfi-vcall | FileCheck --check-prefix=RTTI %s
// RUN: %clang_cc1 -emit-llvm -o - -triple=x86_64-pc-win32 %s -fsanitize=cfi-vcall -fno-rtti-data | FileCheck --check-prefix=NO-RTTI %s

struct A {
  A();
  virtual void f() {}
};

A::A() {}

// RTTI: !{!"?AUA@@", [2 x i8*]* {{.*}}, i64 8}
// NO-RTTI: !{!"?AUA@@", [1 x i8*]* {{.*}}, i64 0}
OpenPOWER on IntegriCloud