mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
These files were on my "ignore-on-commit" list.
svn path=/branches/shell-experiments/; revision=63434
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user