From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6650 invoked by alias); 22 Apr 2002 04:06: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 6612 invoked by uid 71); 22 Apr 2002 04:06:02 -0000 Date: Sun, 21 Apr 2002 21:06:00 -0000 Message-ID: <20020422040602.6611.qmail@sources.redhat.com> To: rth@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: "Billinghurst, David \(CRTS\)" Subject: Re: c++/6212: g++ testsuite EH regressions for irix6 -mabi=64 Reply-To: "Billinghurst, David \(CRTS\)" X-SW-Source: 2002-04/txt/msg01095.txt.bz2 List-Id: The following reply was made to PR c++/6212; it has been noted by GNATS. From: "Billinghurst, David (CRTS)" To: , , , , Cc: Subject: Re: c++/6212: g++ testsuite EH regressions for irix6 -mabi=64 Date: Mon, 22 Apr 2002 14:01:00 +1000 The smallest test case I have found is g++.old-deja/g++.other/eh3.C. = The=20 preprocessed file is attached, but the original file doesn't have any = preprocessor=20 directives. # 2 = "/exd6/billingd/src/gcc-j/gcc/testsuite/g++.old-deja/g++.other/eh3.C" typedef struct { } e; char *p; void _Jv_throw (); int barf (int len) { char a[len]; p =3D a; _Jv_throw (); return 0; } void _Jv_throw () { e ex; throw ex; } int main () { try { barf (2); } catch (...) { } return 0; }