diff options
author | Tom Tromey <tom@tromey.com> | 2019-09-24 17:36:07 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-09-25 09:37:56 -0600 |
commit | 858f25f0dd3c7013e4c87b95fa8edac223d26156 (patch) | |
tree | df6f8df78087efc82bda224864035a94ab03a5f8 /gdb/utils.h | |
parent | 9a24a2763daa773328a788988048a7b3f344a548 (diff) | |
download | gdb-858f25f0dd3c7013e4c87b95fa8edac223d26156.zip gdb-858f25f0dd3c7013e4c87b95fa8edac223d26156.tar.gz gdb-858f25f0dd3c7013e4c87b95fa8edac223d26156.tar.bz2 |
Remove make_hex_string
I noticed that make_hex_string does essentially the same thing as
bin2hex, and furthermore is only called in a single spot. This patch
removes make_hex_string.
Tested by the builtbot.
gdb/ChangeLog
2019-09-25 Tom Tromey <tom@tromey.com>
* python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
* utils.h (make_hex_string): Don't declare.
* utils.c (make_hex_string): Remove.
Diffstat (limited to 'gdb/utils.h')
-rw-r--r-- | gdb/utils.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/utils.h b/gdb/utils.h index 7cdc73e..b0b5573 100644 --- a/gdb/utils.h +++ b/gdb/utils.h @@ -540,11 +540,6 @@ extern void warn_cant_dump_core (const char *reason); extern void dump_core (void); -/* Return the hex string form of LENGTH bytes of DATA. - Space for the result is malloc'd, caller must free. */ - -extern char *make_hex_string (const gdb_byte *data, size_t length); - /* Copy NBITS bits from SOURCE to DEST starting at the given bit offsets. Use the bit order as specified by BITS_BIG_ENDIAN. Source and destination buffers must not overlap. */ |