Fixed comments in macro magic

pull/270/head
Jeffrey Walton 2016-09-12 19:17:18 -04:00
parent abd14a4b0a
commit 32375fe322
1 changed files with 3 additions and 3 deletions

View File

@ -901,7 +901,7 @@ size_t GCM_Base::AuthenticateBlocks(const byte *data, size_t len)
AS2( psrldq xmm0, 15 ) AS2( psrldq xmm0, 15 )
#if USE_MOVD_REG32 #if USE_MOVD_REG32
AS2( movd edi, xmm0 ) AS2( movd edi, xmm0 )
#elif USE_MOVD_REG32_OR_REG64 #elif USE_MOV_REG32_OR_REG64
AS2( mov WORD_REG(di), xmm0 ) AS2( mov WORD_REG(di), xmm0 )
#else // GNU Assembler #else // GNU Assembler
AS2( movd WORD_REG(di), xmm0 ) AS2( movd WORD_REG(di), xmm0 )
@ -916,7 +916,7 @@ size_t GCM_Base::AuthenticateBlocks(const byte *data, size_t len)
AS2( psrldq xmm1, 15 ) AS2( psrldq xmm1, 15 )
#if USE_MOVD_REG32 #if USE_MOVD_REG32
AS2( movd edi, xmm1 ) AS2( movd edi, xmm1 )
#elif USE_MOVD_REG32_OR_REG64 #elif USE_MOV_REG32_OR_REG64
AS2( mov WORD_REG(di), xmm1 ) AS2( mov WORD_REG(di), xmm1 )
#else #else
AS2( movd WORD_REG(di), xmm1 ) AS2( movd WORD_REG(di), xmm1 )
@ -927,7 +927,7 @@ size_t GCM_Base::AuthenticateBlocks(const byte *data, size_t len)
AS2( psrldq xmm0, 15 ) AS2( psrldq xmm0, 15 )
#if USE_MOVD_REG32 #if USE_MOVD_REG32
AS2( movd edi, xmm0 ) AS2( movd edi, xmm0 )
#elif USE_MOVD_REG32_OR_REG64 #elif USE_MOV_REG32_OR_REG64
AS2( mov WORD_REG(di), xmm0 ) AS2( mov WORD_REG(di), xmm0 )
#else #else
AS2( movd WORD_REG(di), xmm0 ) AS2( movd WORD_REG(di), xmm0 )