mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-02-02 13:41:10 +00:00
target/arm: Align vector registers
Backports commit 8b3495ea195503922c1e00253495cb6887b99dd5 from qemu
This commit is contained in:
parent
7f55d6ed69
commit
f30abaea66
|
@ -496,7 +496,7 @@ typedef struct CPUARMState {
|
||||||
* the two execution states, and means we do not need to explicitly
|
* the two execution states, and means we do not need to explicitly
|
||||||
* map these registers when changing states.
|
* map these registers when changing states.
|
||||||
*/
|
*/
|
||||||
uint64_t regs[64];
|
uint64_t QEMU_ALIGNED(16, regs[64]);
|
||||||
|
|
||||||
uint32_t xregs[16];
|
uint32_t xregs[16];
|
||||||
/* We store these fpcsr fields separately for convenience. */
|
/* We store these fpcsr fields separately for convenience. */
|
||||||
|
|
Loading…
Reference in a new issue