Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
159ac63ba19f17f82df8975208bdad16ebd01c0f
/
.
/
test
/
FrontendC
/
2003-10-09-UnionInitializerBug.c
blob: 90dbd37f0d61830a34681695c26af8fc607a64b7 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
struct
Foo
{
unsigned
a
;
unsigned
b
;
unsigned
c
;
};
struct
Bar
{
union
{
void
**
a
;
struct
Foo
b
;
}
u
;
};
struct
Bar
test
=
{
0
};