From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15507 invoked by alias); 6 May 2002 16:47:09 -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 15487 invoked from network); 6 May 2002 16:47:07 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 6 May 2002 16:47:07 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 3FD883DBC; Mon, 6 May 2002 12:47:13 -0400 (EDT) Message-ID: <3CD6B391.3060306@cygnus.com> Date: Mon, 06 May 2002 09:47:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0rc1) Gecko/20020429 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Elena Zannoni Cc: gdb-patches@sources.redhat.com Subject: Re: [PATCH/RFA] gdbtypes.c simplify SIMD types References: <15570.64657.504041.150367@localhost.redhat.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-05/txt/msg00129.txt.bz2 > #if 0 > - union __gdb_builtin_type_vec128 > + union __gdb_builtin_type_vec128 > { > - struct __builtin_v16qi v16qi; > - struct __builtin_v8hi v8hi; > - struct __builtin_v4si v4si; > - struct __builtin_v4sf v4sf; > - uint128_t uint128; > + int128_t uint128; > + float v4_float[4]; > + int32_t v4_int32[4]; > + int16_t v8_int16[8]; > + int8_t v16_int8[16]; > }; > #endif Hmm, much better! Now where was that MMX patch. Andrew