Test cases for r127309. <rdar://problem/9055247>

llvm-svn: 127310
This commit is contained in:
Stuart Hastings 2011-03-09 03:59:52 +00:00
parent d3cc220d97
commit d528660759
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,2 @@
// RUN: %llvmgcc -S %s
union { int :3; double f; } u17_017 = {17.17};

View File

@ -0,0 +1,6 @@
typedef struct {
union {
struct { } __attribute((packed));
};
} fenv_t;
const fenv_t _FE_DFL_ENV = {{{ 0, 0, 0, 0 }}};