s/__SSE__/__SSE2__/

This commit is contained in:
Jeff Garzik 2010-11-27 00:12:28 -05:00 committed by Jeff Garzik
parent a7518360ad
commit 500759cea1
2 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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__ */