]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
r12011@catbus: nickm | 2007-02-28 18:13:32 -0500
authorNick Mathewson <nickm@torproject.org>
Thu, 1 Mar 2007 00:41:25 +0000 (00:41 +0000)
committerNick Mathewson <nickm@torproject.org>
Thu, 1 Mar 2007 00:41:25 +0000 (00:41 +0000)
 Back out insufficiently evidenced FULL_UNROLL in aes.c

svn:r9693

src/common/aes.c

index 0b87f44155d5e808a002ce773c98b8af5c8919cb..5707e86c3d0ad5ea8e596332b7b7bdad14143dd2 100644 (file)
@@ -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