mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
These files were on my "ignore-on-commit" list.
svn path=/branches/shell-experiments/; revision=63434
This commit is contained in:
parent
d5e23caf7a
commit
340c4e472a
2 changed files with 7 additions and 2 deletions
|
@ -63,6 +63,9 @@ if(NOT CMAKE_CROSSCOMPILING)
|
|||
if(ARCH STREQUAL "i386")
|
||||
add_definitions(/D_X86_ /DWIN32 /D_WINDOWS)
|
||||
endif()
|
||||
if(MSVC_VERSION GREATER 1699)
|
||||
add_definitions(/D_ALLOW_KEYWORD_MACROS)
|
||||
endif()
|
||||
add_definitions(/Dinline=__inline)
|
||||
else()
|
||||
add_compile_flags("-fshort-wchar -Wno-multichar")
|
||||
|
|
|
@ -1432,7 +1432,8 @@ KeSaveFloatingPointState(OUT PKFLOATING_SAVE Save)
|
|||
#else
|
||||
__asm
|
||||
{
|
||||
fnsave [FpState]
|
||||
mov eax, [FpState]
|
||||
fnsave [eax]
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -1458,7 +1459,8 @@ KeRestoreFloatingPointState(IN PKFLOATING_SAVE Save)
|
|||
__asm
|
||||
{
|
||||
fnclex
|
||||
frstor [FpState]
|
||||
mov eax, [FpState]
|
||||
frstor [eax]
|
||||
};
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue