chiark / gitweb /
src/method-impl.lisp: Argument name list should only contain names.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 30 Aug 2015 09:58:38 +0000 (10:58 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 6 Sep 2015 14:14:23 +0000 (15:14 +0100)
The whole argument object prints wrongly and makes a mess in the output.

src/method-impl.lisp

index 26dce5d05cb30d80ccbe2b4183815ce84f9f6356..86fd4cd8ae341ebf61365e6112cec52f3061cdfd 100644 (file)
@@ -453,7 +453,8 @@ (defmethod compute-method-entry-functions ((method basic-effective-method))
           (varargs-prologue ()
             (ensure-var codegen *sod-master-ap* (c-type va-list))
             (emit-inst codegen
-                       (make-va-start-inst *sod-master-ap* parm-n)))
+                       (make-va-start-inst *sod-master-ap*
+                                           (argument-name parm-n))))
           (varargs-epilogue ()
             (emit-inst codegen (make-va-end-inst *sod-master-ap*)))
           (finish-entry (tail)