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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1
          Component|c++                         |tree-optimization
   Target Milestone|---                         |14.0
            Summary|ice in exact_div, at        |[14 Regression] ice in
                   |poly-int.h:2156             |exact_div, at
                   |                            |poly-int.h:2156

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
extern "C" __attribute__((__simd__)) float powf(float, float);
float gv[0][10];
float eq_set_bands_real_adj[0];
void eq_set_bands_real() {
  for (int c = 0; c < 10; c++)
    for (int i = 0; i < 10; i++)
      gv[c][i] = powf(0, eq_set_bands_real_adj[i]) - 1;
}

Reply via email to