Skip to content
Snippets Groups Projects
Commit 5d2bc6b6 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix assignment tracing

parent 871cc0a5
No related branches found
No related tags found
No related merge requests found
......@@ -140,10 +140,8 @@ def generate_expr_instruction_code(kernel, insn, codegen_state):
else:
printf_args_str = ""
printf_insn = GeneratedInstruction(
ast=S("printf(\"%s\\n\"%s)" % (
printf_format, printf_args_str)),
implemented_domain=None)
printf_insn = S("printf(\"%s\\n\"%s)" % (
printf_format, printf_args_str))
from cgen import Block
if kernel.flags.trace_assignment_values:
......
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