OSDN Git Service

* maint.c (maint_print_section_info): Rename print_section_info.
authorcagney <cagney>
Wed, 10 Apr 2002 22:00:19 +0000 (22:00 +0000)
committercagney <cagney>
Wed, 10 Apr 2002 22:00:19 +0000 (22:00 +0000)
(print_bfd_section_info, print_objfile_section_info): Update.
* inferior.h (struct gdbarch): Add opaque declaration.
* gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
* gdbarch.h: Regenerate.

gdb/ChangeLog
gdb/gdbarch.h
gdb/gdbarch.sh
gdb/inferior.h
gdb/maint.c

index 7b9252c..a216d7d 100644 (file)
@@ -1,3 +1,11 @@
+2002-04-10  Andrew Cagney  <ac131313@redhat.com>
+
+       * maint.c (maint_print_section_info): Rename print_section_info.
+       (print_bfd_section_info, print_objfile_section_info): Update.
+       * inferior.h (struct gdbarch): Add opaque declaration.
+       * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
+       * gdbarch.h: Regenerate.
+
 2002-04-10  Michal Ludvig  <mludvig@suse.cz>
 
        * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
index f68584d..ada28e3 100644 (file)
@@ -37,7 +37,9 @@
 
 #include "dis-asm.h" /* Get defs for disassemble_info, which unfortunately is a typedef. */
 #if !GDB_MULTI_ARCH
+/* Pull in function declarations refered to, indirectly, via macros.  */
 #include "value.h" /* For default_coerce_float_to_double which is referenced by a macro.  */
+#include "inferior.h"          /* For unsigned_address_to_pointer().  */
 #endif
 
 struct frame_info;
index 645ca23..30641d6 100755 (executable)
@@ -726,7 +726,9 @@ cat <<EOF
 
 #include "dis-asm.h" /* Get defs for disassemble_info, which unfortunately is a typedef. */
 #if !GDB_MULTI_ARCH
+/* Pull in function declarations refered to, indirectly, via macros.  */
 #include "value.h" /* For default_coerce_float_to_double which is referenced by a macro.  */
+#include "inferior.h"          /* For unsigned_address_to_pointer().  */
 #endif
 
 struct frame_info;
index 3a8161c..c0f100d 100644 (file)
@@ -23,6 +23,8 @@
 #if !defined (INFERIOR_H)
 #define INFERIOR_H 1
 
+struct gdbarch;
+
 /* For bpstat.  */
 #include "breakpoint.h"
 
index aaa3c68..ddaa390 100644 (file)
@@ -291,9 +291,9 @@ print_bfd_flags (flagword flags)
 }
 
 static void
-print_section_info (const char *name, flagword flags, 
-                   CORE_ADDR addr, CORE_ADDR endaddr, 
-                   unsigned long filepos)
+maint_print_section_info (const char *name, flagword flags, 
+                         CORE_ADDR addr, CORE_ADDR endaddr, 
+                         unsigned long filepos)
 {
   /* FIXME-32x64: Need print_address_numeric with field width.  */
   printf_filtered ("    0x%s", paddr (addr));
@@ -321,7 +321,7 @@ print_bfd_section_info (bfd *abfd,
 
       addr = bfd_section_vma (abfd, asect);
       endaddr = addr + bfd_section_size (abfd, asect);
-      print_section_info (name, flags, addr, endaddr, asect->filepos);
+      maint_print_section_info (name, flags, addr, endaddr, asect->filepos);
     }
 }
 
@@ -337,7 +337,7 @@ print_objfile_section_info (bfd *abfd,
       || match_substring (string, name)
       || match_bfd_flags (string, flags))
     {
-      print_section_info (name, flags, asect->addr, asect->endaddr, 
+      maint_print_section_info (name, flags, asect->addr, asect->endaddr, 
                          asect->the_bfd_section->filepos);
     }
 }