From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26898 invoked by alias); 4 Dec 2001 03:30:22 -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 26829 invoked from network); 4 Dec 2001 03:30:13 -0000 Received: from unknown (HELO zwingli.cygnus.com) (208.245.165.35) by sources.redhat.com with SMTP; 4 Dec 2001 03:30:13 -0000 Received: by zwingli.cygnus.com (Postfix, from userid 442) id B7A2F5E9D8; Mon, 3 Dec 2001 22:31:30 -0500 (EST) To: Jackie Smith Cashion Cc: GDB Patches Subject: Re: RFA: d10v sizeof (long long) References: <3C0C1A14.58B9D2E9@redhat.com> From: Jim Blandy Date: Mon, 03 Dec 2001 19:30:00 -0000 In-Reply-To: Jackie Smith Cashion's message of Mon, 03 Dec 2001 18:34:28 -0600 Message-ID: X-Mailer: Gnus v5.3/Emacs 19.34 X-SW-Source: 2001-12/txt/msg00074.txt.bz2 Approved. Jackie Smith Cashion writes: > > The following patch changes the size of the d10v long long from 4 to 8 > to agree with the d10v gcc. > > > 2001-12-03 Jackie Smith Cashion > > * d10v-tdep.c (d10v_gdbarch_init): Change size of long long to 8 bytes. > > > *** d10v-tdep.c.orig Mon Dec 3 18:26:23 2001 > --- d10v-tdep.c Mon Dec 3 18:26:29 2001 > *************** d10v_gdbarch_init (struct gdbarch_info i > *** 1524,1530 **** > set_gdbarch_short_bit (gdbarch, 2 * TARGET_CHAR_BIT); > set_gdbarch_int_bit (gdbarch, 2 * TARGET_CHAR_BIT); > set_gdbarch_long_bit (gdbarch, 4 * TARGET_CHAR_BIT); > ! set_gdbarch_long_long_bit (gdbarch, 4 * TARGET_CHAR_BIT); > /* NOTE: The d10v as a 32 bit ``float'' and ``double''. ``long > double'' is 64 bits. */ > set_gdbarch_float_bit (gdbarch, 4 * TARGET_CHAR_BIT); > --- 1524,1530 ---- > set_gdbarch_short_bit (gdbarch, 2 * TARGET_CHAR_BIT); > set_gdbarch_int_bit (gdbarch, 2 * TARGET_CHAR_BIT); > set_gdbarch_long_bit (gdbarch, 4 * TARGET_CHAR_BIT); > ! set_gdbarch_long_long_bit (gdbarch, 8 * TARGET_CHAR_BIT); > /* NOTE: The d10v as a 32 bit ``float'' and ``double''. ``long > double'' is 64 bits. */ > set_gdbarch_float_bit (gdbarch, 4 * TARGET_CHAR_BIT); >