X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/sod/blobdiff_plain/77d83e015f7cd280b385ad53c486e2c27ad6152f..3b92d2b13d6784a8e30babcf6def39d2ba05082f:/src/codegen-impl.lisp diff --git a/src/codegen-impl.lisp b/src/codegen-impl.lisp index 0dba2c1..a74b304 100644 --- 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))) - (error "(Internal) Redefining type for variable ~A." name))) + (error "(Internal) Redefining type for variable ~A" name))) 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))))) - (push (make-var-inst name type nil) vars) + (push (make-var-inst name type) vars) name)))) ;;;----- That's all, folks --------------------------------------------------