Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr27639.c
blob: cb7b1429d4d489b59cd4b5deb8c67ae830118333 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2 -std=c99" } */
#if(__SIZEOF_INT__ >= 4)
char
heap
[
50000
];
#else
char
heap
[
32000
];
#endif
int
main
()
{
for
(
unsigned
ix
=
sizeof
(
heap
);
ix
--;)
heap
[
ix
]
=
ix
;
return
0
;
}