From 09bbf9207034ce18421e7b8a051d356c8c339d9c Mon Sep 17 00:00:00 2001 From: wilson Date: Sat, 21 Jan 1995 01:58:34 +0000 Subject: (delete_handlers): When clear LABEL_PRESERVE_P, also remove label from nonlocal_label list. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8782 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/function.c | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'gcc/function.c') diff --git a/gcc/function.c b/gcc/function.c index 73f59dab4e7..88b346cb624 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -2957,7 +2957,25 @@ delete_handlers () Also permit deletion of the nonlocal labels themselves if nothing local refers to them. */ if (GET_CODE (insn) == CODE_LABEL) - LABEL_PRESERVE_P (insn) = 0; + { + tree t, last_t; + + LABEL_PRESERVE_P (insn) = 0; + + /* Remove it from the nonlocal_label list, to avoid confusing + flow. */ + for (t = nonlocal_labels, last_t = 0; t; + last_t = t, t = TREE_CHAIN (t)) + if (DECL_RTL (TREE_VALUE (t)) == insn) + break; + if (t) + { + if (! last_t) + nonlocal_labels = TREE_CHAIN (nonlocal_labels); + else + TREE_CHAIN (last_t) = TREE_CHAIN (t); + } + } if (GET_CODE (insn) == INSN && ((nonlocal_goto_handler_slot != 0 && reg_mentioned_p (nonlocal_goto_handler_slot, PATTERN (insn))) -- cgit v1.2.1