;;;----- Licensing notice ---------------------------------------------------
;;;
-;;; This file is part of the Sensble Object Design, an object system for C.
+;;; This file is part of the Sensible 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
. 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)
- (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.