From 9e73ce2f7229bd4ce92846f56911bba5eb21b3e1 Mon Sep 17 00:00:00 2001 From: Dmitry Selyutin Date: Sat, 4 Sep 2021 17:30:12 +0000 Subject: [PATCH] comparefixed: switch cmpl to XLEN --- openpower/isa/comparefixed.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpower/isa/comparefixed.mdwn b/openpower/isa/comparefixed.mdwn index c2f93ec7..34fb62b7 100644 --- a/openpower/isa/comparefixed.mdwn +++ b/openpower/isa/comparefixed.mdwn @@ -77,8 +77,8 @@ X-Form Pseudo-code: if L = 0 then - a <- [0]*32 || (RA)[32:63] - b <- [0]*32 || (RB)[32:63] + a <- [0]*(XLEN/2) || (RA)[XLEN/2:XLEN-1] + b <- [0]*(XLEN/2) || (RB)[XLEN/2:XLEN-1] else a <- (RA) b <- (RB) -- 2.30.2