From f6c24c53e6490dca2b2471a029307d357b9cf406 Mon Sep 17 00:00:00 2001 From: Dmitry Selyutin Date: Wed, 21 Sep 2022 18:06:32 +0300 Subject: [PATCH] sv_binutils: fix fields traversal --- src/openpower/sv/sv_binutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openpower/sv/sv_binutils.py b/src/openpower/sv/sv_binutils.py index 77fe09a2..f555bea6 100644 --- a/src/openpower/sv/sv_binutils.py +++ b/src/openpower/sv/sv_binutils.py @@ -320,7 +320,7 @@ class Instruction(Struct, c_tag="svp64_insn"): yield from super().c_decl() yield "" - for (path, field) in _SVP64Instruction.traverse(path="svp64_insn"): + for (path, field) in _SVP64Instruction.traverse(path=""): yield from getter(path, field) yield from setter(path, field) -- 2.30.2