From 8963864ff558e812324052f11b51e7e8acb0a564 Mon Sep 17 00:00:00 2001 From: Sun Yimin Date: Sat, 21 Sep 2024 11:22:08 +0800 Subject: [PATCH] cipher: xts s390x instruction issue --- cipher/xts_s390x.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cipher/xts_s390x.s b/cipher/xts_s390x.s index 6e663d1..9e08f61 100644 --- a/cipher/xts_s390x.s +++ b/cipher/xts_s390x.s @@ -21,7 +21,7 @@ GLOBL xtsMask<>(SB), (NOPTR+RODATA), $16 VPERM B0, B0, BSWAP, B0 \// BE -> LE \ // Multiply by 2 VESRAF $31, B0, T0 \ - VLREPF $0, T0, T0 \ + VREPF $0, T0, T0 \ VN POLY, T0, T0 \ // T0 for reduction VREPIB $1, T1 \ VSL T1, B0, T1 \ @@ -32,7 +32,7 @@ GLOBL xtsMask<>(SB), (NOPTR+RODATA), $16 #define gbDoubleTweak(B0, POLY, T0, T1) \ VESLF $31, B0, T0 \ VESRAF $31, T0, T0 \ - VLREPF $3, T0, T0 \ + VREPF $3, T0, T0 \ VN POLY, T0, T0 \ // T0 for reduction \ VREPIB $1, T1 \