Commit b07ef7b9 by Richard Kenner

*** empty log message ***

From-SVN: r1117
parent 51041a89
...@@ -3340,8 +3340,13 @@ reload_as_needed (first, live_known) ...@@ -3340,8 +3340,13 @@ reload_as_needed (first, live_known)
if (class == (int) reload_reg_class[i]) if (class == (int) reload_reg_class[i])
{ {
if (reload_optional[i]) if (reload_optional[i])
reload_in[i] = reload_out[i] = reload_reg_rtx[i] = 0; {
else if (reload_reg_rtx[i] == 0) reload_in[i] = reload_out[i] = 0;
reload_secondary_p[i] = 0;
}
else if (reload_reg_rtx[i] == 0
&& (reload_in[i] != 0 || reload_out[i] != 0
|| reload_secondary_p[i] != 0))
abort (); abort ();
} }
......
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