mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
* defs.h (plongest,pulongest): Renamed from paddr_u,paddr_d.
Change argument of pulongest from CORE_ADDR to ULONGEST. All callers updated. * utils.c (plongest): Renamed from paddr_d. (pulongest): Renamed from paddr_u, change arg type to ULONGEST. * remote-mips.c (send_srec): Use paddr_nz instead of paddr_u in `CORE_ADDR addr' arg of error message.
This commit is contained in:
10
gdb/defs.h
10
gdb/defs.h
@@ -489,17 +489,19 @@ extern void gdb_print_host_address (const void *addr, struct ui_file *stream);
|
||||
extern const char *host_address_to_string (const void *addr);
|
||||
|
||||
/* Convert a CORE_ADDR into a HEX string. paddr() is like %08lx.
|
||||
paddr_nz() is like %lx. paddr_u() is like %lu. paddr_width() is
|
||||
for ``%*''. */
|
||||
paddr_nz() is like %lx. */
|
||||
extern int strlen_paddr (void);
|
||||
extern char *paddr (CORE_ADDR addr);
|
||||
extern char *paddr_nz (CORE_ADDR addr);
|
||||
extern char *paddr_u (CORE_ADDR addr);
|
||||
extern char *paddr_d (LONGEST addr);
|
||||
|
||||
/* Like 0x%lx. */
|
||||
extern const char *paddress (CORE_ADDR addr);
|
||||
|
||||
/* %d for LONGEST */
|
||||
extern char *plongest (LONGEST l);
|
||||
/* %u for ULONGEST */
|
||||
extern char *pulongest (ULONGEST l);
|
||||
|
||||
extern char *phex (ULONGEST l, int sizeof_l);
|
||||
extern char *phex_nz (ULONGEST l, int sizeof_l);
|
||||
extern char *int_string (LONGEST, int, int, int, int);
|
||||
|
||||
Reference in New Issue
Block a user