diff options
author | Luis Machado <luis.machado@arm.com> | 2023-04-25 09:22:09 +0100 |
---|---|---|
committer | Luis Machado <luis.machado@arm.com> | 2023-04-26 07:00:18 +0100 |
commit | 19e012c813f00e047355e8b45b2c8c85825d37e0 (patch) | |
tree | 7ad3526ef599214cff1e41a9a24cbf0fb87815c1 | |
parent | dc449cb963879edebc9b6c8bdcadb33f60448a5c (diff) | |
download | gdb-19e012c813f00e047355e8b45b2c8c85825d37e0.zip gdb-19e012c813f00e047355e8b45b2c8c85825d37e0.tar.gz gdb-19e012c813f00e047355e8b45b2c8c85825d37e0.tar.bz2 |
Updated debug architecture version checks for fbsd
There are two new debug architecture version entries. I updated the
code for Linux, but fbsd also needs updating.
This patch does this, and should be pretty straightforward.
I can't test this on native fbsd, but I'm fairly confident it should
work.
Signed-off-by: Luis Machado <luis.machado@arm.com>
-rw-r--r-- | gdb/aarch64-fbsd-nat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/aarch64-fbsd-nat.c b/gdb/aarch64-fbsd-nat.c index 9dbbaf9..709f516 100644 --- a/gdb/aarch64-fbsd-nat.c +++ b/gdb/aarch64-fbsd-nat.c @@ -215,6 +215,8 @@ aarch64_fbsd_nat_target::probe_debug_regs (int pid) case AARCH64_DEBUG_ARCH_V8_1: case AARCH64_DEBUG_ARCH_V8_2: case AARCH64_DEBUG_ARCH_V8_4: + case AARCH64_DEBUG_ARCH_V8_8: + case AARCH64_DEBUG_ARCH_V8_9: break; default: return; |