Update of /cvsroot/sbcl/sbcl/src/compiler/generic
In directory sc8-pr-cvs1:/tmp/cvs-serv21077/src/compiler/generic
Modified Files:
Tag: modular_arithmetic_branch
vm-tran.lisp
Log Message:
0.8.3.45.modular1:
Implement modular function optimization for PPC.
... Haven't implemented modular - or *; they could be TODO.
... probably doesn't build on anything but PPC currently, so
onto a branch it goes.
Index: vm-tran.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/src/compiler/generic/vm-tran.lisp,v
retrieving revision 1.37
retrieving revision 1.37.2.1
diff -u -d -r1.37 -r1.37.2.1
--- vm-tran.lisp 8 Sep 2003 09:00:17 -0000 1.37
+++ vm-tran.lisp 8 Sep 2003 15:47:46 -0000 1.37.2.1
@@ -440,7 +440,7 @@
;;;; 32-bit operations
-#!-x86 ; on X86 it is a modular function
+#!-(or ppc x86) ; on X86 it is a modular function
(deftransform lognot ((x) ((unsigned-byte 32)) *
:node node
:result result)
|