SSE2: Add macro for force inline
This commit is contained in:
parent
7929f78dd7
commit
0420fea931
1 changed files with 13 additions and 0 deletions
|
@ -329,6 +329,19 @@ typedef unsigned int uint; // at least 32bits (depend of processor)
|
|||
#endif // NL_OS_UNIX
|
||||
|
||||
|
||||
// #ifdef NL_ENABLE_FORCE_INLINE
|
||||
# ifdef NL_COMP_VC
|
||||
# define NL_FORCE_INLINE __forceinline
|
||||
# elif NL_COMP_GCC
|
||||
# define NL_FORCE_INLINE inline __attribute__((always_inline))
|
||||
# else
|
||||
# define NL_FORCE_INLINE inline
|
||||
# endif
|
||||
// #else
|
||||
// # define NL_FORCE_INLINE inline
|
||||
// #endif
|
||||
|
||||
|
||||
#ifdef NL_COMP_VC
|
||||
#define NL_ALIGN(nb) __declspec(align(nb))
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue