From 3a90e6ff43f2e47f984ec9d1d2c34a1b3cc33901 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 11 Oct 2022 21:14:34 +0100 Subject: [PATCH] remove unneeded svstate from test --- src/openpower/decoder/isa/test_caller_svp64_ldst.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/openpower/decoder/isa/test_caller_svp64_ldst.py b/src/openpower/decoder/isa/test_caller_svp64_ldst.py index e1a686e6..2fde652a 100644 --- a/src/openpower/decoder/isa/test_caller_svp64_ldst.py +++ b/src/openpower/decoder/isa/test_caller_svp64_ldst.py @@ -56,12 +56,6 @@ class DecoderTestCase(FHDLTestCase): ) lst = list(lst) - # SVSTATE (in this case, VL=2) - svstate = SVP64State() - svstate.vl = 4 # VL - svstate.maxvl = 4 # MAXVL - print ("SVSTATE", bin(svstate.asint())) - tst_string = "hello\x00bye\x00" initial_regs = [0] * 32 initial_regs[3] = len(tst_string) # including the zero @@ -90,8 +84,7 @@ class DecoderTestCase(FHDLTestCase): break with Program(lst, bigendian=False) as program: - sim = self.run_tst_program(program, svstate=svstate, - initial_mem=initial_mem, + sim = self.run_tst_program(program, initial_mem=initial_mem, initial_regs=initial_regs) mem = sim.mem.dump(printout=True, asciidump=True) #print (mem) -- 2.30.2