From 47b06f3ee377f66d654b2de6e96b2ce4c30996ce Mon Sep 17 00:00:00 2001 From: Mike Hamburg Date: Sun, 28 Sep 2014 19:25:16 -0700 Subject: [PATCH] Spell __clang_minor__ correctly. Also, this and the prev patch should fix SUPERCOP problems --- src/include/word.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/word.h b/src/include/word.h index 5a24892..6c60ed8 100644 --- a/src/include/word.h +++ b/src/include/word.h @@ -27,7 +27,7 @@ #endif #if ((__SIZEOF_INT128__ == 16 \ - || 10*__clang_major__ + __clang_minor <= 32) \ + || 10*__clang_major__ + __clang_minor__ <= 32) \ && __SIZEOF_SIZE_T__ == 8 \ && (__SIZEOF_LONG__==8 || __POINTER_WIDTH__==64) \ && !defined(GOLDI_FORCE_32_BIT))