mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
ea98fe2cd2
other from Python. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54505 91177308-0d34-0410-b5e6-96231b3b80d8
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, },
|
|
};
|