From aca2bb4e89a6d47a9594f72f265d033f64c14657 Mon Sep 17 00:00:00 2001 From: Stas Boukarev Date: Wed, 24 Feb 2016 02:47:34 +0300 Subject: [PATCH] tests: Fix :mod-arith-large-constant on 32-bit platforms. --- tests/arith.pure.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/arith.pure.lisp b/tests/arith.pure.lisp index b16657e9c..e015d7069 100644 --- a/tests/arith.pure.lisp +++ b/tests/arith.pure.lisp @@ -736,8 +736,8 @@ (with-test (:name :mod-arith-large-constant) (assert (= (funcall (checked-compile '(lambda (x) - (declare ((unsigned-byte 64) x)) + (declare (sb-ext:word x)) (logand sb-ext:most-positive-word - (+ x 23124234234)))) + (+ x 2312423423)))) 12) - 23124234246))) + 2312423435))) -- 2.11.4.GIT