mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-26 15:21:51 -08:00
* Move final log after containers has been finalized
* lisp/emacs-lisp/comp.el (comp-final): Remove function log. (comp-compile-ctxt-to-file): Add function log.
This commit is contained in:
parent
dfa52572bd
commit
3d3737b90a
1 changed files with 3 additions and 3 deletions
|
|
@ -2305,6 +2305,9 @@ Update all insn accordingly."
|
|||
Prepare every function for final compilation and drive the C back-end."
|
||||
(let ((dir (file-name-directory name)))
|
||||
(comp-finalize-relocs)
|
||||
(maphash (lambda (_ f)
|
||||
(comp-log-func f 1))
|
||||
(comp-ctxt-funcs-h comp-ctxt))
|
||||
(unless (file-exists-p dir)
|
||||
;; In case it's created in the meanwhile.
|
||||
(ignore-error 'file-already-exists
|
||||
|
|
@ -2315,9 +2318,6 @@ Prepare every function for final compilation and drive the C back-end."
|
|||
(defun comp-final (_)
|
||||
"Final pass driving the C back-end for code emission."
|
||||
(let (compile-result)
|
||||
(maphash (lambda (_ f)
|
||||
(comp-log-func f 1))
|
||||
(comp-ctxt-funcs-h comp-ctxt))
|
||||
(comp--init-ctxt)
|
||||
(unwind-protect
|
||||
(setf compile-result
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue