From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16111 invoked by alias); 27 Feb 2006 22:36:44 -0000 Received: (qmail 16086 invoked by uid 48); 27 Feb 2006 22:36:41 -0000 Date: Mon, 27 Feb 2006 22:42:00 -0000 Message-ID: <20060227223641.16085.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug target/26459] [4.1/4.2 Regression] gcc fails to build on powerpc e500-double targets In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "steven at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2006-02/txt/msg03102.txt.bz2 List-Id: ------- Comment #12 from steven at gcc dot gnu dot org 2006-02-27 22:36 ------- With "GNU C version 4.1.0 20060222 (prerelease) (powerpc-unknown-linux-gnuspe)" I get a different ICE: $ ./cc1 -O2 -fno-inline t.c foo t.c: In function 'foo': t.c:9: warning: incompatible implicit declaration of built-in function 'ldexp' Analyzing compilation unitPerforming intraprocedural optimizations Assembling functions: foo t.c: In function 'foo': t.c:12: error: unrecognizable insn: (insn 77 60 32 2 (set (subreg:DF (reg:DI 3 3 [128]) 0) (mem/u/c/i:DF (reg/f:SI 9 9 [126]) [3 S8 A64])) -1 (nil) (expr_list:REG_DEAD (reg/f:SI 9 9 [126]) (nil))) t.c:12: internal compiler error: in extract_insn, at recog.c:2084 Please submit a full bug report, with preprocessed source if appropriate. $ cat t.c void foo (long exponent, double *to) { double dto; dto = 0.0; if (!exponent) dto = ldexp (1.0, exponent); *to = dto; } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26459