mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 01:49:41 +00:00
Fix unused parameter warnings for x86 non-GCC (GH #1218)
These were suppressed for MSVC until commit dced966b7a
.
This commit is contained in:
parent
1659a9ef64
commit
b2e0635660
5
sha.cpp
5
sha.cpp
@ -835,6 +835,9 @@ INTEL_NOPREFIX
|
||||
, "%ebx"
|
||||
#endif
|
||||
);
|
||||
#else
|
||||
CRYPTOPP_UNUSED(state);
|
||||
CRYPTOPP_UNUSED(data);
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -1303,6 +1306,8 @@ void CRYPTOPP_FASTCALL SHA512_HashBlock_SSE2(word64 *state, const word64 *data)
|
||||
#endif
|
||||
);
|
||||
#else
|
||||
CRYPTOPP_UNUSED(state);
|
||||
CRYPTOPP_UNUSED(data);
|
||||
AS1( pop edi)
|
||||
AS1( pop esi)
|
||||
AS1( pop ebx)
|
||||
|
Loading…
Reference in New Issue
Block a user