From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23035 invoked by alias); 29 Apr 2002 21:47:28 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23012 invoked from network); 29 Apr 2002 21:47:25 -0000 Received: from unknown (HELO cygnus.com) (205.180.83.203) by sources.redhat.com with SMTP; 29 Apr 2002 21:47:25 -0000 Received: from localhost.redhat.com (remus.sfbay.redhat.com [172.16.27.252]) by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id OAA16626 for ; Mon, 29 Apr 2002 14:47:24 -0700 (PDT) Received: by localhost.redhat.com (Postfix, from userid 469) id C9D8710A8C; Mon, 29 Apr 2002 17:46:56 -0400 (EDT) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15565.48976.671016.923393@localhost.redhat.com> Date: Mon, 29 Apr 2002 14:47:00 -0000 To: gdb-patches@sources.redhat.com Subject: [RFA] valops.c: don't coerce vectors. X-SW-Source: 2002-04/txt/msg01140.txt.bz2 I hope this is the last of the AltiVec series. Elena 2002-04-29 Elena Zannoni * valops.c (value_arg_coerce): Don't coerce arrays to pointers if we are dealing with vectors. Index: valops.c =================================================================== RCS file: /cvs/uberbaum/gdb/valops.c,v retrieving revision 1.55 diff -u -p -r1.55 valops.c --- valops.c 26 Apr 2002 03:37:42 -0000 1.55 +++ valops.c 29 Apr 2002 21:45:55 -0000 @@ -1190,8 +1190,12 @@ value_arg_coerce (struct value *arg, str type = lookup_pointer_type (type); break; case TYPE_CODE_ARRAY: + /* Arrays are coerced to pointers to their first element, unless + they are vectors, in which case we want to leave them alone, + because they are passed by value. */ if (current_language->c_style_arrays) - type = lookup_pointer_type (TYPE_TARGET_TYPE (type)); + if (!TYPE_VECTOR (type)) + type = lookup_pointer_type (TYPE_TARGET_TYPE (type)); break; case TYPE_CODE_UNDEF: case TYPE_CODE_PTR: