blob: 2c7a0f82c8aac3780768dae5b9076779c91455ba [file] [log] [blame]
/* PR rtl-optimization/58997 */
int a, b, c, e;
short d;
char h;
void
foo ()
{
while (b)
{
d = a ? c : 1 % a;
c = d;
h = d;
if (!h)
while (e)
;
}
}