blob: a71384dde61d2a996d7de2dd5113a3d1e5a43b49 [file] [log] [blame]
Eli Friedman09a8a0e2009-12-27 05:43:15 +00001// RUN: clang -cc1 -O1 -emit-llvm %s -o - | FileCheck %s
2
3// Check that the following construct, which is similar to one which occurs
4// in Firefox, is not misfolded (folding it correctly would be a bonus, but
5// that doesn't work at the moment, hence the -O1 in the runline).
6struct A { char x; };
7struct B { char y; };
8struct C : A,B {};
9unsigned char x = ((char*)(B*)(C*)0x1000) - (char*)0x1000;
10
11// CHECK: @x = global i8 1