Backed out commit 1dc875a44a. MinGW complained "error: 'p0' was not declared in this scope". Thanks to Ilya Bizyaev for reporting

pull/35/head
Jeffrey Walton 2015-07-25 06:15:53 -04:00
parent 427b45b4e7
commit e75cb8dd8b
1 changed files with 0 additions and 2 deletions

View File

@ -1053,10 +1053,8 @@ static word LinearMultiply(word *C, const word *A, word B, size_t N)
#else
#define Mul_Begin(n) \
Declare2Words(p) \
CRYPTOPP_UNUSED(p##0), CRYPTOPP_UNUSED(p##1); \
word c; \
Declare2Words(d) \
CRYPTOPP_UNUSED(d##0), CRYPTOPP_UNUSED(d##1); \
MultiplyWords(p, A[0], B[0]) \
c = LowWord(p); \
AssignWord(d, HighWord(p))