int i;
for (i = sp->num - 1; i >= 0 && TRANSITION_IS_GOTO (sp, i); --i)
{
- if (ngotos == GOTO_NUMBER_MAX)
- fatal (_("too many gotos (max %d)"), GOTO_NUMBER_MAX);
-
+ if (ngotos >= GOTO_NUMBER_MAX)
+ abort ();
ngotos++;
goto_map[TRANSITION_SYMBOL (sp, i)]++;
}
low = goto_map[symbol];
high = goto_map[symbol + 1] - 1;
- while (low <= high)
+ for (;;)
{
+ if (high < low)
+ abort ();
middle = (low + high) / 2;
s = from_state[middle];
if (s == state)
else
high = middle - 1;
}
-
- assert (0);
- /* NOTREACHED */
- return 0;
}