From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25175 invoked by alias); 21 May 2003 10:33:08 -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 11428 invoked by uid 71); 21 May 2003 10:26:00 -0000 Resent-Date: 21 May 2003 10:26:00 -0000 Resent-Message-ID: <20030521102600.11427.qmail@sources.redhat.com> Resent-From: gcc-gnats@gcc.gnu.org (GNATS Filer) Resent-Cc: gcc-prs@gcc.gnu.org, gcc-bugs@gcc.gnu.org Resent-Reply-To: gcc-gnats@gcc.gnu.org, gcc@microbizz.nl Received: (qmail 24245 invoked by uid 48); 21 May 2003 10:15:42 -0000 Message-Id: <20030521101542.24244.qmail@sources.redhat.com> Date: Wed, 21 May 2003 10:33:00 -0000 From: gcc@microbizz.nl Reply-To: gcc@microbizz.nl To: gcc-gnats@gcc.gnu.org X-Send-Pr-Version: gnatsweb-2.9.3 (1.1.1.1.2.31) Subject: other/10901: non-local goto's (still) don't work on apple-powerpc-darwin X-SW-Source: 2003-05/txt/msg02282.txt.bz2 List-Id: >Number: 10901 >Category: other >Synopsis: non-local goto's (still) don't work on apple-powerpc-darwin >Confidential: no >Severity: serious >Priority: medium >Responsible: unassigned >State: open >Class: sw-bug >Submitter-Id: net >Arrival-Date: Wed May 21 10:26:00 UTC 2003 >Closed-Date: >Last-Modified: >Originator: gcc@microbizz.nl >Release: gcc-3.3 >Organization: >Environment: apple-powerpc-darwin >Description: extern int puts (const char *); extern void abort (void); int main (void) { __label__ l1; void foo (void) { void bar (void) { puts ("goto l1"); goto l1; } bar (); } foo (); abort (); l1: puts ("label l1"); return 0; } >How-To-Repeat: gcc nonlocalgoto.c -o nonlocalgoto -O3 gcc nonlocalgoto.c -o nonlocalgoto -O0 >Fix: >Release-Note: >Audit-Trail: >Unformatted: