gdb/
[deliverable/binutils-gdb.git] / gdb / windows-tdep.c
index 1305fc8307550e5de778de1019aa73b544f2ae91..9f9d6361fc916e8adbd6ae59607e4533e7baa111 100644 (file)
 #include "xml-support.h"
 
 void
-win32_xfer_shared_library (const char* so_name, CORE_ADDR load_addr,
-                          struct obstack *obstack)
+windows_xfer_shared_library (const char* so_name, CORE_ADDR load_addr,
+                            struct gdbarch *gdbarch, struct obstack *obstack)
 {
   char *p;
   obstack_grow_str (obstack, "<library name=\"");
   p = xml_escape_text (so_name);
   obstack_grow_str (obstack, p);
   xfree (p);
-  obstack_grow_str (obstack, "\"><segment address=\"0x");
+  obstack_grow_str (obstack, "\"><segment address=\"");
   /* The symbols in a dll are offset by 0x1000, which is the the
      offset from 0 of the first byte in an image - because of the file
      header and the section alignment. */
-  p = paddr_nz (load_addr + 0x1000);
-  obstack_grow_str (obstack, p);
+  obstack_grow_str (obstack, paddress (gdbarch, load_addr + 0x1000));
   obstack_grow_str (obstack, "\"/></library>");
 }
-
-
This page took 0.039605 seconds and 4 git commands to generate.