From f979c996cd8307d2273ae258ab9372c3fd98358c Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Thu, 24 Sep 1992 22:52:48 -0700 Subject: [PATCH] (push_function_context): Save epilogue_delay_list. (pop_function_context): Restore epilogue_delay_list. From-SVN: r2245 --- gcc/function.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gcc/function.c b/gcc/function.c index a7e143805d8..01292cb3409 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -424,6 +424,7 @@ push_function_context () p->temp_slots = temp_slots; p->temp_slot_level = temp_slot_level; p->fixup_var_refs_queue = 0; + p->epilogue_delay_list = current_function_epilogue_delay_list; save_tree_status (p); save_storage_status (p); @@ -483,6 +484,7 @@ pop_function_context () function_call_count = p->function_call_count; temp_slots = p->temp_slots; temp_slot_level = p->temp_slot_level; + current_function_epilogue_delay_list = p->epilogue_delay_list; restore_tree_status (p); restore_storage_status (p); -- 2.30.2