The branch master has been updated
       via  7b0fceed21c8929e0c6694f57018aa1dbba03e15 (commit)
      from  933a73b9144397a5690a75c69694123a00d3590d (commit)


- Log -----------------------------------------------------------------
commit 7b0fceed21c8929e0c6694f57018aa1dbba03e15
Author: Lei Maohui <[email protected]>
Date:   Thu Jun 13 12:17:30 2019 +0900

    Fix build error for aarch64 big endian.
    
    Modified rev to rev64, because rev only takes integer registers.
    https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90827
    Otherwise, the following error will occur.
    
    Error: operand 1 must be an integer register -- `rev v31.16b,v31.16b'
    
    CLA: trivial
    
    Signed-off-by: Lei Maohui <[email protected]>
    
    Reviewed-by: Shane Lontis <[email protected]>
    Reviewed-by: Richard Levitte <[email protected]>
    (Merged from https://github.com/openssl/openssl/pull/9151)

-----------------------------------------------------------------------

Summary of changes:
 crypto/sha/asm/keccak1600-armv8.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crypto/sha/asm/keccak1600-armv8.pl 
b/crypto/sha/asm/keccak1600-armv8.pl
index dc72f18..6620690 100755
--- a/crypto/sha/asm/keccak1600-armv8.pl
+++ b/crypto/sha/asm/keccak1600-armv8.pl
@@ -731,7 +731,7 @@ $code.=<<___;
        blo     .Lprocess_block_ce
        ldr     d31,[$inp],#8           // *inp++
 #ifdef __AARCH64EB__
-       rev     v31.16b,v31.16b
+       rev64   v31.16b,v31.16b
 #endif
        eor     $A[$j/5][$j%5],$A[$j/5][$j%5],v31.16b
        beq     .Lprocess_block_ce
@@ -740,7 +740,7 @@ ___
 $code.=<<___;
        ldr     d31,[$inp],#8           // *inp++
 #ifdef __AARCH64EB__
-       rev     v31.16b,v31.16b
+       rev64   v31.16b,v31.16b
 #endif
        eor     $A[4][4],$A[4][4],v31.16b
 

Reply via email to