Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 22393 invoked from network); 5 Dec 2005 22:21:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Dec 2005 22:21:31 -0000 Received: (qmail 62020 invoked by uid 500); 5 Dec 2005 22:21:31 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 61974 invoked by uid 500); 5 Dec 2005 22:21:30 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 61939 invoked by uid 99); 5 Dec 2005 22:21:29 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 14:21:29 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id 3D40F126 for ; Mon, 5 Dec 2005 23:21:08 +0100 (CET) Message-ID: <937778185.1133821268249.JavaMail.jira@ajax.apache.org> Date: Mon, 5 Dec 2005 23:21:08 +0100 (CET) From: "Martin Sebor (JIRA)" To: stdcxx-dev@incubator.apache.org Subject: [jira] Created: (STDCXX-82) [Intel C++ 8.1/Linux] std::bad_exception not thrown when expected Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [Intel C++ 8.1/Linux] std::bad_exception not thrown when expected ----------------------------------------------------------------- Key: STDCXX-82 URL: http://issues.apache.org/jira/browse/STDCXX-82 Project: STDCXX Type: Bug Components: External Versions: 4.1.2 Environment: Intel C++ 8.1, Linux Reporter: Martin Sebor >From https://premier.intel.com/IssueDetail.aspx?IssueID=340929: ---------------------------------------------------------------------- std::bad_exception not thrown when expected ---------------------------------------------------------------------- Issue Number 340929 Issue Status Open Originator Martin Sebor Submit Date 12/5/2005 Company Rogue Wave Last Update 12/5/2005 Intel Contact GANESH RAO Total Days Open 0 Product Type Development Environment (tools,SDV,EAP) Product Status Product Name Intel(R) C++ Compiler for Linux* ---------------------------------------------------------------------- Question ---------------------------------------------------------------------- The program below is expected to run succesffully to completion and exit with the status of 0. When compiled with Intel C++ 8.1 on Linux, it aborts instead. Note that gcc behaves as expected. $ cat t.cpp && icpc -V t.cpp && ./a.out #include #include void foo () throw (std::bad_exception) { throw 0; } void bar () { throw ""; } int main () { std::set_unexpected (bar); try { foo (); } catch (std::bad_exception&) { return 0; } } Intel(R) C++ Compiler for 32-bit applications, Version 8.1 Build 20051007Z Package ID: l_cc_pc_8.1.035 Copyright (C) 1985-2005 Intel Corporation. All rights reserved. Edison Design Group C/C++ Front End, version 3.3 (Oct 7 2005 01:26:35) Copyright 1988-2003 Edison Design Group, Inc. GNU ld version 2.14.90.0.4 20030523 Supported emulations: elf_i386 i386linux Aborted -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira