From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8758 invoked by alias); 25 Jan 2006 17:32:31 -0000 Received: (qmail 8750 invoked by uid 22791); 25 Jan 2006 17:32:31 -0000 X-Spam-Check-By: sourceware.org Received: from voldemort.codesourcery.com (HELO mail.codesourcery.com) (65.74.133.5) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 25 Jan 2006 17:32:29 +0000 Received: (qmail 5051 invoked from network); 25 Jan 2006 17:32:28 -0000 Received: from unknown (HELO ?192.168.0.4?) (mitchell@127.0.0.2) by mail.codesourcery.com with ESMTPA; 25 Jan 2006 17:32:28 -0000 Message-ID: <43D7B622.2040409@codesourcery.com> Date: Wed, 25 Jan 2006 17:32:00 -0000 From: Mark Mitchell User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) MIME-Version: 1.0 To: Mark Kettenis CC: gdb-patches@sources.redhat.com Subject: Re: PATCH: Fix LP64 model bug in PPC simulator References: <200601240555.k0O5tGmu007234@sethra.codesourcery.com> <200601241925.k0OJPwwt002920@elgar.sibelius.xs4all.nl> <43D68566.4090101@codesourcery.com> <20060124210859.GA26974@nevyn.them.org> <43D6BD0F.6030500@codesourcery.com> <5981.192.87.1.22.1138179926.squirrel@webmail.xs4all.nl> In-Reply-To: <5981.192.87.1.22.1138179926.squirrel@webmail.xs4all.nl> Content-Type: multipart/mixed; boundary="------------080401070809060903060500" Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-01/txt/msg00412.txt.bz2 This is a multi-part message in MIME format. --------------080401070809060903060500 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-length: 488 Mark Kettenis wrote: > Sorry that I didn't notice it before but can you change natural32 as well? Sure -- I'm sorry I missed that. I checked in the attached patch after confirming that the simulator still worked on x86_64-unknown-linux-gnu. I interpreted your note as an implicit approval of such a change. I hope that's OK; let me know if that was a breach of protocol, and I'll back the patch out. Thanks, -- Mark Mitchell CodeSourcery mark@codesourcery.com (650) 331-3385 x713 --------------080401070809060903060500 Content-Type: text/plain; name="gdb.sim.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gdb.sim.patch" Content-length: 815 2006-01-25 Mark Mitchell * words.h (natural32): Define as "int". Index: words.h =================================================================== RCS file: /cvs/src/src/sim/ppc/words.h,v retrieving revision 1.3 diff -c -5 -p -r1.3 words.h *** words.h 24 Jan 2006 23:48:01 -0000 1.3 --- words.h 25 Jan 2006 17:27:46 -0000 *************** *** 49,59 **** #endif /* bit based */ typedef char natural8; typedef short natural16; ! typedef long natural32; typedef signed char signed8; typedef signed short signed16; typedef signed int signed32; --- 49,59 ---- #endif /* bit based */ typedef char natural8; typedef short natural16; ! typedef int natural32; typedef signed char signed8; typedef signed short signed16; typedef signed int signed32; --------------080401070809060903060500--