https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66036
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |6.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66036
--- Comment #4 from Richard Biener ---
Author: rguenth
Date: Fri May 8 15:13:55 2015
New Revision: 222914
URL: https://gcc.gnu.org/viewcvs?rev=222914&root=gcc&view=rev
Log:
2015-05-08 Richard Biener
PR tree-optimization/66036
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66036
Richard Biener changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66036
--- Comment #2 from Richard Biener ---
Reduction case with unrolling
struct Xf {
float x;
float y;
};
float testf (struct Xf *x, int stride, int n)
{
int i;
float sum = 0.;
for (i = 0; i < n; ++i)
{
sum += x[i*stride].x;
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66036
Richard Biener changed:
What|Removed |Added
Keywords||missed-optimization
Status|