Rafael Espindola | ff7cea8 | 2013-09-04 04:12:25 +0000 | [diff] [blame] | 1 | /* RUN: %clang_cc1 %s -emit-llvm -o - | grep zeroinitializer | count 1 |
Eric Christopher | 85e5156 | 2011-07-26 22:17:02 +0000 | [diff] [blame] | 2 | |
3 | The FE must not generate padding here between array elements. PR 2533. */ | ||||
4 | |||||
5 | typedef struct { | ||||
6 | const char *name; | ||||
7 | int flags; | ||||
8 | union { | ||||
9 | int x; | ||||
10 | } u; | ||||
11 | } OptionDef; | ||||
12 | |||||
13 | const OptionDef options[] = { | ||||
14 | /* main options */ | ||||
15 | { "a", 0, {3} }, | ||||
16 | { "b", 0, {4} }, | ||||
17 | { 0, }, | ||||
18 | }; |