[lldb] Fix arm breakages from D130985
The kernel was rejecting sizeof(struct GPR) as it was not a multiple of 8. Add a padding field to fix that. One also wonders whether "cpsr" is right register name for aarch64.
This commit is contained in:
parent
df48e3fbcc
commit
b8985ba0ad
|
@ -47,6 +47,7 @@ public:
|
|||
uint64_t sp; // x31
|
||||
uint64_t pc; // pc
|
||||
uint32_t cpsr; // cpsr
|
||||
uint32_t pad;
|
||||
};
|
||||
LLVM_PACKED_END
|
||||
|
||||
|
|
Loading…
Reference in New Issue