Skip to content
Snippets Groups Projects
Commit 6a853787 authored by wlott's avatar wlott
Browse files

Changed note-number-stack-tns to actually iterrate across the tns instead

of just spinning forever marking the same tn as being on the number stack.
parent 34158695
No related branches found
No related tags found
No related merge requests found
......@@ -233,7 +233,7 @@
(defun note-number-stack-tn (refs)
(declare (type (or tn-ref null) refs))
(do ((ref refs (tn-ref-next refs)))
(do ((ref refs (tn-ref-next ref)))
((null ref))
(let* ((lambda (block-lambda
(ir2-block-block
......
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