Explorar o código

r12011@catbus: nickm | 2007-02-28 18:13:32 -0500
Back out insufficiently evidenced FULL_UNROLL in aes.c


svn:r9693

Nick Mathewson %!s(int64=17) %!d(string=hai) anos
pai
achega
dec9e4f0d8
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      src/common/aes.c

+ 3 - 1
src/common/aes.c

@@ -97,7 +97,9 @@ const char aes_c_id[] = "$Id$";
 /* Figure out which AES optimizations to use. */
 #ifdef USE_BUILTIN_AES
 # define USE_RIJNDAEL_COUNTER_OPTIMIZATION
-# if defined(__powerpc__) || defined(__powerpc64__)
+# if 0 && (defined(__powerpc__) || defined(__powerpc64__))
+/* XXXX do more experimentation before concluding this is actually
+ * a good idea. */
 #  define FULL_UNROLL
 # endif
 #endif