[Git][cmucl/cmucl][master] 2 commits: Fix #103: Remove random-mt19937-update

Raymond Toy gitlab at common-lisp.net
Sat Feb 13 18:20:41 UTC 2021



Raymond Toy pushed to branch master at cmucl / cmucl


Commits:
b6a38aa0 by Raymond Toy at 2021-02-13T09:56:15-08:00
Fix #103: Remove random-mt19937-update

We don't use the MT19937 RNG anymore, so we can remove this assembly
routine.  But since the code still exists for mt19937, just use
reader-conditionals to disable this.

- - - - -
9b1abca5 by Raymond Toy at 2021-02-13T18:20:36+00:00
Merge branch 'issue-103-remove-random-mt19937-update' into 'master'

Fix #103: Remove random-mt19937-update

Closes #103

See merge request cmucl/cmucl!71
- - - - -


1 changed file:

- src/assembly/x86/arith.lisp


Changes:

=====================================
src/assembly/x86/arith.lisp
=====================================
@@ -313,7 +313,7 @@
 ;;; the state vector with new random numbers. The state vector is
 ;;; passed in the EAX register.
 ;;;
-#+assembler ; we don't want a vop for this one.
+#+(and random-mt19937 assembler) ; we don't want a vop for this one.
 (define-assembly-routine
     (random-mt19937-update)
     ((:temp state unsigned-reg eax-offset)



View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/f99321c7080b723a0d0f4f14e315eb80e2ec1a03...9b1abca53598f03a5b39ded4185471a5b8777dea

-- 
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/f99321c7080b723a0d0f4f14e315eb80e2ec1a03...9b1abca53598f03a5b39ded4185471a5b8777dea
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/20210213/0e623a76/attachment.html>


More information about the cmucl-cvs mailing list