Array.st
changeset 14657 6610eb2df25c
parent 14632 6fe0dc1d5377
child 14687 e718f7219911
child 18011 deb0c3355881
--- a/Array.st	Tue Jan 15 18:25:54 2013 +0100
+++ b/Array.st	Wed Jan 16 11:30:10 2013 +0100
@@ -127,20 +127,13 @@
 		/*
 		 * knowing that nil is 0
 		 */
-#ifdef XXmips
-# undef FAST_ARRAY_MEMSET_DOUBLES_UNROLLED
-# undef FAST_ARRAY_MEMSET_LONGLONG_UNROLLED
-/* seems to be slightly faster */
-# define FAST_ARRAY_MEMSET
-#endif
+#  ifdef __sparc__
+#   define FAST_ARRAY_MEMSET_DOUBLES_UNROLLED
+#  endif
 
-#ifdef __sparc__
-# define FAST_ARRAY_MEMSET_DOUBLES_UNROLLED
-#endif
-
-#ifdef __VMS__
-# define FAST_ARRAY_MEMSET_LONGLONG_UNROLLED
-#endif
+#  ifdef __VMS__
+#   define FAST_ARRAY_MEMSET_LONGLONG_UNROLLED
+#  endif
 
 #  if defined(FAST_ARRAY_MEMSET_DOUBLES_UNROLLED)
 		op = __InstPtr(newobj)->i_instvars;
@@ -2566,9 +2559,9 @@
 !Array class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.154 2013-01-08 17:55:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.155 2013-01-16 10:30:10 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.154 2013-01-08 17:55:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.155 2013-01-16 10:30:10 cg Exp $'
 ! !