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

Kewen Lin <linkw at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|powerpc-darwin              |powerpc-darwin,
                   |                            |powerpc64-linux

--- Comment #4 from Kewen Lin <linkw at gcc dot gnu.org> ---
When cooking a patch, I reduced the preprocessed file into:

int a;
long *b;
int c() {
  long e;
  int d = 0;
  for (long f; f; f++) {
    e = b[f * a];
    if (e)
      d = 1;
  }
  if (d)
    for (;;)
      ;
}

and found the ICE can be reproduced on powerpc64 with -O2 -mcpu=power6
-maltivec.

Reply via email to