fix compilation on C++

This commit is contained in:
Konstantinos Margaritis 2021-06-07 10:04:57 +03:00 committed by Konstantinos Margaritis
parent 273b9683ac
commit d8b5eb5d17

View 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
/****