+Mon Sep 29 10:51:53 1997 Jason Merrill <jason@yorick.cygnus.com>
+
+ * flow.c (find_basic_blocks): Mark calls as potentially jumping
+ to the EH labels.
+
Mon Sep 29 09:58:06 1997 Jeffrey A Law (law@cygnus.com)
* configure.in: Substitute for "install" too.
if (! LABEL_REF_NONLOCAL_P (x))
block_live[BLOCK_NUM (XEXP (x, 0))] = 1;
- for (x = exception_handler_labels; x; x = XEXP (x, 1))
- block_live[BLOCK_NUM (XEXP (x, 0))] = 1;
+ if (asynchronous_exceptions)
+ for (x = exception_handler_labels; x; x = XEXP (x, 1))
+ block_live[BLOCK_NUM (XEXP (x, 0))] = 1;
/* Record which basic blocks control can drop in to. */
mark_label_ref (gen_rtx (LABEL_REF, VOIDmode, XEXP (x, 0)),
insn, 0);
+ if (! asynchronous_exceptions)
+ for (x = exception_handler_labels; x; x = XEXP (x, 1))
+ mark_label_ref (gen_rtx (LABEL_REF, VOIDmode, XEXP (x, 0)),
+ insn, 0);
+
/* ??? This could be made smarter:
in some cases it's possible to tell that certain
calls will not do a nonlocal goto.