blob: 875c412c6b4881213dbc684134b29be8c0d9f08d [file] [log] [blame]
Eric Christopher2368b6a2011-08-20 00:09:39 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
3struct S {
4 int A[2];
5};
6
7// CHECK-NOT: llvm.global_ctor
8int XX = (int)(long)&(((struct S*)0)->A[1]);