Create a isFullCopy predicate.
[llvm/stm8.git] / test / FrontendC / 2008-08-07-AlignPadding2.c
blob51135ba633a20848acfc060825edcced711174dc
1 /* RUN: %llvmgcc %s -S -o - -O0 | grep zeroinitializer | count 1
3 The FE must not generate padding here between array elements. PR 2533. */
5 typedef struct {
6 const char *name;
7 int flags;
8 union {
9 int x;
10 } u;
11 } OptionDef;
13 const OptionDef options[] = {
14 /* main options */
15 { "a", 0, {3} },
16 { "b", 0, {4} },
17 { 0, },