blob: 1c9d1202afb22dfb1dd2212cd778526db1ea8716 [file] [log] [blame]
Eric Christopher2368b6a2011-08-20 00:09:39 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
NAKAMURA Takumib774d732012-09-12 10:45:40 +00002// REQUIRES: LP64
Eric Christopher2368b6a2011-08-20 00:09:39 +00003
4struct S {
5 int A[2];
6};
7
8// CHECK-NOT: llvm.global_ctor
9int XX = (int)(long)&(((struct S*)0)->A[1]);