From d8a735330883faa2670ccf70880f04b3c29683ed Mon Sep 17 00:00:00 2001 From: Luis Machado Date: Wed, 4 May 2022 15:07:42 +0100 Subject: [PATCH] Fix build failure for aarch64 gdbserver We're missing an argument. --- gdbserver/linux-aarch64-low.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdbserver/linux-aarch64-low.cc b/gdbserver/linux-aarch64-low.cc index d1e7acb7b4a..ba0a810e0f9 100644 --- a/gdbserver/linux-aarch64-low.cc +++ b/gdbserver/linux-aarch64-low.cc @@ -193,7 +193,7 @@ is_64bit_tdesc (void) { /* We may not have a current thread at this point, so go straight to the process's target description. */ - return register_size (current_process ()->tdesc) == 8; + return register_size (current_process ()->tdesc, 0) == 8; } static void -- 2.30.2