From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7089 invoked by alias); 21 Mar 2002 01:26:02 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 7064 invoked by uid 71); 21 Mar 2002 01:26:01 -0000 Date: Wed, 20 Mar 2002 17:26:00 -0000 Message-ID: <20020321012601.7061.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Jeff Sturm Subject: Re: java/5986: SIGSEGV in __gcj_personality_v0 Reply-To: Jeff Sturm X-SW-Source: 2002-03/txt/msg00780.txt.bz2 List-Id: The following reply was made to PR java/5986; it has been noted by GNATS. From: Jeff Sturm To: Tom Tromey Cc: gcc-gnats@gcc.gnu.org Subject: Re: java/5986: SIGSEGV in __gcj_personality_v0 Date: Wed, 20 Mar 2002 20:19:59 -0500 (EST) On 20 Mar 2002, Tom Tromey wrote: > I can't find the attachment. > Could you send the program? Try this one. public class CrashEH { public void t() throws Exception { try { try { throw new Exception(); } catch (Exception e) { throw e; } } finally { System.out.println("cleanup"); } } public static void main(String[] args) { try { (new CrashEH()).t(); } catch (Exception ex) { System.out.println("ok"); } } }