From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20766 invoked by alias); 6 Jul 2002 21:36:04 -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 20741 invoked by uid 71); 6 Jul 2002 21:36:02 -0000 Resent-Date: 6 Jul 2002 21:36:02 -0000 Resent-Message-ID: <20020706213602.20740.qmail@sources.redhat.com> Resent-From: gcc-gnats@gcc.gnu.org (GNATS Filer) Resent-To: nobody@gcc.gnu.org Resent-Cc: gcc-prs@gcc.gnu.org, gcc-bugs@gcc.gnu.org Resent-Reply-To: gcc-gnats@gcc.gnu.org, Andrew Pinski Received: (qmail 20398 invoked from network); 6 Jul 2002 21:31:41 -0000 Received: from unknown (HELO physunc.phy.uc.edu) (129.137.4.6) by sources.redhat.com with SMTP; 6 Jul 2002 21:31:41 -0000 Received: from tin.geop.uc.edu (tin.geop.uc.edu [10.44.6.213]) by physunc.phy.uc.edu (8.9.3/8.9.3) with ESMTP id RAA22746 for ; Sat, 6 Jul 2002 17:31:34 -0400 (EDT) Received: (from pinskia@localhost) by tin.geop.uc.edu (8.11.6/8.9.3) id g66LVdD24367; Sat, 6 Jul 2002 17:31:39 -0400 Message-Id: <200207062131.g66LVdD24367@tin.geop.uc.edu> Date: Sat, 06 Jul 2002 14:36:00 -0000 From: Andrew Pinski To: gcc-gnats@gcc.gnu.org X-Send-Pr-Version: 3.113 Subject: c/7225: ice on generic vectors (floats) X-SW-Source: 2002-07/txt/msg00228.txt.bz2 List-Id: >Number: 7225 >Category: c >Synopsis: ice on generic vectors (floats) >Confidential: no >Severity: critical >Priority: low >Responsible: unassigned >State: open >Class: ice-on-legal-code >Submitter-Id: net >Arrival-Date: Sat Jul 06 14:36:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Andrew Pinski >Release: 3.2 20020706 (experimental) >Organization: University of Cincinnati >Environment: System: Linux tin.geop.uc.edu 2.4.18-0.13 #1 Mon Apr 1 14:59:55 EST 2002 i686 unknown Architecture: i686 host: i686-pc-linux-gnu build: i686-pc-linux-gnu target: i686-pc-linux-gnu configured with: /home/gates/pinskia/src/gnu/gcc/src/configure --target=i686-pc-linux-gnu --prefix=/home/gates/pinskia/linux --enable-threads=posix --enable-shared >Description: ice on vector with floats: gcc -O3 vector.c vector.c: In function `tempf': vector.c:18: error: unrecognizable insn: (insn:HI 48 50 49 0 (nil) (set (subreg:SI (reg:V2SF 67) 0) (subreg:SI (const_vector:V2SF [ (const_double:SF 0 [0x0] 0 [0x0] 0 [0x0]) (const_double:SF 0 [0x0] 0 [0x0] 0 [0x0]) ]) 0)) -1 (insn_list 50 (nil)) (nil)) vector.c:18: internal compiler error: Internal compiler error in extract_insn, at recog.c:2146 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. file vector.c: typedef float floatvect2 __attribute__((mode(V2SF))); typedef union { floatvect2 vector; float f[2]; }resfloatvect2; void tempf(float *x, float *y) { floatvect2 temp={x[0],x[1]}; floatvect2 temp1={y[0],y[1]}; resfloatvect2 temp2; temp2.vector=temp+temp1; x[0]=temp2.f[0]; x[1]=temp2.f[1]; } >How-To-Repeat: read above >Fix: unkown. >Release-Note: >Audit-Trail: >Unformatted: