From: Luke Kenneth Casson Leighton Date: Fri, 3 Apr 2020 21:36:27 +0000 (+0100) Subject: remove quotes because we are passing the function through X-Git-Tag: div_pipeline~1542 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a2c61f38fb4716513895c98b86925ad6bda8e90;p=soc.git remove quotes because we are passing the function through --- diff --git a/src/soc/decoder/pseudo/pywriter.py b/src/soc/decoder/pseudo/pywriter.py index 610ca14f..2934ab44 100644 --- a/src/soc/decoder/pseudo/pywriter.py +++ b/src/soc/decoder/pseudo/pywriter.py @@ -52,7 +52,7 @@ class PyISAWriter(ISA): else: f.write("\n") # cumulate the instruction info - iinfo = "('%s', %s, %s, %s)" % \ + iinfo = "(%s, %s, %s, %s)" % \ (pagename, rused['read_regs'], rused['uninit_regs'], rused['write_regs']) iinf += " instrs['%s'] = %s\n" % (pagename, iinfo)