mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[PSDK/XDK/CRT]
- Fix ARM build of libwine. Patch by Yuntian Zhang. CORE-8672 #resolve - Don't include non-existant ARM intrinsic headers svn path=/trunk/; revision=67149
This commit is contained in:
@@ -16,8 +16,8 @@
|
||||
#endif /* _M_IX86 */
|
||||
|
||||
#if defined(_M_ARM)
|
||||
#include <arm_neon.h>
|
||||
#include <armintr.h>
|
||||
//#include <arm_neon.h>
|
||||
//#include <armintr.h>
|
||||
#endif /* _M_ARM */
|
||||
|
||||
#if defined(__cplusplus)
|
||||
|
||||
@@ -5934,7 +5934,11 @@ FORCEINLINE struct _TEB * NtCurrentTeb(void)
|
||||
}
|
||||
FORCEINLINE PVOID GetCurrentFiber(VOID)
|
||||
{
|
||||
#ifdef NONAMELESSUNION
|
||||
return ((PNT_TIB )(ULONG_PTR)_MoveFromCoprocessor(CP15_TPIDRURW))->DUMMYUNIONNAME.FiberData;
|
||||
#else
|
||||
return ((PNT_TIB )(ULONG_PTR)_MoveFromCoprocessor(CP15_TPIDRURW))->FiberData;
|
||||
#endif
|
||||
}
|
||||
#elif defined(_M_PPC)
|
||||
FORCEINLINE unsigned long _read_teb_dword(const unsigned long Offset)
|
||||
|
||||
@@ -4577,7 +4577,11 @@ FORCEINLINE struct _TEB * NtCurrentTeb(void)
|
||||
}
|
||||
FORCEINLINE PVOID GetCurrentFiber(VOID)
|
||||
{
|
||||
#ifdef NONAMELESSUNION
|
||||
return ((PNT_TIB )(ULONG_PTR)_MoveFromCoprocessor(CP15_TPIDRURW))->DUMMYUNIONNAME.FiberData;
|
||||
#else
|
||||
return ((PNT_TIB )(ULONG_PTR)_MoveFromCoprocessor(CP15_TPIDRURW))->FiberData;
|
||||
#endif
|
||||
}
|
||||
#elif defined(_M_PPC)
|
||||
FORCEINLINE unsigned long _read_teb_dword(const unsigned long Offset)
|
||||
|
||||
Reference in New Issue
Block a user