aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2010-11-27 00:12:28 -0500
committerJeff Garzik <jgarzik@redhat.com>2010-11-27 00:12:28 -0500
commit500759cea12cc08abf5af2bdb1bab1eff72d8542 (patch)
treeb9da89a572deda048a106a7538824263ac496d72
parenta7518360addc6d3365c8dc4895614f98e084535d (diff)
s/__SSE__/__SSE2__/
-rw-r--r--cpu-miner.c6
-rw-r--r--sha256_4way.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/cpu-miner.c b/cpu-miner.c
index 673385d..abe2a21 100644
--- a/cpu-miner.c
+++ b/cpu-miner.c
@@ -63,7 +63,7 @@ static struct option_help options_help[] = {
{ "algo XXX",
"(-a XXX) Specify sha256 implementation:\n"
"\tc\t\tLinux kernel sha256, implemented in C (default)"
-#ifdef __SSE__
+#ifdef __SSE2__
"\n\t4way\t\ttcatm's 4-way SSE2 implementation (EXPERIMENTAL)"
#endif
},
@@ -304,7 +304,7 @@ static void *miner_thread(void *thr_id_int)
if (opt_algo == ALGO_C)
rc = scanhash(work.midstate, work.data + 64,
work.hash1, work.hash, &hashes_done);
-#ifdef __SSE__
+#ifdef __SSE2__
else {
unsigned int rc4 =
ScanHash_4WaySSE2(work.midstate, work.data + 64,
@@ -347,7 +347,7 @@ static void parse_arg (int key, char *arg)
case 'a':
if (!strcmp(arg, "c"))
opt_algo = ALGO_C;
-#ifdef __SSE__
+#ifdef __SSE2__
else if (!strcmp(arg, "4way"))
opt_algo = ALGO_4WAY;
#endif
diff --git a/sha256_4way.c b/sha256_4way.c
index 35ce818..ae30f76 100644
--- a/sha256_4way.c
+++ b/sha256_4way.c
@@ -4,7 +4,7 @@
// tcatm's 4-way 128-bit SSE2 SHA-256
-#ifdef __SSE__
+#ifdef __SSE2__
#include <string.h>
#include <assert.h>
@@ -467,4 +467,4 @@ static void DoubleBlockSHA256(const void* pin, void* pad, const void *pre, unsig
}
-#endif /* __SSE__ */
+#endif /* __SSE2__ */