mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-21 10:51:10 +00:00
Do not include this function unless !defined(__SSE__)
This commit is contained in:
parent
4d4851e179
commit
4c5a0ff662
1 changed files with 1 additions and 1 deletions
2
hash.c
2
hash.c
|
@ -349,7 +349,7 @@ static GMQCC_FORCEINLINE uint32_t hash_sse(const void *GMQCC_RESTRICT key, size_
|
|||
}
|
||||
#endif
|
||||
|
||||
#if defined (__GNUC__) && defined(__i386__)
|
||||
#if defined (__GNUC__) && defined(__i386__) && !defined(__SSE__)
|
||||
/*
|
||||
* Emulate MSVC _cpuid intrinsic for GCC/MinGW/Clang, this will be used
|
||||
* to determine if we should use the SSE route.
|
||||
|
|
Loading…
Reference in a new issue