repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
pr27639.c
blob
28e4223d81d4be5a35adb32a010482c09e3af570
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -std=c99" } */
3
4
char
heap
[
50000
];
5
6
int
7
main
()
8
{
9
for
(
unsigned
ix
=
sizeof
(
heap
);
ix
--;)
10
heap
[
ix
] =
ix
;
11
return
0
;
12
}