bump base requirements to SSE4.2

This commit is contained in:
Konstantinos Margaritis
2021-12-01 23:19:43 +02:00
parent 404a0ab0f4
commit 7d600c4fcb
2 changed files with 8 additions and 8 deletions

View File

@@ -30,7 +30,7 @@
#ifndef SIMD_TYPES_X86_H
#define SIMD_TYPES_X86_H
#if !defined(m128) && defined(HAVE_SSE2)
#if !defined(m128) && defined(HAVE_SSE42)
typedef __m128i m128;
#endif