From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1338 invoked by alias); 24 Jul 2002 21:25:07 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 1327 invoked from network); 24 Jul 2002 21:25:05 -0000 Received: from unknown (HELO atlrel9.hp.com) (156.153.255.214) by sources.redhat.com with SMTP; 24 Jul 2002 21:25:05 -0000 Received: from hpda.cup.hp.com (hpda.cup.hp.com [15.75.208.53]) by atlrel9.hp.com (Postfix) with ESMTP id D841DE00684; Wed, 24 Jul 2002 17:25:04 -0400 (EDT) Received: from hpsje.cup.hp.com (hpsje.cup.hp.com [15.244.96.221]) by hpda.cup.hp.com (Postfix) with ESMTP id 41E7EB351; Wed, 24 Jul 2002 14:25:04 -0700 (PDT) Received: (from sje@localhost) by hpsje.cup.hp.com (8.8.6 (PHNE_17190)/8.7.3 TIS Messaging 5.0) id OAA17485; Wed, 24 Jul 2002 14:25:03 -0700 (PDT) Date: Thu, 25 Jul 2002 02:02:00 -0000 From: Steve Ellcey Message-Id: <200207242125.OAA17485@hpsje.cup.hp.com> To: aldyh@redhat.com Cc: gcc@gcc.gnu.org, dave@hiauly1.hia.nrc.ca Subject: Re: Vector modes under hppa64-hpu X-SW-Source: 2002-07/txt/msg01183.txt.bz2 > Can you post x.c so I can try to debug this? Sorry, x.c is just gcc.c-torture/compile/simd-1.c, I rename all my tests to x.c when I work on them. $ cat x.c typedef int v2si __attribute__ ((mode(V2SI))); typedef unsigned di __attribute__ ((mode(DI))); void foo(unsigned long); void bar() { v2si x = { 1, 2 }; foo((di) x); } > Also, can I can make a cross ia64-hpux (or whatever) to reproduce your > error, as I don't have neither an ia64 nor a pa64. I don't know if building a cross ia64-hpux will work or not, but a pa64 version should at least build cc1. These two platforms are behaving slightly differently for me. I can make IA64 work at all optimization levels with the change that I included in my earlier mail (http://gcc.gnu.org/ml/gcc/2002-07/msg01148.html) but PA64 will only work at -O0 with that change, -O1/-O2/etc still fail with the simplify_gen_subreg message. Steve Ellcey sje@cup.hp.com