Update of /cvsroot/sbcl/sbcl/src/compiler/generic
In directory sc8-pr-cvs1:/tmp/cvs-serv27999/src/compiler/generic
Modified Files:
Tag: modular_arithmetic_branch
vm-tran.lisp
Log Message:
0.8.3.45.modular3:
Implement (I think) modular functions on sparc
... as usual in this kind of thing, an untested last-minute
modification creeps in, because I broke LOGEQV in
an obvious way. Will test the modification before this
branch gets near HEAD.
Index: vm-tran.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/src/compiler/generic/vm-tran.lisp,v
retrieving revision 1.37.2.1
retrieving revision 1.37.2.2
diff -u -d -r1.37.2.1 -r1.37.2.2
--- vm-tran.lisp 8 Sep 2003 15:47:46 -0000 1.37.2.1
+++ vm-tran.lisp 9 Sep 2003 16:57:46 -0000 1.37.2.2
@@ -440,7 +440,7 @@
;;;; 32-bit operations
-#!-(or ppc x86) ; on X86 it is a modular function
+#!-(or ppc sparc x86) ; on X86 it is a modular function
(deftransform lognot ((x) ((unsigned-byte 32)) *
:node node
:result result)
|