chiark
/
gitweb
/
~mdw
/
sod
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
src/class-finalize-impl.lisp (check-sod-class): Remove `w/del' wrapper.
[sod]
/
src
/
codegen-impl.lisp
diff --git
a/src/codegen-impl.lisp
b/src/codegen-impl.lisp
index 0dba2c17fac7824a877f8f3d56da3c7f03f6a9e0..a74b30417a32601b520312659e6a9381e2c9f387 100644
(file)
--- a/
src/codegen-impl.lisp
+++ b/
src/codegen-impl.lisp
@@
-112,7
+112,7
@@
(defmethod ensure-var ((codegen basic-codegen) name type &optional init)
(setf (codegen-vars codegen)
(cons (make-var-inst name type init) vars)))
((not (c-type-equal-p type (inst-type var)))
(setf (codegen-vars codegen)
(cons (make-var-inst name type init) vars)))
((not (c-type-equal-p type (inst-type var)))
- (error "(Internal) Redefining type for variable ~A
.
" name)))
+ (error "(Internal) Redefining type for variable ~A" name)))
name))
(export 'codegen)
name))
(export 'codegen)
@@
-161,7
+161,7
@@
(defmethod temporary-var ((codegen basic-codegen) type)
:in-use-p t
:tag (prog1 temp-index
(incf temp-index)))))
:in-use-p t
:tag (prog1 temp-index
(incf temp-index)))))
- (push (make-var-inst name type
nil
) vars)
+ (push (make-var-inst name type) vars)
name))))
;;;----- That's all, folks --------------------------------------------------
name))))
;;;----- That's all, folks --------------------------------------------------