Home | History | Annotate | Download | only in FrontendC++
      1 // RUN: %llvmgxx %s -S -o - | not grep llvm.global_ctor
      2 
      3 struct S {
      4   int  A[2];
      5 };
      6 
      7 int XX = (int)(long)&(((struct S*)0)->A[1]);
      8 
      9