diff options
Diffstat (limited to 'gdbserver/linux-ia64-low.cc')
-rw-r--r-- | gdbserver/linux-ia64-low.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdbserver/linux-ia64-low.cc b/gdbserver/linux-ia64-low.cc index 169a567..bccab15 100644 --- a/gdbserver/linux-ia64-low.cc +++ b/gdbserver/linux-ia64-low.cc @@ -29,6 +29,9 @@ class ia64_target : public linux_process_target { public: +protected: + + void low_arch_setup () override; }; /* The singleton target ops object. */ @@ -350,15 +353,14 @@ ia64_regs_info (void) return ®s_info; } -static void -ia64_arch_setup (void) +void +ia64_target::low_arch_setup () { current_process ()->tdesc = tdesc_ia64; } struct linux_target_ops the_low_target = { - ia64_arch_setup, ia64_regs_info, ia64_cannot_fetch_register, ia64_cannot_store_register, |