repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up some of LVI:
[llvm.git]
/
test
/
FrontendC
/
2007-03-06-VarSizeInStruct1.c
blob
b4ae56549318995fd0b4906bafd60c7c0092e444
1
// RUN: %llvmgcc %s -w -S -o -
2
void
*
p
(
int
n
) {
3
struct
f
{
4
char
w
;
char
x
[
n
];
char
z
[];
5
}
F
;
6
F
.
x
[
0
]=
'x'
;
7
return
&
F
;
8
}