From a1120e4dded30443bb58ed011d476a8d56cdadd7 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 15 May 2023 16:12:42 +0100 Subject: [PATCH] add sv.ffmadds test to test_pysvp64dis.py --- src/openpower/sv/trans/test_pysvp64dis.py | 6 ++++++ 1 file changed, 6 insertions(+) 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() -- 2.30.2