diff options
author | Tom Tromey <tromey@redhat.com> | 2014-01-18 19:42:15 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-12 09:59:20 -0700 |
commit | a7191e8bd7f4188d608764389d5a73fcf4b0e8da (patch) | |
tree | 63564515ee08df78bb81f9e72d2853099396f941 /gdb/gdbserver/remote-utils.c | |
parent | ff0e980e6f720fe49608a5a0a37be3a28258c9d7 (diff) | |
download | gdb-a7191e8bd7f4188d608764389d5a73fcf4b0e8da.zip gdb-a7191e8bd7f4188d608764389d5a73fcf4b0e8da.tar.gz gdb-a7191e8bd7f4188d608764389d5a73fcf4b0e8da.tar.bz2 |
replace convert_ascii_to_int with hex2bin
convert_ascii_to_int is identical to hex2bin.
This removes the former.
2014-02-12 Tom Tromey <tromey@redhat.com>
* common/rsp-low.c (convert_ascii_to_int): Remove.
* common/rsp-low.h (convert_ascii_to_int): Don't declare.
2014-02-12 Tom Tromey <tromey@redhat.com>
* ax.c (gdb_parse_agent_expr): Use hex2bin, not
convert_ascii_to_int.
* regcache.c (registers_to_string): Likewise.
* remote-utils.c (decode_M_packet): Likewise.
* server.c (process_serial_event): Likewise.
Diffstat (limited to 'gdb/gdbserver/remote-utils.c')
-rw-r--r-- | gdb/gdbserver/remote-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/remote-utils.c b/gdb/gdbserver/remote-utils.c index 3b3f183..4fcafa0 100644 --- a/gdb/gdbserver/remote-utils.c +++ b/gdb/gdbserver/remote-utils.c @@ -1270,7 +1270,7 @@ decode_M_packet (char *from, CORE_ADDR *mem_addr_ptr, unsigned int *len_ptr, if (*to_p == NULL) *to_p = xmalloc (*len_ptr); - convert_ascii_to_int (&from[i++], *to_p, *len_ptr); + hex2bin (&from[i++], *to_p, *len_ptr); } int |