summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/virtual-base-ctor.cpp
blob: e32296f1641f6bc80984bf32c93f4c87d21669f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - -O2 | opt - -S -globalopt -o - | 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 = {{(dso_local )?}}local_unnamed_addr global i8 2