fix memory locations in linked-list test_caller_svp64_ldst.py
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 8 Jan 2024 13:53:39 +0000 (13:53 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 9 Jan 2024 11:39:52 +0000 (11:39 +0000)
src/openpower/decoder/isa/test_caller_svp64_ldst.py

index 4ecf534777a5e8a0178b29dbcd69a1a5e2dd14d6..76138dc483a45d98a5a572ddbfaedad8b3b8f3b8 100644 (file)
@@ -834,8 +834,8 @@ class DecoderTestCase(FHDLTestCase):
 
         # some memory with addresses to get from.  all locations are offset 8
         initial_mem = { 24: 0xfeed0001, 32: 48, # data @ 24, ptr @ 32+8 -> 48
-                        48: 0xfeed0002, 56: 16, # data @ 48, ptr @ 48+8 -> 16
-                        16: 0xfeed0003, 24: 80, # data @ 16, ptr @ 16+8 -> 80
+                        48: 0xfeed0002, 56: 8 , # data @ 48, ptr @ 48+8 -> 8
+                        8 : 0xfeed0003, 16: 80, # data @ 16, ptr @ 16+8 -> 80
                         80: 0xfeed0004, 88: 0,  # data @ 80, ptr @ 80+8 -> 0
                       }
 
@@ -888,8 +888,8 @@ class DecoderTestCase(FHDLTestCase):
 
         # some memory with addresses to get from.  all locations are offset 8
         initial_mem = { 24: 0xfeed0001, 32: 48, # data @ 24, ptr @ 32+8 -> 48
-                        48: 0xfeed0002, 56: 16, # data @ 48, ptr @ 48+8 -> 16
-                        16: 0xfeed0003, 24: 80, # data @ 16, ptr @ 16+8 -> 80
+                        48: 0xfeed0002, 56: 8 , # data @ 48, ptr @ 48+8 -> 8
+                        8 : 0xfeed0003, 16: 80, # data @ 16, ptr @ 16+8 -> 80
                         80: 0xfeed0004, 88: 0,  # data @ 80, ptr @ 80+8 -> 0
                       }