diff --git a/doc/lispref/compile.texi b/doc/lispref/compile.texi index 9f93fb4a981..6ca97e0dc4f 100644 --- a/doc/lispref/compile.texi +++ b/doc/lispref/compile.texi @@ -1024,6 +1024,9 @@ Like 1, and in addition dump pseudo-C code. Like 2, and in addition dump the GCC intermediate passes and @file{libgccjit} log file. @end table + +When generated the pseudo C code is deposed in the .eln output +directory. @end defopt @defopt native-comp-verbose diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 2844e89c661..15079903a03 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -75,7 +75,9 @@ This is intended for debugging the compiler itself. 1 emit debug symbols. 2 emit debug symbols and dump pseudo C code. 3 emit debug symbols and dump: pseudo C code, GCC intermediate - passes and libgccjit log file." + passes and libgccjit log file. +When generated the pseudo C code is deposed in the .eln output +directory." :type 'natnum :safe #'natnump :version "29.1")