Skip to content

Commit

Permalink
liebler: add missing argument to WORD type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
paulapatience committed Jun 29, 2024
1 parent 3a99e0e commit 4ae879e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/liebler/implementation.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
(let ((k (quaviver/math:floor-log-expt 2 10 ,exponent))
(shift (- ,arithmetic-size (integer-length ,significand))))
(declare (type fixnum k shift ,exponent ,sign)
(type quaviver/math::word ,significand))
(type (quaviver/math::word ,arithmetic-size) ,significand))
(setf ,significand (,round-to-odd (,expt10 (- ,exponent))
(ash ,significand shift))
k (- k -1 shift)
Expand Down

0 comments on commit 4ae879e

Please sign in to comment.