Skip to content

Commit

Permalink
Fix Aarch64 build when CRYPTOPP_ARM_PMULL_AVAILABLE=0
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Jan 27, 2019
1 parent 6a76dc5 commit 6cd2d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gf2n_simd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ GF2NT_233_Square_Reduce_CLMUL(const word* pA, word* pC)
_mm_storeu_si128(pCC+1, c1);
}

#elif defined(CRYPTOPP_ARM_PMULL_AVAILABLE)
#elif (CRYPTOPP_ARM_PMULL_AVAILABLE)

void
GF2NT_233_Multiply_Reduce_ARMv8(const word* pA, const word* pB, word* pC)
Expand Down

0 comments on commit 6cd2d0a

Please sign in to comment.