- Bugfix: make C::GET-RETURN-TYPE return function's return type, not

argument type list.
This commit is contained in:
japhie 2005-09-14 11:57:40 +00:00
parent 2aa8494146
commit 14864f4b6d

View file

@ -129,7 +129,7 @@
(defun get-return-type (fname)
(let ((x (assoc fname *function-declarations*)))
(if x
(second x)
(third x)
(get-sysprop fname 'PROCLAIMED-RETURN-TYPE))))
(defun get-local-arg-types (fun &aux x)