summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/cfi-ms-rtti.cpp
blob: 5203a6bb0c8bb719f9d7265edf46cd36066650c6 (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: !{!"A@@", [2 x i8*]* {{.*}}, i64 8}
// NO-RTTI: !{!"A@@", [1 x i8*]* {{.*}}, i64 0}
OpenPOWER on IntegriCloud