Whitespace check-in

Cleanup after the VMAC fixes
pull/867/head
Jeffrey Walton 2019-07-05 17:26:50 -04:00
parent ad99fc5b05
commit 9c28cf2227
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 3 additions and 7 deletions

View File

@ -204,11 +204,8 @@ void VMAC_Base::VHASH_Update_SSE2(const word64 *data, size_t blocksRemainingInWo
// GCC that ESP is dirty. The problems with GCC are the reason for the
// pushes and pops rather than the original moves.
#ifdef __GNUC__
// word32 temp;
__asm__ __volatile__
(
// AS2( mov %%ebx, %0)
// AS2( mov %1, %%ebx) // L1KeyLength
AS1( push %%ebx)
AS1( push %0) // L1KeyLength
AS1( pop %%ebx)
@ -432,8 +429,7 @@ void VMAC_Base::VHASH_Update_SSE2(const word64 *data, size_t blocksRemainingInWo
#ifdef __GNUC__
ATT_PREFIX
AS1( pop %%ebx)
// AS2( mov %0, %%ebx)
: // "=m" (temp)
:
: "m" (L1KeyLength), "c" (blocksRemainingInWord64), "S" (data),
"D" (nhK+tagPart*2), "d" (m_isFirstBlock), "a" (polyS+tagPart*4)
: "esp", "memory", "cc"