chiark
/
gitweb
/
~mdw
/
sod
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5fae43
)
src/method-impl.lisp: Argument name list should only contain names.
author
Mark Wooding
<mdw@distorted.org.uk>
Sun, 30 Aug 2015 09:58:38 +0000
(10:58 +0100)
committer
Mark 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
patch
|
blob
|
blame
|
history
diff --git
a/src/method-impl.lisp
b/src/method-impl.lisp
index 26dce5d05cb30d80ccbe2b4183815ce84f9f6356..86fd4cd8ae341ebf61365e6112cec52f3061cdfd 100644
(file)
--- a/
src/method-impl.lisp
+++ b/
src/method-impl.lisp
@@
-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)