From d7c96f5d2e20462d9093c261dacdb7a1f7ea97c5 Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Thu, 30 Dec 2021 11:40:35 +0300 Subject: [PATCH] Fix comments Signed-off-by: Evgenii Stratonikov --- tz/avx2_amd64.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tz/avx2_amd64.s b/tz/avx2_amd64.s index 95e6098..a9188d8 100644 --- a/tz/avx2_amd64.s +++ b/tz/avx2_amd64.s @@ -2,8 +2,8 @@ #define mask(bit, tmp, to) \ VPSRLW bit, Y10, tmp \ - VPAND Y12, tmp, to \ // to2 = 0x000000... - VPSUBW to, Y13, to // to2 = 0xFFFF.. or 0x0000 depending on bit + VPAND Y12, tmp, to \ // to = 0x000000... + VPSUBW to, Y13, to // to = 0xFFFF.. or 0x0000 depending on bit #define mulBit(bit, in_1, in_2, out_1, out_2) \ VPSLLQ $1, in_1, Y1 \