emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#50609: closed (number overflow)


From: GNU bug Tracking System
Subject: bug#50609: closed (number overflow)
Date: Fri, 05 Nov 2021 16:37:01 +0000

Your message dated Fri, 5 Nov 2021 17:35:56 +0100
with message-id <DCD9D46C-6C2E-4100-8682-3ECE5634347D@sarc.name>
and subject line Re: number overflow
has caused the debbugs.gnu.org bug report #50609,
regarding number overflow
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
50609: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=50609
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: number overflow Date: Wed, 15 Sep 2021 21:12:13 +0200
This does not compile on guile 3.0.7,

(define (f . l)
  (let lp2 ((i 0) (s 0) (l l))
    (if (and (pair? l) (< i 64))
         (lp2 (+ i 1) (if (car l) (logior (ash 1 i) s) s) (cdr l))
         s)))

While compiling _expression_:
Throw to key `numerical-overflow' with args `("ash" "Numerical ove
rflow" #f #f)'.

--- End Message ---
--- Begin Message --- Subject: Re: number overflow Date: Fri, 5 Nov 2021 17:35:56 +0100
I've applied the patch in c6b1171c6b5632ac04120f482af786444e17d3fe. Thanks for 
the report!



--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]