From f52dd80d5268e92c174fe12e4687448f35aa6e13 Mon Sep 17 00:00:00 2001 From: John Alanbrook Date: Tue, 10 Feb 2026 19:02:42 -0600 Subject: [PATCH] fix compile error --- compile.ce | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.ce b/compile.ce index 0b85e607..6075f0f2 100644 --- a/compile.ce +++ b/compile.ce @@ -42,11 +42,11 @@ if (rc != 0) { // Use awk via shell to avoid blob/slurpwrite issues with long strings print('post-process...') var awk_cmd = `awk ' - /^[[:space:]]*ret / || /^[[:space:]]*jmp / { need_label=1; print; next } need_label && /^[[:space:]]*[^@}]/ && NF > 0 { print "@_dead_" dead_id; dead_id++; need_label=0 } /^@/ || /^}/ || NF==0 { need_label=0 } + /^[[:space:]]*ret / || /^[[:space:]]*jmp / { need_label=1; print; next } { print } ' ` + ssa_path + ` > ` + tmp + `_fixed.ssa` rc = os.system(awk_cmd)