OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix PR42205.
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
pr42205-2.c
1
/* { dg-options "-O1 -funsafe-math-optimizations -floop-interchange" } */
2
3
double f(double x)
4
{
5
double y = 0.0;
6
int i;
7
for (i = 0; i < 8; i++) {
8
y += x * i;
9
}
10
return y;
11
}