1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-03 13:31:05 +00:00
llvm-6502/test/FrontendC/2011-03-08-ZeroFieldUnionInitializer.c
2011-03-09 04:02:40 +00:00

8 lines
150 B
C

// RUN: %llvmgcc -S %s
typedef struct {
union {
struct { } __attribute((packed));
};
} fenv_t;
const fenv_t _FE_DFL_ENV = {{{ 0, 0, 0, 0 }}};