diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-10-10 17:54:27 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-10-10 18:08:23 +0200 |
commit | 77fa6befb478f49a47ef1cee88e2c791e0037617 (patch) | |
tree | 7064b2c69ce8803bbee77b816ba1abb249067ca8 /lisp | |
parent | b8772e8b08fd269681f449fbe81172e2a2dad19f (diff) | |
download | emacs-77fa6befb478f49a47ef1cee88e2c791e0037617.tar.gz emacs-77fa6befb478f49a47ef1cee88e2c791e0037617.tar.bz2 emacs-77fa6befb478f49a47ef1cee88e2c791e0037617.zip |
* lisp/emacs-lisp/comp.el (comp-func): Fix doc for blocks slot.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index a7da7d42e9c..d860fa31f0b 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -368,8 +368,7 @@ Once in SSA form this *must* be set to 'dirty' every time the topology of the CFG is mutated by a pass.") (frame-size nil :type number) (blocks (make-hash-table) :type hash-table - :documentation "Key is the basic block symbol value is a comp-block -structure.") + :documentation "Basic block name -> basic block.") (lap-block (make-hash-table :test #'equal) :type hash-table :documentation "LAP lable -> LIMPLE basic block name.") (edges () :type list |