From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11741 invoked by alias); 10 Sep 2003 07:35:13 -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 11733 invoked from network); 10 Sep 2003 07:35:13 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 10 Sep 2003 07:35:13 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id h8A7ZCl12170 for ; Wed, 10 Sep 2003 03:35:12 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h8A7ZBe05115 for ; Wed, 10 Sep 2003 03:35:11 -0400 Received: from localhost.localdomain (vpn50-21.rdu.redhat.com [172.16.50.21]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id h8A7ZAba029471 for ; Wed, 10 Sep 2003 03:35:10 -0400 Received: (from kev@localhost) by localhost.localdomain (8.11.6/8.11.6) id h8A7Z5e12997 for gdb-patches@sources.redhat.com; Wed, 10 Sep 2003 00:35:05 -0700 Date: Wed, 10 Sep 2003 07:35:00 -0000 From: Kevin Buettner Message-Id: <1030910073504.ZM12995@localhost.localdomain> To: gdb-patches@sources.redhat.com Subject: [PATCH] FR-V dis-asm.h tweak MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-09/txt/msg00196.txt.bz2 I've just committed the following patch: * frv-tdep.c (dis-asm.h): Include. * Makefile.in (frv-tdep.o): Update dependencies. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.440 diff -u -p -r1.440 Makefile.in --- Makefile.in 9 Sep 2003 04:41:31 -0000 1.440 +++ Makefile.in 10 Sep 2003 07:32:14 -0000 @@ -1770,7 +1770,7 @@ frame-unwind.o: frame-unwind.c $(defs_h) $(gdb_assert_h) $(dummy_frame_h) frv-tdep.o: frv-tdep.c $(defs_h) $(gdb_string_h) $(inferior_h) $(symfile_h) \ $(gdbcore_h) $(arch_utils_h) $(regcache_h) $(frame_h) \ - $(frame_unwind_h) $(frame_base_h) $(trad_frame_h) + $(frame_unwind_h) $(frame_base_h) $(trad_frame_h) $(dis_asm_h) f-typeprint.o: f-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \ $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \ $(f_lang_h) $(gdb_string_h) Index: frv-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/frv-tdep.c,v retrieving revision 1.50 diff -u -p -r1.50 frv-tdep.c --- frv-tdep.c 8 Sep 2003 23:01:28 -0000 1.50 +++ frv-tdep.c 10 Sep 2003 07:32:14 -0000 @@ -29,6 +29,7 @@ #include "frame-unwind.h" #include "frame-base.h" #include "trad-frame.h" +#include "dis-asm.h" extern void _initialize_frv_tdep (void);