From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25599 invoked by alias); 19 May 2010 22:06:13 -0000 Received: (qmail 25529 invoked by uid 48); 19 May 2010 22:05:54 -0000 Date: Wed, 19 May 2010 22:06:00 -0000 Message-ID: <20100519220554.25528.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug target/42159] [4.4/4.5/4.6] app SIGABRTs after a trivial nested throw/stack unwinding In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "simon at pushface dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2010-05/txt/msg02123.txt.bz2 ------- Comment #17 from simon at pushface dot org 2010-05-19 22:05 ------- (In reply to comment #16) > Confirmed on gcc version 4.5.1 20100506 (prerelease). Confirmed fixed or confirmed present? The Ada version of this test executes correctly for 4.5.0: $ gnatgcc -v Using built-in specs. COLLECT_GCC=/opt/gcc-4.5.0-x86_64/bin/gcc COLLECT_LTO_WRAPPER=/opt/gcc-4.5.0-x86_64/libexec/gcc/x86_64-apple-darwin10/4.5.0/lto-wrapper Target: x86_64-apple-darwin10 Configured with: ../gcc-4.5.0/configure --prefix=/opt/gcc-4.5.0-x86_64 --disable-multilib --enable-languages=c,ada --with-gmp=/opt/gnu --with-mpfr=/opt/gnu --with-mpc=/opt/gnu --build=x86_64-apple-darwin10 Thread model: posix gcc version 4.5.0 (GCC) $ cat raiser.adb with Ada.Text_IO; use Ada.Text_IO; procedure Raiser is begin begin raise Constraint_Error; exception when Constraint_Error => Put_Line ("CE raised."); end; end Raiser; $ ./raiser CE raised. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42159