diff options
| author | Roman Divacky <rdivacky@FreeBSD.org> | 2010-01-01 10:34:51 +0000 |
|---|---|---|
| committer | Roman Divacky <rdivacky@FreeBSD.org> | 2010-01-01 10:34:51 +0000 |
| commit | abe15e553e58165e7692c0d0842865c488ed7b45 (patch) | |
| tree | 1e68501209c9133fbda8d45171e59f8d6f12dd55 /test/CodeGenCXX/virtual-base-ctor.cpp | |
| parent | 34d02d0b37f16015f317a935c48ce8b7b64ae77b (diff) | |
Notes
Diffstat (limited to 'test/CodeGenCXX/virtual-base-ctor.cpp')
| -rw-r--r-- | test/CodeGenCXX/virtual-base-ctor.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGenCXX/virtual-base-ctor.cpp b/test/CodeGenCXX/virtual-base-ctor.cpp new file mode 100644 index 0000000000000..2d81ebd3a407d --- /dev/null +++ b/test/CodeGenCXX/virtual-base-ctor.cpp @@ -0,0 +1,11 @@ +// RUN: %clang_cc1 %s -emit-llvm -o - -O2 | FileCheck %s + +struct B; +extern B x; +char y; +typedef __typeof(sizeof(int)) size_t; +struct A { int a; A() { y = ((size_t)this - (size_t)&x) / sizeof(void*); } }; +struct B : virtual A { void* x; }; +B x; + +// CHECK: @y = global i8 2 |
