Cleared GCC/Clang warning on unknown pragma

pull/2/head
Jeffrey Walton 2015-06-09 11:35:45 -04:00
parent d7399e0fd7
commit e2c469dc41
1 changed files with 5 additions and 1 deletions

View File

@ -137,7 +137,11 @@ void VMAC_Base::HashEndianCorrectedBlock(const word64 *data)
}
#if CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE && CRYPTOPP_BOOL_X86
#ifdef _MSC_VER
# pragma warning(disable: 4731) // frame pointer register 'ebp' modified by inline assembly code
#endif
void
#ifdef __GNUC__
__attribute__ ((noinline)) // Intel Compiler 9.1 workaround