Skip to content
Snippets Groups Projects
Commit 972d40d8 authored by Matt Wala's avatar Matt Wala
Browse files

Fix no_sync_with printing.

parent 23333335
No related branches found
No related tags found
No related merge requests found
......@@ -1226,7 +1226,9 @@ class LoopKernel(RecordWithoutPickling):
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))
# FIXME: Find a syntax to express scopes.
options.append("no_sync_with=%s" % ":".join(id for id, _ in
insn.no_sync_with))
if lhs:
core = "%s <- %s" % (
......
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