* byte-opt.el: (byte-optimize-lapcode): Return nil instantly on
finding the tag in a jump table.
;;
((and (eq 'TAG (car lap0))
(not (rassq lap0 lap))
- (= (length (cl-loop for table in byte-compile-jump-tables
- when (member lap0 (hash-table-values table))
- collect t))
- 0))
+ (cl-loop for table in byte-compile-jump-tables
+ when (member lap0 (hash-table-values table))
+ return nil finally return t))
(and (memq byte-optimize-log '(t byte))
(byte-compile-log " unused tag %d removed" (nth 1 lap0)))
(setq lap (delq lap0 lap)