https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123383
--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
/* Maximal number of targets. We probably will never want to have more than
this. */
const unsigned int num = 256;
...
if (direct->speculative_id >= num)
{
error ("direct call to %s in speculative call sequence has "
"speculative_id %i out of range",
direct->callee->dump_name (), direct->speculative_id);
return true;
}
