lint: trimmed whitespace

This commit is contained in:
Tyler Wilding 2024-07-27 22:16:20 -04:00
parent 98b7a8884c
commit cf1c99a725
No known key found for this signature in database
GPG key ID: BF7B068C2FEFD7EF

View file

@ -411,7 +411,7 @@
(set! unrolled-body (cons `(1+! ,index-var) unrolled-body))
)
;; Only append the temporary index increment if we aren't fully unrolling
;; Only append the temporary index increment if we aren't fully unrolling
;; or if the limit could be dynamic
(when (and (eq? index-var '_)
(or (not (integer? limit))
@ -434,7 +434,7 @@
(if (eq? unroll limit)
;; Don't need any loop constructs or index variables when fully unrolling
`(begin ,@unrolled-body)
`(let ((,temp-index-var 0))
(while (< ,temp-index-var ,limit) :label ,label
(block ,continue-label
@ -448,7 +448,7 @@
,@(if (eq? unroll limit)
;; Don't need any loop constructs when fully unrolling
unrolled-body
(list `(while (< ,index-var ,limit) :label ,label
(block ,continue-label
,@unrolled-body)