]> git.proxmox.com Git - rustc.git/blob - src/compiler-rt/test/tsan/virtual_inheritance_compile_bug.cc
Imported Upstream version 1.0.0~0alpha
[rustc.git] / src / compiler-rt / test / tsan / virtual_inheritance_compile_bug.cc
1 // Regression test for http://code.google.com/p/thread-sanitizer/issues/detail?id=3.
2 // The C++ variant is much more compact that the LLVM IR equivalent.
3
4 // RUN: %clangxx_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
5 #include <stdio.h>
6 struct AAA { virtual long aaa () { return 0; } }; // NOLINT
7 struct BBB: virtual AAA { unsigned long bbb; }; // NOLINT
8 struct CCC: virtual AAA { };
9 struct DDD: CCC, BBB { DDD(); }; // NOLINT
10 DDD::DDD() { }
11 int main() {
12 DDD d;
13 printf("OK\n");
14 }
15 // CHECK: OK