]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
except.c: Include intl.h.
authorRichard Henderson <rth@cygnus.com>
Thu, 1 Jul 1999 23:49:47 +0000 (17:49 -0600)
committerJeff Law <law@gcc.gnu.org>
Thu, 1 Jul 1999 23:49:47 +0000 (17:49 -0600)
X
        * except.c: Include intl.h.
        (expand_eh_return): Set current_function_cannot_inline.
        (save_eh_status, restore_eh_status): Twiddle eh_return_stub_label.
        * function.h (struct function): Add eh_return_stub_label.
        * flow.c (delete_unreachable_blocks): Don't merge across EH edges.
        * Makefile.in (except.o): Depend on intl.h.

From-SVN: r27906

gcc/Makefile.in
gcc/flow.c
gcc/function.h

index 836bf6b175976a845386876fe6f2325a8e042afc..4fcc7dc5a378e49214b12e7159bc7903eff644ce 100644 (file)
@@ -1476,7 +1476,7 @@ stmt.o : stmt.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h function.h  \
    loop.h $(RECOG_H) toplev.h output.h varray.h
 except.o : except.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
    function.h insn-flags.h $(EXPR_H) $(REGS_H) hard-reg-set.h \
-   insn-config.h $(RECOG_H) output.h except.h toplev.h
+   insn-config.h $(RECOG_H) output.h except.h toplev.h intl.h
 expr.o : expr.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h function.h \
    $(REGS_H) insn-flags.h insn-codes.h $(EXPR_H) insn-config.h $(RECOG_H) \
    output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h except.h
index 8b0a7691aa1d0b806e2a9d03642490de6a7d6d2a..edcee2919ad7cadf7685784be1c2a1d72f9e65f1 100644 (file)
@@ -1578,6 +1578,7 @@ delete_unreachable_blocks ()
       /* A loop because chains of blocks might be combineable.  */
       while ((s = b->succ) != NULL
             && s->succ_next == NULL
+            && (s->flags & EDGE_EH) == 0
             && (c = s->dest) != EXIT_BLOCK_PTR
             && c->pred->pred_next == NULL
             && merge_blocks (s, b, c))
index 297c4f043c502e8a99e67d48c50d0692abc1c48e..c25933ca26e31863aa1dd44138c9f6dd2cf9ec38 100644 (file)
@@ -146,6 +146,7 @@ struct function
   struct label_node *caught_return_label_stack;
   tree protect_list;
   rtx ehc;
+  rtx eh_return_stub_label;
 
   /* For expr.c.  */
   rtx pending_chain;