mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:22:59 +00:00
Fix KeSaveFloatingPointState. It was working once upon a time, but the fix was lost on some refactoring. I was told to blame it on Arch.
svn path=/trunk/; revision=63390
This commit is contained in:
parent
aede864303
commit
c71be46956
1 changed files with 2 additions and 1 deletions
|
@ -1432,7 +1432,8 @@ KeSaveFloatingPointState(OUT PKFLOATING_SAVE Save)
|
||||||
#else
|
#else
|
||||||
__asm
|
__asm
|
||||||
{
|
{
|
||||||
fnsave [FpState]
|
mov eax, [FpState]
|
||||||
|
fnsave [eax]
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue