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 }}};