From: Luke Kenneth Casson Leighton Date: Mon, 15 May 2023 15:12:42 +0000 (+0100) Subject: add sv.ffmadds test to test_pysvp64dis.py X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a1120e4dded30443bb58ed011d476a8d56cdadd7;p=openpower-isa.git add sv.ffmadds test to test_pysvp64dis.py --- diff --git a/src/openpower/sv/trans/test_pysvp64dis.py b/src/openpower/sv/trans/test_pysvp64dis.py index 8330d7c8..64db028e 100644 --- a/src/openpower/sv/trans/test_pysvp64dis.py +++ b/src/openpower/sv/trans/test_pysvp64dis.py @@ -473,5 +473,11 @@ class SVSTATETestCase(unittest.TestCase): ] self._do_tst(expected) + def test_35_ffmadds(self): + expected = [ + "sv.ffmadds *0,*0,*0", + ] + self._do_tst(expected) + if __name__ == "__main__": unittest.main()