Add __SSE3__ macro for MSVC too because why not

even though it's not currently used for anything when AVX is defined
This commit is contained in:
anzz1 2023-03-22 05:47:05 +02:00
parent 67ad7c445c
commit b8a80f9994

3
ggml.c
View file

@ -87,6 +87,9 @@ typedef void* thread_ret_t;
#ifndef __F16C__
#define __F16C__
#endif
#ifndef __SSE3__
#define __SSE3__
#endif
#endif
#ifdef __HAIKU__