From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29964 invoked by alias); 20 Apr 2005 22:07:00 -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 29932 invoked from network); 20 Apr 2005 22:06:55 -0000 Received: from unknown (HELO sibelius.xs4all.nl) (82.92.89.47) by sourceware.org with SMTP; 20 Apr 2005 22:06:55 -0000 Received: from elgar.sibelius.xs4all.nl (root@elgar.sibelius.xs4all.nl [192.168.0.2]) by sibelius.xs4all.nl (8.13.0/8.13.0) with ESMTP id j3KM6oBx031084; Thu, 21 Apr 2005 00:06:50 +0200 (CEST) Received: from elgar.sibelius.xs4all.nl (kettenis@localhost.sibelius.xs4all.nl [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.13.4/8.13.3) with ESMTP id j3KM6ovO016408; Thu, 21 Apr 2005 00:06:50 +0200 (CEST) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.13.4/8.13.4/Submit) id j3KM6nPZ022715; Thu, 21 Apr 2005 00:06:49 +0200 (CEST) Date: Wed, 20 Apr 2005 22:07:00 -0000 Message-Id: <200504202206.j3KM6nPZ022715@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: manjo@austin.ibm.com CC: gdb-patches@sources.redhat.com In-reply-to: (message from Manoj Iyer on Wed, 20 Apr 2005 10:01:52 -0500 (CDT)) Subject: Re: [RFC] unsigned32 and unsigned64 is multiply defined in sim-types.h. References: X-SW-Source: 2005-04/txt/msg00243.txt.bz2 Date: Wed, 20 Apr 2005 10:01:52 -0500 (CDT) From: Manoj Iyer --- src/sim/common/sim-types.h 2002-11-22 19:12:05.000000000 -0600 +++ new/src/sim/common/sim-types.h 2005-04-20 09:52:45.000000000 -0500 @@ -112,11 +112,11 @@ typedef struct { signed64 a[2]; } signed typedef signed char signed8; typedef signed short signed16; #if defined (__ALPHA__) -typedef signed int unsigned32; -typedef signed long unsigned64; +typedef signed int signed32; +typedef signed long signed64; #else -typedef signed long unsigned32; -typedef signed long long unsigned64; +typedef signed long signed32; +typedef signed long long signed64; #endif typedef unsigned char unsigned8; B.t.w. this whole bit of code looks highly suspicious (but that's not your fault Manjo). It looks as if this implies the alpha is still the only 64-bit architecture around. Mark