define debug vector print functions to NULL in non-debug mode

This commit is contained in:
Konstantinos Margaritis 2020-12-03 19:27:05 +02:00
parent 17ab42d891
commit 259c2572c1

View File

@ -80,6 +80,11 @@ static inline void print_m128_2x64(char *label, m128 vector) {
printf("%016lx ", data[i]);
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
#endif
/****