[movitz-cvs] CVS movitz
ffjeld
ffjeld at common-lisp.net
Sat Feb 9 09:50:46 UTC 2008
Update of /project/movitz/cvsroot/movitz
In directory clnet:/tmp/cvs-serv27398
Modified Files:
asm.lisp
Log Message:
Finishing touches on the assembler.
--- /project/movitz/cvsroot/movitz/asm.lisp 2008/02/04 23:01:11 1.11
+++ /project/movitz/cvsroot/movitz/asm.lisp 2008/02/09 09:50:46 1.12
@@ -6,7 +6,7 @@
;;;; Author: Frode Vatvedt Fjeld <frodef at acm.org>
;;;; Distribution: See the accompanying file COPYING.
;;;;
-;;;; $Id: asm.lisp,v 1.11 2008/02/04 23:01:11 ffjeld Exp $
+;;;; $Id: asm.lisp,v 1.12 2008/02/09 09:50:46 ffjeld Exp $
;;;;
;;;;------------------------------------------------------------------
@@ -127,7 +127,7 @@
(defun resolve-operand (operand)
- (etypecase operand
+ (typecase operand
(integer
operand)
(symbol-reference
@@ -139,7 +139,8 @@
(funcall-operand
(apply (funcall-operand-operator operand)
(mapcar #'resolve-operand
- (funcall-operand-operands operand))))))
+ (funcall-operand-operands operand))))
+ (t operand)))
;;;;;;;;;;;;
More information about the Movitz-cvs
mailing list