blob: 84fa565f24064c19197fc6f490dd687e6cdb7bc3 [file] [log] [blame]
Chris Lattnerd2beaa62005-02-14 02:54:41 +00001// RUN: %llvmgxx %s -S -o - | not grep llvm.global_ctors
2// This testcase corresponds to PR509
3struct Data {
4 unsigned *data;
5 unsigned array[1];
6};
7
8Data shared_null = { shared_null.array };
9