blob: b215d3e3dab2726d0dd295ab8b3b0fac559c06d1 [file] [log] [blame]
Chris Lattnera5698772005-01-03 22:27:58 +00001// RUN: %llvmgxx %s -S -o - | grep '%XX = global int 4'
2
3struct S {
4 int A[2];
5};
6
7int XX = (int)&(((struct S*)0)->A[1]);
8