From: Dmitry Selyutin Date: Wed, 21 Sep 2022 15:06:32 +0000 (+0300) Subject: sv_binutils: fix fields traversal X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f6c24c53e6490dca2b2471a029307d357b9cf406;p=openpower-isa.git sv_binutils: fix fields traversal --- 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)