mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
linux-user: fix microblaze get_sp_from_cpustate()
get_sigframe() uses regs[1] and this is actual SP. Signed-off-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20180409115212.875-1-laurent@vivier.eu>
This commit is contained in:
parent
df6378eb0e
commit
a31e7605dd
@ -23,7 +23,7 @@ typedef struct target_sigaltstack {
|
||||
|
||||
static inline abi_ulong get_sp_from_cpustate(CPUMBState *state)
|
||||
{
|
||||
return state->regs[14];
|
||||
return state->regs[1];
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user