blob: 19fb5be7d8fd87ded65f53a972e41ad0ed7db5bc [file] [log] [blame]
Dale Johannesenea98fe22008-08-08 03:37:11 +00001/* RUN: %llvmgcc %s -m64 -S -o - -emit-llvm -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};