From: Bastian Koppelmann Date: Mon, 19 Mar 2018 11:58:46 +0000 (+0100) Subject: scripts/decodetree: Fix insnmask not marked as global in main() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=83d7c40c92cdfb1cd2d5d31f4539b22dc17fbcce;p=qemu.git scripts/decodetree: Fix insnmask not marked as global in main() if '-w 16' was given as a cmdline args a local copy of insnmask is set and not the global one. Signed-off-by: Peer Adelt Signed-off-by: Bastian Koppelmann Message-Id: <20180319115846.9662-1-kbastian@mail.uni-paderborn.de> Reviewed-by: Richard Henderson Signed-off-by: Richard Henderson --- diff --git a/scripts/decodetree.py b/scripts/decodetree.py index 41301c84aa..277f9a9bba 100755 --- a/scripts/decodetree.py +++ b/scripts/decodetree.py @@ -972,6 +972,7 @@ def main(): global input_file global insnwidth global insntype + global insnmask decode_function = 'decode' decode_scope = 'static '