From d8b5eb5d1732dd98c6228a5bc56628f0fe017310 Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Mon, 7 Jun 2021 10:04:57 +0300 Subject: [PATCH] fix compilation on C++ --- src/util/arch/common/simd_utils.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/util/arch/common/simd_utils.h b/src/util/arch/common/simd_utils.h index d8499ea2..8a3b52cf 100644 --- a/src/util/arch/common/simd_utils.h +++ b/src/util/arch/common/simd_utils.h @@ -81,10 +81,10 @@ static inline void print_m128_2x64(const char *label, m128 vector) { printf("\n"); } #else -#define print_m128_16x8(label, vector) NULL -#define print_m128_8x16(label, vector) NULL -#define print_m128_4x32(label, vector) NULL -#define print_m128_2x64(label, vector) NULL +#define print_m128_16x8(label, vector) ; +#define print_m128_8x16(label, vector) ; +#define print_m128_4x32(label, vector) ; +#define print_m128_2x64(label, vector) ; #endif /****