From 49181243611e882165192161d90503eeb347cf35 Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Thu, 27 Mar 2025 23:36:15 +0100 Subject: [PATCH] Clarify comments in GENERATE-CODE for NODE-BRANCH --- wip-duuqnd/compiler.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wip-duuqnd/compiler.lisp b/wip-duuqnd/compiler.lisp index b58f85d..598bc77 100644 --- a/wip-duuqnd/compiler.lisp +++ b/wip-duuqnd/compiler.lisp @@ -47,8 +47,9 @@ (let ((else-label (genlabel "ELSE"))) (format-inst t "LDA RESULT") (format-inst t "BNE ~A" else-label) - ;; THEN branch + ;; The THEN branch (generate-code (branch-next node)) + ;; The ELSE branch (format t "~%~A:~%" else-label))) (defclass node-dotimes (node)