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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|openmp                      |
            Summary|[10/11 Regression] ICE in   |[8/9/10/11 Regression] ICE
                   |expand_simple_binop, at     |in expand_simple_binop, at
                   |optabs.c:939 since          |optabs.c:939 since r8-3977
                   |r10-1420-g744fd446c321f78f  |

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Also, the PR has nothing to do with OpenMP:
-O2 --param max-rtl-if-conversion-unpredictable-cost=0 on x86_64-linux ICEs
too:
typedef long long int V __attribute__((vector_size (16)));

long long int
foo (V x, V y)
{
  long long int t1 = y[0];
  long long int t2 = x[0];
  long long int t3;
  if (t2 < 0)
    t3 = t1;
  else
    t3 = 0;
  return t3;
}
And that started with r8-3977-gef9eec0b599d533b58e29fe0c0bf6435e5368378 (latent
before because of different costs).

Reply via email to