mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
{CRT]
- Treat ARM like x64 in excpt.h - Give Clang the right __CRT_INLINE definition svn path=/trunk/; revision=63521
This commit is contained in:
parent
a5cffd2542
commit
629a0fd9c0
2 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@
|
|||
#elif defined(_MSC_VER)
|
||||
# define __CRT_INLINE __inline
|
||||
#elif defined(__GNUC__)
|
||||
# if ( __MINGW_GNUC_PREREQ(4, 3) && __STDC_VERSION__ >= 199901L)
|
||||
# if defined(__clang__) || ( __MINGW_GNUC_PREREQ(4, 3) && __STDC_VERSION__ >= 199901L)
|
||||
# define __CRT_INLINE extern inline __attribute__((__always_inline__,__gnu_inline__))
|
||||
# else
|
||||
# define __CRT_INLINE extern __inline__ __attribute__((__always_inline__))
|
||||
|
|
|
@ -53,7 +53,7 @@ typedef enum _EXCEPTION_DISPOSITION
|
|||
_Inout_ struct _DISPATCHER_CONTEXT *_DispatcherContext,
|
||||
_In_ unsigned __int64 _GlobalPointer);
|
||||
|
||||
#elif defined(__x86_64)
|
||||
#elif defined(__x86_64) || defined(_M_ARM)
|
||||
|
||||
struct _EXCEPTION_RECORD;
|
||||
struct _CONTEXT;
|
||||
|
|
Loading…
Reference in a new issue