Changeset 5586
- Timestamp:
- Dec 4, 2006, 11:43:01 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-0/l0-numbers.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-0/l0-numbers.lisp
r5339 r5586 1757 1757 (if (eql n1 most-negative-fixnum) 1758 1758 (if (eql n2 most-negative-fixnum) 1759 11759 (- most-negative-fixnum) 1760 1760 (bignum-fixnum-gcd (- most-negative-fixnum) (abs n2))) 1761 1761 (if (eql n2 most-negative-fixnum) … … 1773 1773 (number-case n2 1774 1774 (fixnum 1775 (bignum-fixnum-gcd (bignum-abs n1)(fixnum-abs n2))) 1775 (if (eql n2 most-negative-fixnum) 1776 (%bignum-bignum-gcd (bignum-abs n1)(fixnum-abs n2)) 1777 (bignum-fixnum-gcd (bignum-abs n1)(fixnum-abs n2)))) 1776 1778 (bignum (%bignum-bignum-gcd n1 n2)))))))) 1777 1779
Note:
See TracChangeset
for help on using the changeset viewer.
