[Bug tree-optimization/68306] [6 Regression] ICE: in vectorizable_store, at tree-vect-stmts.c:5651

uweigand at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Mon Nov 16 14:43:00 GMT 2015


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

--- Comment #14 from Ulrich Weigand <uweigand at gcc dot gnu.org> ---
Building the following reduced test case with
  -O2 -ftree-vectorize -fcx-fortran-rules
with an spu-elf cross-cc1 shows the ICE.

void
test (_Complex float *dest,
      _Complex float scale, int count)
{
  for (int x = 0; x < count; x++)
    dest[x] *= scale;
}


More information about the Gcc-bugs mailing list