diff --git a/src/CHANGELOG b/src/CHANGELOG index b6b11e719..12de8921c 100755 --- a/src/CHANGELOG +++ b/src/CHANGELOG @@ -23,6 +23,8 @@ ECL 10.3.2: - After loading the compiler, the COMMON-LISP package was left unlocked against changes. + - ECL can build again itself using a C++ compiler (--with-cxx thus works). + * Visible changes: - The source location annotator records the original pathnames, not the diff --git a/src/cmp/cmpinline.lsp b/src/cmp/cmpinline.lsp index 7f150591f..35a38ddc8 100644 --- a/src/cmp/cmpinline.lsp +++ b/src/cmp/cmpinline.lsp @@ -47,7 +47,7 @@ (let ((var (c1form-arg 0 form)) (value-type (c1form-primary-type form))) (if (var-changed-in-form-list var rest-forms) - (let* ((temp (make-inline-temp-var expected-type value-type var))) + (let* ((temp (make-inline-temp-var expected-type value-type))) (let ((*destination* temp)) (set-loc var)) (list value-type temp)) (list value-type var))))