From 97f603213814159f6da349735f7a2a07d72c42cf Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 8 Jan 2024 13:53:39 +0000 Subject: [PATCH] fix memory locations in linked-list test_caller_svp64_ldst.py --- src/openpower/decoder/isa/test_caller_svp64_ldst.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/openpower/decoder/isa/test_caller_svp64_ldst.py b/src/openpower/decoder/isa/test_caller_svp64_ldst.py index 4ecf5347..76138dc4 100644 --- a/src/openpower/decoder/isa/test_caller_svp64_ldst.py +++ b/src/openpower/decoder/isa/test_caller_svp64_ldst.py @@ -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 } -- 2.30.2