[Bug tree-optimization/82518] [8 regression] gfortran.fortran-torture/execute/in-pack.f90 fails on armeb since r252917

wilco.dijkstra at arm dot com gcc-bugzilla@gcc.gnu.org
Thu Feb 15 20:40:00 GMT 2018


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82518

--- Comment #42 from Wilco <wilco.dijkstra at arm dot com> ---
Cut down example:

typedef struct { int x, y; } X;

void f (X *p, int n)
{
  for (int i = 0; i < n; i++)
  { p[i].x = i;
    p[i].y = i + 1;
  }
}


More information about the Gcc-bugs mailing list