diff options
author | Jeff Garzik <jeff@garzik.org> | 2010-11-27 00:12:28 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2010-11-27 00:12:28 -0500 |
commit | 500759cea12cc08abf5af2bdb1bab1eff72d8542 (patch) | |
tree | b9da89a572deda048a106a7538824263ac496d72 /sha256_4way.c | |
parent | a7518360addc6d3365c8dc4895614f98e084535d (diff) |
s/__SSE__/__SSE2__/
Diffstat (limited to 'sha256_4way.c')
-rw-r--r-- | sha256_4way.c | 4 |
1 files changed, 2 insertions, 2 deletions
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__ */ |