Skip to content
Snippets Groups Projects
Verified Commit f176bc70 authored by Xiaoyu Wei's avatar Xiaoyu Wei
Browse files

fixed an issue when trace_assignment_values=True

parent 6995d802
No related branches found
No related tags found
No related merge requests found
...@@ -200,7 +200,7 @@ def generate_assignment_instruction_code(codegen_state, insn): ...@@ -200,7 +200,7 @@ def generate_assignment_instruction_code(codegen_state, insn):
"(%s).y" % lhs_code]) "(%s).y" % lhs_code])
if printf_args: if printf_args:
printf_args_str = ", " + ", ".join(printf_args) printf_args_str = ", " + ", ".join(str(v) for v in printf_args)
else: else:
printf_args_str = "" printf_args_str = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment