chiark
/
gitweb
/
~mdw
/
sod
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
src/c-types-{proto,impl}.lisp: Add `:export' parameter to `defctype'.
[sod]
/
src
/
method-impl.lisp
diff --git
a/src/method-impl.lisp
b/src/method-impl.lisp
index 6f6caad5db63b83da9a6ef41449321af92457ae7..6f22a142f92f9e487ca7858db4758fd3ff4a26e7 100644
(file)
--- a/
src/method-impl.lisp
+++ b/
src/method-impl.lisp
@@
-7,7
+7,7
@@
;;;----- Licensing notice ---------------------------------------------------
;;;
;;;----- Licensing notice ---------------------------------------------------
;;;
-;;; This file is part of the Sensble Object Design, an object system for C.
+;;; This file is part of the Sens
i
ble Object Design, an object system for C.
;;;
;;; SOD is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;;
;;; SOD is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
@@
-455,13
+455,15
@@
(defmethod compute-method-entry-functions ((method basic-effective-method))
. raw-entry-args))))
(codegen-push codegen)
(ensure-var codegen *sod-ap* (c-type va-list))
. raw-entry-args))))
(codegen-push codegen)
(ensure-var codegen *sod-ap* (c-type va-list))
- (emit-inst codegen
- (make-va-start-inst *sod-ap*
- (argument-name parm-n)))
(convert-stmts codegen entry-target return-type
(lambda (target)
(convert-stmts codegen entry-target return-type
(lambda (target)
- (deliver-expr codegen target call)))
- (emit-inst codegen (make-va-end-inst *sod-ap*))
+ (emit-inst codegen
+ (make-va-start-inst
+ *sod-ap*
+ (argument-name parm-n)))
+ (deliver-expr codegen target call)
+ (emit-inst codegen
+ (make-va-end-inst *sod-ap*))))
(codegen-pop-function codegen main main-type))))))
;; Generate the method body. We'll work out what to do with it later.
(codegen-pop-function codegen main main-type))))))
;; Generate the method body. We'll work out what to do with it later.