From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24005 invoked by alias); 20 May 2003 09:20:49 -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 11113 invoked by uid 71); 20 May 2003 09:16:02 -0000 Date: Tue, 20 May 2003 09:20:00 -0000 Message-ID: <20030520091602.11112.qmail@sources.redhat.com> To: ebotcazou@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: "Christian Ehrhardt" Subject: Re: optimization/10876: [3.3/3.4 regression] [Sparc] internal compiler error on FP code Reply-To: "Christian Ehrhardt" X-SW-Source: 2003-05/txt/msg02155.txt.bz2 List-Id: The following reply was made to PR optimization/10876; it has been noted by GNATS. From: "Christian Ehrhardt" To: gcc-prs@gcc.gnu.org, aaronw@attbi.com, gcc-bugs@gcc.gnu.org, gcc-gnats@gcc.gnu.org, nobody@gcc.gnu.org Cc: Subject: Re: optimization/10876: [3.3/3.4 regression] [Sparc] internal compiler error on FP code Date: Tue, 20 May 2003 10:39:55 +0200 Redux: Compile with -O2 ------------ cut -------------------------------------- void f(void) { unsigned int butterfly, block, offset; double *Z; for (block = 0; block < 512; block += 512) { double T1re, T2re; offset = butterfly + block; T1re += T2re; T2re = Z[offset] + T1re; } } ------------ cut -------------------------------------- This ICEs 3.3 and 3.4 as of 20030519. The ICE is a segfault in calculate_giv_inc at unroll.c:1588. -- THAT'S ALL FOLKS!