Commit cd8ce14b by Richard Kenner

(debug_reload): Use GET_MODE_NAME to avoid warning.

From-SVN: r8647
parent 6405e07b
......@@ -5716,13 +5716,13 @@ debug_reload()
if (reload_in[r])
{
fprintf (stderr, "\nreload_in (%s) = ", mode_name[reload_inmode[r]]);
fprintf (stderr, "\nreload_in (%s) = ", GET_MODE_NAME(reload_inmode[r]));
debug_rtx (reload_in[r]);
}
if (reload_out[r])
{
fprintf (stderr, "\nreload_out (%s) = ", mode_name[reload_outmode[r]]);
fprintf (stderr, "\nreload_out (%s) = ", GET_MODE_NAME (reload_outmode[r]));
debug_rtx (reload_out[r]);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment