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
openmp: Fix signed/unsigned warning
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
bb-slp-60.c
blob
52643bfd75ad62942674045a8098a051ea0901cd
1
/* { dg-do compile } */
2
3
enum
{
a
=
1
,
b
};
4
float
*
c
, *
e
;
5
float
d
,
h
;
6
int
f
,
g
;
7
void
i
()
8
{
9
float
j
=
h
;
10
for
(;
g
;)
11
for
(;
f
;
f
++)
12
{
13
c
[
a
] =
j
*
d
;
14
c
[
b
] =
h
*
d
;
15
j
=
0
;
16
h
=
e
[
2
];
17
}
18
}