These are minor cleanups to the dumping code.
Tested on x86-64 Linux.
gcc/ChangeLog:
* gimple-range-trace.cc (debug_seed_ranger): Remove static.
(dump_ranger): Dump function name.
// Query all statements in the IL to precalculate computable ranges in RANGER.
-static DEBUG_FUNCTION void
+DEBUG_FUNCTION void
debug_seed_ranger (gimple_ranger &ranger)
{
// Recalculate SCEV to make sure the dump lists everything.
dump_ranger (FILE *out)
{
gimple_ranger ranger;
+
+ fprintf (out, ";; Function ");
+ print_generic_expr (out, current_function_decl);
+ fprintf (out, "\n");
+
debug_seed_ranger (ranger);
ranger.dump (out);
}