aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/ChangeLog
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2014-01-16 21:41:58 -0700
committerTom Tromey <tromey@redhat.com>2014-02-12 09:59:13 -0700
commit01fd3ea573324b8248efbb236d994420641e3d32 (patch)
tree298d7b46c13980609cae1694319cb37395d0fe8e /gdb/gdbserver/ChangeLog
parent9fb5010805bdfe0eb8fc5db01e7f4c93b04c8f29 (diff)
downloadfsf-binutils-gdb-01fd3ea573324b8248efbb236d994420641e3d32.zip
fsf-binutils-gdb-01fd3ea573324b8248efbb236d994420641e3d32.tar.gz
fsf-binutils-gdb-01fd3ea573324b8248efbb236d994420641e3d32.tar.bz2
share "cell" code
The "cell"-based printing code, like phex, was duplicated in both gdb and gdbserver. This patch merges the two implementations into a new file in common/. 2014-02-12 Tom Tromey <tromey@redhat.com> * utils.h: Include print-utils.h. (host_address_to_string, plongest, pulongest, phex, phex_nz) (int_string, core_addr_to_string, core_addr_to_string_nz) (hex_string, hex_string_custom): Don't declare. * utils.c (NUMCELLS, CELLSIZE, get_cell, decimal2str, pulongest) (plongest, thirty_two, phex, phex_nz, octal2str, hex_string) (hex_string_custom, int_string, core_addr_to_string) (core_addr_to_string_nz, host_address_to_string): Move to common/print-utils.c. * common/print-utils.h: New file. * common/print-utils.c: New file * Makefile.in (SFILES): Add common/print-utils.c. (HFILES_NO_SRCDIR): Add common/print-utils.h. (COMMON_OBS): Add print-utils.o. (print-utils.o): New target. 2014-02-12 Tom Tromey <tromey@redhat.com> * utils.h (pulongest, plongest, phex_nz): Don't declare. Include print-utils.h. * utils.c (NUMCELLS, CELLSIZE, get_cell, decimal2str, pulongest) (plongest, thirty_two, phex_nz): Remove. * Makefile.in (SFILES): Add common/print-utils.c. (OBS): Add print-utils.o. (print-utils-ipa.o): New target. (print-utils.o): New target. (IPA_OBJS): Add print-utils-ipa.o.
Diffstat (limited to 'gdb/gdbserver/ChangeLog')
-rw-r--r--gdb/gdbserver/ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index d8fbc1b..9cbd5ee 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -1,3 +1,15 @@
+2014-02-12 Tom Tromey <tromey@redhat.com>
+
+ * utils.h (pulongest, plongest, phex_nz): Don't declare.
+ Include print-utils.h.
+ * utils.c (NUMCELLS, CELLSIZE, get_cell, decimal2str, pulongest)
+ (plongest, thirty_two, phex_nz): Remove.
+ * Makefile.in (SFILES): Add common/print-utils.c.
+ (OBS): Add print-utils.o.
+ (print-utils-ipa.o): New target.
+ (print-utils.o): New target.
+ (IPA_OBJS): Add print-utils-ipa.o.
+
2014-02-06 Tom Tromey <tromey@redhat.com>
* Makefile.in (SFILES): Fix indentation.