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 1332ee3fdc
commit fe2fbc4af8

View File

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