aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-12-31 12:02:26 -0500
committerJack Lloyd <[email protected]>2018-12-31 12:02:26 -0500
commit3f1ed406b1f54326891663008139b0889662225e (patch)
treeaa632d8bedcddeeca1194e381aa806af7e352052 /src/lib
parent0218d580ca79cff22c6964007d18be3751c85bc8 (diff)
Fix use of macro
Assumed to be 0/1
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/math/mp/mp_madd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/mp/mp_madd.h b/src/lib/math/mp/mp_madd.h
index 43c769c7c..630b75488 100644
--- a/src/lib/math/mp/mp_madd.h
+++ b/src/lib/math/mp/mp_madd.h
@@ -38,7 +38,7 @@ namespace Botan {
#define BOTAN_MP_USE_X86_32_MSVC_ASM
#endif
-#elif defined(BOTAN_TARGET_ARCH_IS_X86_64) && (BOTAN_MP_WORD_BITS == 64) && (BOTAN_USE_GCC_INLINE_ASM)
+#elif defined(BOTAN_TARGET_ARCH_IS_X86_64) && (BOTAN_MP_WORD_BITS == 64) && defined(BOTAN_USE_GCC_INLINE_ASM)
#define BOTAN_MP_USE_X86_64_ASM
#endif