aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 244d6fb..0591a8b 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -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);
}
}