diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-29 17:58:26 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-30 02:29:57 -0400 |
commit | 16145e2f21d7f7208c95d164a0fe2b1a5d8c20d6 (patch) | |
tree | c22765539200de9bbc95a3a60f4b3b158311c96e /src/core/gdbstub/gdbstub.cpp | |
parent | 334090fe6f9fb7554e9b247bc3e4c6d4ece7dea8 (diff) |
arm_interface: Add missing fpsr/tpidr members to the ThreadContext struct
Internally within the kernel, it also includes a member variable for the
floating-point status register, and TPIDR, so we should do the same here to match
it.
While we're at it, also fix up the size of the struct and add a static
assertion to ensure it always stays the correct size.
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
-rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index d8c7b34922..ae88440c20 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp @@ -250,7 +250,7 @@ static void RegWrite(std::size_t id, u64 val, Kernel::Thread* thread = nullptr) } else if (id == PC_REGISTER) { thread->context.pc = val; } else if (id == PSTATE_REGISTER) { - thread->context.pstate = val; + thread->context.pstate = static_cast<u32>(val); } else if (id > PSTATE_REGISTER && id < FPCR_REGISTER) { thread->context.vector_registers[id - (PSTATE_REGISTER + 1)][0] = val; } |