From: Dmitry Selyutin Date: Sun, 25 Sep 2022 16:02:00 +0000 (+0300) Subject: pysvp64asm: fix VLi attribute access X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0719a1fa1503ad5affaf0cb1cd807c505236b53b;p=openpower-isa.git pysvp64asm: fix VLi attribute access --- diff --git a/src/openpower/sv/trans/svp64.py b/src/openpower/sv/trans/svp64.py index 334f5093..1378d2fb 100644 --- a/src/openpower/sv/trans/svp64.py +++ b/src/openpower/sv/trans/svp64.py @@ -1173,14 +1173,14 @@ class SVP64Asm: svp64_rm.branch.VLS = 1 elif encmode == 'vsi': svp64_rm.branch.VLS = 1 - svp64_rm.branch.vls.VLI = 1 + svp64_rm.branch.vls.VLi = 1 elif encmode == 'vsb': svp64_rm.branch.VLS = 1 svp64_rm.branch.vls.VSb = 1 elif encmode == 'vsbi': svp64_rm.branch.VLS = 1 svp64_rm.branch.vls.VSb = 1 - svp64_rm.branch.vls.VLI = 1 + svp64_rm.branch.vls.VLi = 1 elif encmode == 'ctr': svp64_rm.branch.CTR = 1 elif encmode == 'cti':