summaryrefslogtreecommitdiff
path: root/test/FrontendC/2011-03-08-ZeroFieldUnionInitializer.c
blob: 1fd8a87824646b6526b02f44a48eacaa2cbfaac0 (plain)
1
2
3
4
5
6
7
// RUN: %llvmgcc -S %s
typedef struct {
  union {
    struct { } __attribute((packed));
  };
} fenv_t;
const fenv_t _FE_DFL_ENV = {{{ 0, 0, 0, 0 }}};