diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-10-27 19:50:57 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-10-27 19:50:57 +0200 |
commit | 9854a7f9c393c16bf107118f82362bfb14d256ef (patch) | |
tree | 74e9de62744e8513127289fadab0208a7acb613f /x86_64 | |
parent | 60c53f565454a6afd8f0b80d36d791d50653751d (diff) | |
download | gnumach-9854a7f9c393c16bf107118f82362bfb14d256ef.tar.gz gnumach-9854a7f9c393c16bf107118f82362bfb14d256ef.tar.bz2 gnumach-9854a7f9c393c16bf107118f82362bfb14d256ef.zip |
32-on-64: Fix missing es push
Diffstat (limited to 'x86_64')
-rw-r--r-- | x86_64/locore.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x86_64/locore.S b/x86_64/locore.S index 7eaeda3b..3a829a73 100644 --- a/x86_64/locore.S +++ b/x86_64/locore.S @@ -510,7 +510,7 @@ fault_popl_gs: jmp push_segregs /* (GS on top of stack) */ push_es: - //pushq %es /* restore es, */ + pushq %es /* restore es, */ push_fs: pushq %fs /* restore fs, */ push_gs: |