diff options
author | Andrew Burgess <aburgess@redhat.com> | 2024-04-02 13:42:37 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2024-05-07 16:04:20 +0100 |
commit | 3f1438a5b2ef4a6b2bd3cc0600033362c43de7b3 (patch) | |
tree | a4304cbabb1854d0cc9def785a2a9769cd57b481 /gdbserver | |
parent | 810203888dab0dc737a681c872dab4664eae0db9 (diff) | |
download | gdb-3f1438a5b2ef4a6b2bd3cc0600033362c43de7b3.zip gdb-3f1438a5b2ef4a6b2bd3cc0600033362c43de7b3.tar.gz gdb-3f1438a5b2ef4a6b2bd3cc0600033362c43de7b3.tar.bz2 |
gdbserver/ipa/x86: remove unneeded declarations
Spotted some declarations in gdbserver/linux-amd64-ipa.cc that are no
longer needed. These are:
1. 'init_registers_amd64_linux' - the comment claims this function
is auto generated, but I don't believe that this is still the case.
Also the function is not used in this file,
2. 'tdesc_amd64_linux' - this variable doesn't seem to exist any
more, I suspect this was renamed to 'tdesc_amd64_linux_no_xml', but
neither are used in this file, so lets remove the declaration.
The amd64 in-process-agent still builds fine after this commit.
There should be no user visible changes after this commit.
Approved-By: Felix Willgerodt <felix.willgerodt@intel.com>
Diffstat (limited to 'gdbserver')
-rw-r--r-- | gdbserver/linux-amd64-ipa.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdbserver/linux-amd64-ipa.cc b/gdbserver/linux-amd64-ipa.cc index 13c8a5b..a634675 100644 --- a/gdbserver/linux-amd64-ipa.cc +++ b/gdbserver/linux-amd64-ipa.cc @@ -23,10 +23,6 @@ #include "linux-x86-tdesc.h" #include "gdbsupport/x86-xstate.h" -/* Defined in auto-generated file amd64-linux.c. */ -void init_registers_amd64_linux (void); -extern const struct target_desc *tdesc_amd64_linux; - /* fast tracepoints collect registers. */ #define FT_CR_RIP 0 |