GNU bug report logs -
#64526
30.0.50; jit-compilation and multiple function definitions
Previous Next
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Package: Emacs
Version: 30.0.50
Say you have a file ~/tmp/foo.el:
;; -*- lexical-binding: t; -*-
(defun sm-foo1 (a) (list a 1))
(defun sm-foo1 (a) (list a 2))
which you byte-compile into ~/tmp/foo.elc, and then you do:
emacs -Q -l ~/tmp/foo
M-: (sm-foo1 'a) RET
you'll usually get `(a 2)` (and that's what we expect). But if you enable
native compilation and erase the `eln-cache` before trying it out you
may get `(a 1)` because when the `.eln` file is reloaded on top of the
`.elc` definitions, `comp--late-register-subr` will skip the second
definition :-(
I suspect similar problems can occur when the two definitions are placed
in different files (and those files are loaded "at the same time",
i.e. the second file is loaded before the native-compilation of the
first file finishes) since `comp-deferred-pending-h` does not pay
attention to the file names. :-(
Stefan
This bug report was last modified 2 years and 72 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.