repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20050801-2.c
blob
ba8dabaa3710f5b60edaf58ec001b2d7fde82e5d
1
/* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */
2
__inline
int
f
(
int
i
)
3
{
4
struct
{
5
int
t
[
i
];
6
}
t
;
7
return sizeof
(
t
.
t
[
i
--]);
8
}
9
10
int
g
(
int
i
)
11
{
12
return
f
(
i
);
13
}