blob: ecf28dd72de08329e79906415100bf24d4c2186a [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001/* RUN: %clang_cc1 %s -emit-llvm -o - -O0 | grep zeroinitializer | count 1
2
3The FE must not generate padding here between array elements. PR 2533. */
4
5typedef struct {
6 const char *name;
7 int flags;
8 union {
9 int x;
10 } u;
11} OptionDef;
12
13const OptionDef options[] = {
14 /* main options */
15 { "a", 0, {3} },
16 { "b", 0, {4} },
17 { 0, },
18};