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

Include no_sync_with in kernel printing

parent 1ee78297
No related branches found
No related tags found
No related merge requests found
......@@ -1138,6 +1138,8 @@ class LoopKernel(RecordWithoutPickling):
options.append("groups=%s" % ":".join(insn.groups))
if insn.conflicts_with_groups:
options.append("conflicts=%s" % ":".join(insn.conflicts_with_groups))
if insn.no_sync_with:
options.append("no_sync_with=%s" % ":".join(insn.no_sync_with))
if len(loop_list) > loop_list_width:
lines.append("[%s]" % loop_list)
......
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