hurrah, toplevels assignment to globals appears to be working.

This commit is contained in:
Danny Yoo 2013-03-03 16:20:05 -07:00
parent 7026c7aa24
commit a1f4873ff8

View File

@ -2106,11 +2106,15 @@
empty))) empty)))
empty-instruction-sequence) empty-instruction-sequence)
;; Finally, make sure any multiple values are off the stack. ;; Make sure any multiple values are off the stack.
(if (> (length ids) 1) (if (> (length ids) 1)
(make-PopEnvironment (make-Const (sub1 (length ids))) (make-PopEnvironment (make-Const (sub1 (length ids)))
(make-Const 0)) (make-Const 0))
empty-instruction-sequence))))) empty-instruction-sequence)
;; Finally, set the target to void.
(make-AssignImmediate target (make-Const (void)))))))