mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Fixed build with gcc-8
This commit is contained in:
parent
315b6f3878
commit
efe3d53894
@ -166,7 +166,7 @@ inline bool memequal16(const void * a, const void * b)
|
|||||||
/** Compare memory region to zero */
|
/** Compare memory region to zero */
|
||||||
inline bool memoryIsZeroSmallAllowOverflow15(const void * data, size_t size)
|
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)
|
for (size_t offset = 0; offset < size; offset += 16)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user