i386 unrolling blows up the media in a big way, due to -Os for
authorderaadt <deraadt@openbsd.org>
Fri, 19 Dec 2014 14:30:44 +0000 (14:30 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 19 Dec 2014 14:30:44 +0000 (14:30 +0000)
ramdisk libc builds.  there has to be a better way without #ifdef's
in gross places, but I don't see it yet.

lib/libc/hash/sha2.c

index f77dc6b..729895b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sha2.c,v 1.20 2014/12/18 20:29:08 tedu Exp $  */
+/*     $OpenBSD: sha2.c,v 1.21 2014/12/19 14:30:44 deraadt Exp $       */
 
 /*
  * FILE:       sha2.c
@@ -52,7 +52,7 @@
  *   #define SHA2_UNROLL_TRANSFORM
  *
  */
-#if defined(__amd64__) || defined(__i386__)
+#if defined(__amd64__)
 #define SHA2_UNROLL_TRANSFORM
 #endif