]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
fix compilation on C++
authorKonstantinos Margaritis <markos@freevec.org>
Mon, 7 Jun 2021 07:04:57 +0000 (10:04 +0300)
committerKonstantinos Margaritis <konstantinos@vectorcamp.gr>
Tue, 12 Oct 2021 08:51:34 +0000 (11:51 +0300)
src/util/arch/common/simd_utils.h

index d8499ea2e57d9bf1ce47bc5ad1eae3daa2d09264..8a3b52cf7a94dd51bfd1cf362a2e8ea64fe39d7d 100644 (file)
@@ -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
 
 /****