[Bug tree-optimization/23855] loop header should also be pulled out of the inner loop too
pinskia at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Sun Jan 15 20:12:00 GMT 2006
------- Comment #7 from pinskia at gcc dot gnu dot org 2006-01-15 20:12 -------
Oh, that was PR 23970.
And I had meant:
void bar(void);
void foo(int ie, int je)
{
int i, j;
if (0<je && 0 <ie)
{
j = 0;
do {
i =0;
do {
bar();
i++;
} while (i < ie);
j++;
} while (j < ie);
}
}
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |23970
nThis| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23855
More information about the Gcc-bugs
mailing list