From c81c6f23b9547b5d55ae68fd5a3bbd8a78290b6b Mon Sep 17 00:00:00 2001 From: Devin Matthews Date: Wed, 20 Jun 2018 15:20:44 -0500 Subject: [PATCH] Fix problem with inc and dec macros. --- frame/include/bli_x86_asm_macros.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frame/include/bli_x86_asm_macros.h b/frame/include/bli_x86_asm_macros.h index 74495b706..5379b87bd 100644 --- a/frame/include/bli_x86_asm_macros.h +++ b/frame/include/bli_x86_asm_macros.h @@ -647,8 +647,8 @@ #define SAR(...) INSTR_(sar, __VA_ARGS__) #define SHLX(_0, _1, _2) INSTR_(shlx, _0, _1, _2) #define SHRX(_0, _1, _2) INSTR_(shrx, _0, _1, _2) -#define DEC(_0) INSTR_(dec _0) -#define INC(_0) INSTR_(inc _0) +#define DEC(_0) INSTR_(dec, _0) +#define INC(_0) INSTR_(inc, _0) #define and(_0, _1) AND(_0, _1) #define or(_0, _1) OR(_0, _1)