From: Luke Kenneth Casson Leighton Date: Sat, 8 Oct 2022 12:26:09 +0000 (+0100) Subject: vector name "RSp" not recognised in sv.stq, added as example X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0c502e2f484b51603f7b95195cce38e06d1912a0;p=openpower-isa.git vector name "RSp" not recognised in sv.stq, added as example --- diff --git a/src/openpower/sv/trans/test_pysvp64dis.py b/src/openpower/sv/trans/test_pysvp64dis.py index 8c39bf76..506a0673 100644 --- a/src/openpower/sv/trans/test_pysvp64dis.py +++ b/src/openpower/sv/trans/test_pysvp64dis.py @@ -358,7 +358,13 @@ class SVSTATETestCase(unittest.TestCase): "stq 4,0(5)", "stq 4,8(5)", "stq 4,16(5)", - "sv.stq *4,16(*5)", + "sv.stq 4,16(*5)", + ] + self._do_tst(expected) + + def test_26_sv_stq_vector_name(self): + expected = [ + "sv.stq *4,16(*5)", # RSp not recognised as "vector" name ] self._do_tst(expected)