You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
367 B
12 lines
367 B
4 months ago
|
// 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
|