Test for r91724.

llvm-svn: 91730
This commit is contained in:
Eli Friedman 2009-12-18 23:42:55 +00:00
parent f902c8c1b5
commit 726b878574
1 changed files with 11 additions and 0 deletions

View File

@ -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