From: Jim Wilson Date: Fri, 25 Sep 1992 05:52:48 +0000 (-0700) Subject: (push_function_context): Save epilogue_delay_list. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f979c996cd8307d2273ae258ab9372c3fd98358c;p=gcc.git (push_function_context): Save epilogue_delay_list. (pop_function_context): Restore epilogue_delay_list. From-SVN: r2245 --- 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);