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;
}

Reply via email to