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 00000000000..bb66d211c61 --- /dev/null +++ b/clang/test/CodeGen/2011-03-08-ZeroFieldUnionInitializer.c @@ -0,0 +1,7 @@ +// RUN: %clang_cc1 -emit-llvm %s -o 0 +typedef struct { + union { + struct { } __attribute((packed)); + }; +} fenv_t; +const fenv_t _FE_DFL_ENV = {{{ 0, 0, 0, 0 }}}; |