[Lldb-commits] [lldb] [LLDB][Minidump] Extend the minidump x86_64 registers to include fs_base and gs_base (PR #106767)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 30 11:32:27 PDT 2024
================
@@ -67,6 +67,18 @@ def verify_core_file(
self.assertIn(thread_id, stacks_to_registers_map)
register_val_list = stacks_to_registers_map[thread_id]
frame_register_list = frame.GetRegisters()
+ # explicitly verify we collected fs and gs base for x86_64
----------------
clayborg wrote:
Don't we need some logic here to do this only for x86_64 core files? Or is this test somehow x86_64 only? I didn't see anything in the test that made this x86_64 specific
https://github.com/llvm/llvm-project/pull/106767
More information about the lldb-commits
mailing list