Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
02ebefbb989368b03de8e0c13c1d8a1cba8b7373
/
.
/
test
/
CodeGen
/
static-local-union.c
blob: 9515a316d62dea9a93ff82cb766071c9adb0908d [
file
] [
log
] [
blame
]
// RUN: clang -emit-llvm < %s
int
a
()
{
static
union
{
int
a
;}
r
[
2
]
=
{
1
,
2
};
return
r
[
1
].
a
;}