Commit 27ce006b by Richard Kenner

(mark_all_temps_used): Fix error in last change.

From-SVN: r12672
parent a94e4054
......@@ -1238,7 +1238,7 @@ mark_all_temps_used ()
for (p = temp_slots; p; p = p->next)
{
p->in_use = 1;
p->level = temp_slot_level;
p->level = MIN (p->level, temp_slot_level);
}
}
......
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