[Git][cmucl/cmucl][rtoy-xoro-default] Fix typo in reader conditional.

Raymond Toy rtoy at common-lisp.net
Fri Dec 29 16:57:35 UTC 2017


Raymond Toy pushed to branch rtoy-xoro-default at cmucl / cmucl


Commits:
e5bd7ef7 by Raymond Toy at 2017-12-29T08:57:34-08:00
Fix typo in reader conditional.

Don't use the portable xoroshiro-gen on x86 and sparc!

- - - - -


1 changed file:

- src/code/rand-xoroshiro.lisp


Changes:

=====================================
src/code/rand-xoroshiro.lisp
=====================================
--- a/src/code/rand-xoroshiro.lisp
+++ b/src/code/rand-xoroshiro.lisp
@@ -235,11 +235,11 @@
 	   (optimize (speed 3) (safety 0)))
   (vm::xoroshiro-next state))
 
-#+(or x86 sparc)
+#-(or x86 sparc)
 (defun xoroshiro-gen (state)
   (declare (type (simple-array double-float (2)) state)
 	   (optimize (speed 3) (safety 0)))
-  ;; Portable implemenation of the xoroshiro128+ generator. See
+  ;; Portable implementation of the xoroshiro128+ generator. See
   ;; http://xoroshiro.di.unimi.it/xoroshiro128plus.c for the
   ;; definitive definition.
   ;;



View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/e5bd7ef7412200ea1ec453382a74393d43ae3bf3

---
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/e5bd7ef7412200ea1ec453382a74393d43ae3bf3
You're receiving this email because of your account on gitlab.common-lisp.net.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/cmucl-cvs/attachments/20171229/6368a8c6/attachment.html>


More information about the cmucl-cvs mailing list