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
2018-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
loop-1.c
blob
a2c7fe642092627b0e77a66219346caaa3506e15
1
/* Copyright (C) 2000 Free Software Foundation.
2
3
Simplified from gcc/fold-const.c
4
by Alexandre Oliva <oliva@lsd.ic.unicamp.br> */
5
6
/* { dg-do compile } */
7
8
void
9
mul_double
()
10
{
11
int
i
,
j
, *
prod
;
12
13
for
(
i
=
0
;
i
<
4
;
i
++)
14
{
15
for
(
j
=
0
;
j
<
4
;
j
++)
16
{
17
*
prod
=
0
;
18
}
19
}
20
}