blob: 27da715c1479db568fb3e17d7257d685cea5973e [file] [log] [blame]
Chris Lattner8e0de322005-02-19 07:31:54 +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