mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2026-08-27 00:26:02 -04:00
gdb: Fix build for aarch64-windows
When reload_context was removed from windows_thread_info, it
was missed at one point in aarch64-windows-nat.c:
../../gdb/aarch64-windows-nat.c:260:20: error: no member named 'reload_context' in 'windows_nat::windows_thread_info'
260 | gdb_assert (!th->reload_context);
| ~~ ^
This removes it.
Approved-By: Tom Tromey <tom@tromey.com>
This commit is contained in:
parent
a1523d5159
commit
842e7d4c4c
1 changed files with 0 additions and 1 deletions
|
|
@ -262,7 +262,6 @@ aarch64_windows_nat_target::fetch_one_register (struct regcache *regcache,
|
|||
windows_thread_info *th, int r)
|
||||
{
|
||||
gdb_assert (r >= 0);
|
||||
gdb_assert (!th->reload_context);
|
||||
|
||||
char *context_ptr = (char *) &th->context;
|
||||
char *context_offset = context_ptr + aarch64_windows_process.mappings[r];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue