From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18911 invoked by alias); 8 Oct 2003 03:06:19 -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 18904 invoked from network); 8 Oct 2003 03:06:18 -0000 Received: from unknown (HELO mail04.idc.renesas.com) (202.234.163.13) by sources.redhat.com with SMTP; 8 Oct 2003 03:06:18 -0000 Received: from mail04.idc.renesas.com ([127.0.0.1]) by mail04.idc.renesas.com with ESMTP id h9836Fc4018504 for ; Wed, 8 Oct 2003 12:06:15 +0900 (JST) Received: from guardian04.idc.renesas.com ([172.20.8.135]) by mail04.idc.renesas.com with ESMTP id h9836Erd018501 for ; Wed, 8 Oct 2003 12:06:14 +0900 (JST) Received: (from root@localhost) by guardian04.idc.renesas.com with id h9836FKQ015120 for gdb-patches@sources.redhat.com; Wed, 8 Oct 2003 12:06:15 +0900 (JST) Received: from unknown [172.20.8.73] by guardian04.idc.renesas.com with SMTP id NAA15119 ; Wed, 8 Oct 2003 12:06:14 +0900 Received: from mta05.idc.renesas.com (localhost [127.0.0.1]) by mta05.idc.renesas.com with ESMTP id h9836Eqt027023 for ; Wed, 8 Oct 2003 12:06:14 +0900 (JST) Received: from rnsmtp01.hoku_r.renesas.com ([10.145.246.51]) by mta05.idc.renesas.com with ESMTP id h9836Dcn027020 for ; Wed, 8 Oct 2003 12:06:13 +0900 (JST) Received: from mrkaisv.hoku.renesas.com ([10.145.105.245]) by rnsmtp01.hoku_r.renesas.com (8.9.3/3.7W) with ESMTP id MAA10394 for ; Wed, 8 Oct 2003 12:06:13 +0900 (JST) Received: from KEI (unknown [10.145.105.81]) by mrkaisv.hoku.renesas.com (Postfix) with SMTP id 9A077798501 for ; Wed, 8 Oct 2003 12:06:12 +0900 (JST) Message-ID: <018e01c38d49$1dcb2f10$5169910a@KEI> From: "Kei Sakamoto" To: References: <00ae01c38d45$c37c7800$5169910a@KEI> Subject: Re: [commit] Fix missing include "dis-asm.h" in m32r-tdep.c Date: Wed, 08 Oct 2003 03:06:00 -0000 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_018B_01C38D94.8DA4F460" X-Priority: 3 X-MSMail-Priority: Normal X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-SW-Source: 2003-10/txt/msg00197.txt.bz2 This is a multi-part message in MIME format. ------=_NextPart_000_018B_01C38D94.8DA4F460 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit Content-length: 702 Sorry. I forgot to attach the patch file. Kei From: "Kei Sakamoto" To: Sent: Wednesday, October 08, 2003 11:42 AM Subject: [commit] Fix missing include "dis-asm.h" in m32r-tdep.c > Hello, > > On Tuesday, October 07, 2003 5:39 AM, Andrew Cagney wrote: > > This updates the status of various architectures. In the case of the > > m32r, I couldn't get it to build :-( > > It is because m32r-tdep.c does not include "dis-asm.h". > I've committed this as obvious. > > Kei > > === > > 2003-10-08 Kei Sakamoto > > * m32r-tdep.c : Include "dis-asm.h". > * Makefile.in (m32r-tdep.o): Update dependencies. > > ------=_NextPart_000_018B_01C38D94.8DA4F460 Content-Type: application/octet-stream; name="diffs" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="diffs" Content-length: 1575 Index: Makefile.in=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /cvs/src/src/gdb/Makefile.in,v=0A= retrieving revision 1.453=0A= diff -u -r1.453 Makefile.in=0A= --- Makefile.in 6 Oct 2003 22:41:17 -0000 1.453=0A= +++ Makefile.in 8 Oct 2003 02:31:48 -0000=0A= @@ -1965,7 +1965,7 @@=0A= $(frame_base_h) $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) \=0A= $(gdb_string_h) $(value_h) $(inferior_h) $(symfile_h) $(objfiles_h) \=0A= $(language_h) $(arch_utils_h) $(regcache_h) $(trad_frame_h) \=0A= - $(gdb_assert_h)=0A= + $(gdb_assert_h) $(dis_asm_h)=0A= m68hc11-tdep.o: m68hc11-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \=0A= $(frame_base_h) $(dwarf2_frame_h) $(trad_frame_h) $(symtab_h) \=0A= $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) $(gdb_string_h) $(value_h) \=0A= Index: m32r-tdep.c=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /cvs/src/src/gdb/m32r-tdep.c,v=0A= retrieving revision 1.18=0A= diff -u -r1.18 m32r-tdep.c=0A= --- m32r-tdep.c 12 Sep 2003 18:40:17 -0000 1.18=0A= +++ m32r-tdep.c 8 Oct 2003 02:31:48 -0000=0A= @@ -37,6 +37,7 @@=0A= #include "arch-utils.h"=0A= #include "regcache.h"=0A= #include "trad-frame.h"=0A= +#include "dis-asm.h"=0A= =20=0A= #include "gdb_assert.h"=0A= =20=0A= ------=_NextPart_000_018B_01C38D94.8DA4F460--