blob: 0791d9fd83f8b9b80d2e9333a556d4da4e904ab9 [file] [log] [blame]
Reid Spencer43b40032007-04-16 15:31:49 +00001// RUN: %llvmgxx %s -S -o - | not grep llvm.global_ctor
Chris Lattnera5698772005-01-03 22:27:58 +00002
3struct S {
4 int A[2];
5};
6
7int XX = (int)&(((struct S*)0)->A[1]);
8