use nrevese where necessary

This commit is contained in:
Andrea Corallo 2019-09-05 21:47:35 +02:00 committed by Andrea Corallo
parent ff7093d74b
commit 9913638cc5
2 changed files with 3 additions and 3 deletions

View file

@ -832,7 +832,7 @@ the annotation emission."
;; Reverse insns into all basic blocks.
(cl-loop for bb being the hash-value in (comp-func-blocks func)
do (setf (comp-block-insns bb)
(reverse (comp-block-insns bb))))
(nreverse (comp-block-insns bb))))
(comp-log-func func)
func))