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
/
pr50561.c
blob
5fbad4a732906546b8cdc30264e9a1696018e304
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -floop-strip-mine" } */
3
4
void
f
(
unsigned
*
s
)
5
{
6
int
n
;
7
for
(
n
=
0
;
n
<
256
;
n
++)
8
s
[
n
] =
0
;
9
}