f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
11 lines
276 B
C++
11 lines
276 B
C++
// 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
|