Fixed build with gcc-8

This commit is contained in:
Alexey Milovidov 2019-03-04 00:05:55 +03:00
parent 315b6f3878
commit efe3d53894

View File

@ -166,7 +166,7 @@ inline bool memequal16(const void * a, const void * b)
/** Compare memory region to zero */
inline bool memoryIsZeroSmallAllowOverflow15(const void * data, size_t size)
{
const __m128 zero16 = _mm_setzero_ps();
__m128 zero16 = _mm_setzero_ps();
for (size_t offset = 0; offset < size; offset += 16)
{