A warning pass should not be exporting global ranges it finds along
the way, because that will alter the behavior of future passes.
The reason the present behavior was there was because of some long ago
forgotten regression in another pass. This regression is no longer
there, and if there's ever any fallout from cleaning this up, we can
address it in the pass that is missing some information.
gcc/ChangeLog:
* gimple-ssa-warn-alloca.cc (pass_walloca::execute): Do not export
global ranges.
unsigned int
pass_walloca::execute (function *fun)
{
- gimple_ranger *ranger = enable_ranger (fun);
+ enable_ranger (fun);
basic_block bb;
FOR_EACH_BB_FN (bb, fun)
{
}
}
}
- ranger->export_global_ranges ();
disable_ranger (fun);
return 0;
}