aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC/2011-03-08-ZeroFieldUnionInitializer.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2011-03-08-ZeroFieldUnionInitializer.c')
-rw-r--r--test/FrontendC/2011-03-08-ZeroFieldUnionInitializer.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/FrontendC/2011-03-08-ZeroFieldUnionInitializer.c b/test/FrontendC/2011-03-08-ZeroFieldUnionInitializer.c
new file mode 100644
index 000000000000..1fd8a8782464
--- /dev/null
+++ b/test/FrontendC/2011-03-08-ZeroFieldUnionInitializer.c
@@ -0,0 +1,7 @@
+// RUN: %llvmgcc -S %s
+typedef struct {
+ union {
+ struct { } __attribute((packed));
+ };
+} fenv_t;
+const fenv_t _FE_DFL_ENV = {{{ 0, 0, 0, 0 }}};