projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
716e547
)
Fix build failure for aarch64 gdbserver
author
Luis Machado
<luis.machado@arm.com>
Wed, 4 May 2022 14:07:42 +0000
(15:07 +0100)
committer
Luis Machado
<luis.machado@arm.com>
Wed, 4 May 2022 14:36:47 +0000
(15:36 +0100)
We're missing an argument.
gdbserver/linux-aarch64-low.cc
patch
|
blob
|
history
diff --git
a/gdbserver/linux-aarch64-low.cc
b/gdbserver/linux-aarch64-low.cc
index d1e7acb7b4a5cef16f0aba501d5d2713c02962b1..ba0a810e0f9021f267447e4f509d0a2073d687cb 100644
(file)
--- 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