aboutsummaryrefslogtreecommitdiff
path: root/etc/compile-by-zinc/make-graph-with-reg-by-ac-buckets.py
diff options
context:
space:
mode:
Diffstat (limited to 'etc/compile-by-zinc/make-graph-with-reg-by-ac-buckets.py')
-rwxr-xr-xetc/compile-by-zinc/make-graph-with-reg-by-ac-buckets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/compile-by-zinc/make-graph-with-reg-by-ac-buckets.py b/etc/compile-by-zinc/make-graph-with-reg-by-ac-buckets.py
index 5f13b28a5..6396cb6ed 100755
--- a/etc/compile-by-zinc/make-graph-with-reg-by-ac-buckets.py
+++ b/etc/compile-by-zinc/make-graph-with-reg-by-ac-buckets.py
@@ -486,7 +486,7 @@ def schedule(input_data, existing, emit_vars):
ret += ('// Convention is low_reg:high_reg\n')
for node in emit_vars:
if node['op'] == 'INPUT':
- ret += ('%s <- LOAD %s;' % (existing[node['out']], node['out']))
+ ret += ('%s <- LOAD %s;\n' % (existing[node['out']], node['out']))
elif node['op'] == '*' and len(node['deps']) == 2:
ret += ('%s <- MULX %s, %s; // %s = %s * %s\n'
% (existing[node['out']],