mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-06 03:08:43 +00:00
5eb500cbdd
other from Python. llvm-svn: 54505
19 lines
343 B
C
19 lines
343 B
C
/* RUN: %llvmgcc %s -m64 -S -o - -emit-llvm -O0 | grep zeroinitializer | count 1
|
|
|
|
The FE must not generate padding here between array elements. PR 2533. */
|
|
|
|
typedef struct {
|
|
const char *name;
|
|
int flags;
|
|
union {
|
|
int x;
|
|
} u;
|
|
} OptionDef;
|
|
|
|
const OptionDef options[] = {
|
|
/* main options */
|
|
{ "a", 0, {3} },
|
|
{ "b", 0, {4} },
|
|
{ 0, },
|
|
};
|