diff options
Diffstat (limited to 'clang/test/CodeGen/2011-03-08-ZeroFieldUnionInitializer.c')
-rw-r--r-- | clang/test/CodeGen/2011-03-08-ZeroFieldUnionInitializer.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2011-03-08-ZeroFieldUnionInitializer.c b/clang/test/CodeGen/2011-03-08-ZeroFieldUnionInitializer.c new file mode 100644 index 0000000..ff570d8 --- /dev/null +++ b/clang/test/CodeGen/2011-03-08-ZeroFieldUnionInitializer.c @@ -0,0 +1,7 @@ +// RUN: %clang_cc1 -emit-llvm %s -o /dev/null +typedef struct { + union { + struct { } __attribute((packed)); + }; +} fenv_t; +const fenv_t _FE_DFL_ENV = {{{ 0, 0, 0, 0 }}}; |