mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 20:00:19 +02:00
* testsuite: Move to... * test-suite/vm: ... here. * Makefile.am (SUBDIRS): Remove `testsuite'. * configure.ac: Output `test-suite/vm/Makefile' instead of `testsuite/Makefile'. * test-suite/Makefile.am (SUBDIRS): Add `vm'.
5 lines
223 B
Scheme
5 lines
223 B
Scheme
;; Check whether literal integers are correctly signed.
|
|
|
|
(and (= 4294967295 (- (expt 2 32) 1)) ;; unsigned
|
|
(= -2147483648 (- (expt 2 31))) ;; signed
|
|
(= 2147483648 (expt 2 31))) ;; unsigned
|