From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8304 invoked by alias); 21 Oct 2003 15:25:17 -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 8293 invoked by uid 48); 21 Oct 2003 15:25:17 -0000 Date: Tue, 21 Oct 2003 15:25:00 -0000 Message-ID: <20031021152517.8292.qmail@sources.redhat.com> From: "bangerth at dealii dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20031021145227.12709.ncm-nospam@cantrip.org> References: <20031021145227.12709.ncm-nospam@cantrip.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c++/12709] [3.4 regression] ICE with __FUNCTION__ and function-try-block X-Bugzilla-Reason: CC X-SW-Source: 2003-10/txt/msg01741.txt.bz2 List-Id: PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12709 bangerth at dealii dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|critical |normal Status|UNCONFIRMED |NEW Ever Confirmed| |1 Last reconfirmed|0000-00-00 00:00:00 |2003-10-21 15:25:16 date| | Summary|crash on __noreturn__ in ?: |[3.4 regression] ICE with |in try block |__FUNCTION__ and function- | |try-block Target Milestone|--- |3.4 ------- Additional Comments From bangerth at dealii dot org 2003-10-21 15:25 ------- I don't think the crash has anything to do with __noreturn__. Here's something smaller: -------------------- void fun() try { __FUNCTION__; } catch (...) {} --------------------- g/x> /home/bangerth/bin/gcc-3.4-pre/bin/c++ -c x.cc x.cc: In function `void fun()': x.cc:6: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See for instructions. This seems like a bad interaction of __FUNCTION__ and a function-try block. It's a regression on mainline, in any case. W.