Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
159ac63ba19f17f82df8975208bdad16ebd01c0f
/
.
/
test
/
FrontendC
/
2007-03-06-VarSizeInStruct1.c
blob: b4ae56549318995fd0b4906bafd60c7c0092e444 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc %s -w -S -o -
void
*
p
(
int
n
)
{
struct
f
{
char
w
;
char
x
[
n
];
char
z
[];
}
F
;
F
.
x
[
0
]=
'x'
;
return
&
F
;
}