From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7027 invoked by alias); 13 Feb 2003 23:26:01 -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 7012 invoked by uid 71); 13 Feb 2003 23:26:00 -0000 Date: Thu, 13 Feb 2003 23:26:00 -0000 Message-ID: <20030213232600.7011.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Graham Stott Subject: Re: java/8866: [3.3/3.4 regression] Bug in switch statement code generation -- missing label Reply-To: Graham Stott X-SW-Source: 2003-02/txt/msg00602.txt.bz2 List-Id: The following reply was made to PR java/8866; it has been noted by GNATS. From: Graham Stott To: tromey@gcc.gnu.org, gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org, green@redhat.com, java-prs@gcc.gnu.org, nobody@gcc.gnu.org, gcc-gnats@gcc.gnu.org Cc: Subject: Re: java/8866: [3.3/3.4 regression] Bug in switch statement code generation -- missing label Date: Thu, 13 Feb 2003 23:20:59 +0000 Hi Tom, tromey@gcc.gnu.org wrote: > Synopsis: [3.3/3.4 regression] Bug in switch statement code generation -- missing label > > State-Changed-From-To: open->analyzed > State-Changed-By: tromey > State-Changed-When: Thu Feb 13 19:13:11 2003 > State-Changed-Why: > The fix for c/7887 didn't help. > > http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=8866 > FYI info I have a handle on this problem :-) The problem occurs because we collapse the jumptable into a simple jump but in doing so we delete the code label associated with the jumptable. I'm working on a fix Graham