summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-03-01 00:41:25 +0000
committerNick Mathewson <nickm@torproject.org>2007-03-01 00:41:25 +0000
commitdec9e4f0d8a3b0c482c4dde70f95815433436d73 (patch)
tree5fb21185cf3cb55a562a668e1d3006f1b613c153
parente2b1a77c3e03a8a8142dc033f74d9ba9f394f8ed (diff)
downloadtor-dec9e4f0d8a3b0c482c4dde70f95815433436d73.tar.gz
tor-dec9e4f0d8a3b0c482c4dde70f95815433436d73.zip
r12011@catbus: nickm | 2007-02-28 18:13:32 -0500
Back out insufficiently evidenced FULL_UNROLL in aes.c svn:r9693
-rw-r--r--src/common/aes.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/aes.c b/src/common/aes.c
index 0b87f44155..5707e86c3d 100644
--- a/src/common/aes.c
+++ b/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