linux-user/i386: Use explicit little-endian LD/ST API
The x86 architecture uses little endianness. Directly use the little-endian LD/ST API. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20241003234211.53644-4-philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
186f19cf46
commit
eed4e3d4c6
@ -754,8 +754,8 @@ static bool restore_sigcontext(CPUX86State *env, struct target_sigcontext *sc)
|
||||
env->eip = tswapl(sc->rip);
|
||||
#endif
|
||||
|
||||
cpu_x86_load_seg(env, R_CS, lduw_p(&sc->cs) | 3);
|
||||
cpu_x86_load_seg(env, R_SS, lduw_p(&sc->ss) | 3);
|
||||
cpu_x86_load_seg(env, R_CS, lduw_le_p(&sc->cs) | 3);
|
||||
cpu_x86_load_seg(env, R_SS, lduw_le_p(&sc->ss) | 3);
|
||||
|
||||
tmpflags = tswapl(sc->eflags);
|
||||
env->eflags = (env->eflags & ~0x40DD5) | (tmpflags & 0x40DD5);
|
||||
|
Loading…
Reference in New Issue
Block a user