From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1366 invoked by alias); 30 Jun 2005 17:22:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 1132 invoked by uid 48); 30 Jun 2005 17:22:47 -0000 Date: Thu, 30 Jun 2005 17:22:00 -0000 Message-ID: <20050630172247.1131.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20050630151615.22253.andreast@gcc.gnu.org> References: <20050630151615.22253.andreast@gcc.gnu.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug middle-end/22253] [4.1 Regression] ICE while compiling libjava/gnu/gcj/xlib/natWindow.cc X-Bugzilla-Reason: CC X-SW-Source: 2005-06/txt/msg03602.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-30 17:22 ------- Confirmed, reduced testcase: struct allocator { ~allocator() {} }; struct _Vector_base { struct _Vector_impl { int* _M_start; int* _M_finish; _Vector_impl() : _M_start(0), _M_finish(0) { } }; _Vector_base(){} _Vector_impl _M_impl; }; void setWMProtocols() { allocator a; _Vector_base atomVector; } This also happens on i686-pc-linux-gnu with the reduced testcase. Only -O2 -fnon-call-exceptions is needed to reproduce the bug. I think VRP is not cleaning up the exceptions regions correctly. This is a build bug because it blocks building with --enable-java-awt=gtk,xlib. -- What |Removed |Added ---------------------------------------------------------------------------- CC| |dnovillo at gcc dot gnu dot | |org Severity|normal |critical Status|UNCONFIRMED |NEW Ever Confirmed| |1 GCC build triplet|powerpc-apple-darwin8.1.0 | GCC host triplet|powerpc-apple-darwin8.1.0 | GCC target triplet|powerpc-apple-darwin8.1.0 | Keywords| |build Last reconfirmed|0000-00-00 00:00:00 |2005-06-30 17:22:45 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22253