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
PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
pr40157.c
blob
513958fe58f452b7c1c3026d2ffdea23e20b9b17
1
/* { dg-require-effective-target int32plus } */
2
/* { dg-options "-O2 -fgraphite-identity -floop-block" } */
3
4
int
buffer
[
256
*
256
];
5
int
main
(
void
)
6
{
7
int
*
dest
=
buffer
;
8
int
x
,
y
;
9
for
(
x
=
0
;
x
<
256
;
x
++)
10
for
(
y
=
0
;
y
<
256
;
y
++)
11
*
dest
++ =
0
;
12
return
0
;
13
}