ECL can build again itself using a C++ compiler (--with-cxx thus works).

This commit is contained in:
Juan Jose Garcia Ripoll 2010-03-19 22:04:27 +01:00
parent 74eace251b
commit 322064aacb
2 changed files with 3 additions and 1 deletions

View file

@ -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

View file

@ -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))))