diff options
author | Pedro Alves <palves@redhat.com> | 2010-05-07 14:00:30 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-05-07 14:00:30 +0000 |
commit | 1408c251017cb8f0ffe27cbc69ffbed385d408da (patch) | |
tree | 054a51ec634a8b0f7832569ece8750538a0ec4fd /gdb/remote.c | |
parent | 6540b386f061cad1d2c14121bff0f0135ea78583 (diff) | |
download | gdb-1408c251017cb8f0ffe27cbc69ffbed385d408da.zip gdb-1408c251017cb8f0ffe27cbc69ffbed385d408da.tar.gz gdb-1408c251017cb8f0ffe27cbc69ffbed385d408da.tar.bz2 |
* gdbarch.sh (qsupported): Delete.
* gdbarch.h, gdbarch.c: Regenerate.
* remote.c (remote_query_supported): Remove use of
gdbarch_qsupported.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 95bbc3f..3da591f 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -3562,13 +3562,9 @@ remote_query_supported (void) if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE) { char *q = NULL; - const char *qsupported = gdbarch_qsupported (target_gdbarch); if (rs->extended) q = remote_query_supported_append (q, "multiprocess+"); - - if (qsupported) - q = remote_query_supported_append (q, qsupported); if (remote_support_xml) q = remote_query_supported_append (q, remote_support_xml); |