From 99fd3aa53848b51fdd189d0814c744ce4b89de88 Mon Sep 17 00:00:00 2001 From: Anthony Green Date: Wed, 2 Jun 1999 11:00:44 +0000 Subject: [multiple changes] Wed Jun 2 10:44:38 1999 Anthony Green * except.c (link_handler): Chain exception handlers in order. Wed Jun 2 10:41:24 1999 Anthony Green * expr.c (expand_byte_code): Fill unreachable bytecode regions with nops and process as usual in order to always set correct EH ranges. Emit detailed warnings about unreachable bytecodes. Wed Jun 2 10:35:13 1999 Anthony Green * class.c (build_utf8_ref): Mark cinit and utf8 tree nodes as constant. (From egcs posted patches.) From-SVN: r27314 --- gcc/java/except.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/java/except.c') diff --git a/gcc/java/except.c b/gcc/java/except.c index 0e6eb39..c8674f3 100644 --- a/gcc/java/except.c +++ b/gcc/java/except.c @@ -118,7 +118,7 @@ link_handler (range, outer) if (range->start_pc == outer->start_pc && range->end_pc == outer->end_pc) { - outer->handlers = chainon (range->handlers, outer->handlers); + outer->handlers = chainon (outer->handlers, range->handlers); return; } -- cgit v1.1