https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83957
Jakub Jelinek changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83957
--- Comment #4 from Jakub Jelinek ---
Author: jakub
Date: Mon Jan 22 23:00:50 2018
New Revision: 256967
URL: https://gcc.gnu.org/viewcvs?rev=256967&root=gcc&view=rev
Log:
PR tree-optimization/83957
* omp-expand.c (expand_omp_for_
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83957
Jakub Jelinek changed:
What|Removed |Added
Status|UNCONFIRMED |ASSIGNED
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83957
Jakub Jelinek changed:
What|Removed |Added
CC||jakub at gcc dot gnu.org
--- Comment #2
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83957
--- Comment #1 from Arseny Solokha ---
Actually, the testcase can be reduced to just
void
k2 (int *ch, int fw)
{
if (fw < 0)
while (fw < 1)
{
ch = &fw;
++fw;
}
}