repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr27639.c
blob
cb7b1429d4d489b59cd4b5deb8c67ae830118333
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -std=c99" } */
3
#if(__SIZEOF_INT__ >= 4)
4
char
heap
[
50000
];
5
#else
6
char
heap
[
32000
];
7
#endif
8
int
9
main
()
10
{
11
for
(
unsigned
ix
=
sizeof
(
heap
);
ix
--;)
12
heap
[
ix
] =
ix
;
13
return
0
;
14
}