blob: c8045b0ce6008b86b7370ebc73803f79a9775997 [file] [log] [blame]
/* APPLE LOCAL file elide global inits 5718329 */
/* { dg-do compile } */
/* { dg-options -O2 } */
/* { dg-final { scan-assembler-not "_GLOBAL__I_" } } */
/* Radar 5718329 */
int j;
struct B {
const int ci;
const double d;
int rwi;
B() :ci(0), rwi(0), d(0) {
this->rwi = 0;
}
} b;