https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95897
--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> --- Testcase that also triggers on x86_64 and without graphite: double foo (double x, int n) { double s = 0.; for (int i = 0; i < n; ++i) { s += x; s += x; s += x; } return s; }