Skip to content

Commit

Permalink
lint: trimmed whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
xTVaser committed Jul 28, 2024
1 parent 98b7a88 commit cf1c99a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions goal_src/goal-lib.gc
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand All @@ -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
Expand All @@ -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)
Expand Down

0 comments on commit cf1c99a

Please sign in to comment.