summaryrefslogtreecommitdiff
path: root/validat1.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-08-13 23:53:09 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-08-13 23:53:09 +0000
commitebb56f57edd46175798c2a70b6dd88bd6ce7f877 (patch)
treef096ef9661b273e6059f26284dd133c439a528b4 /validat1.cpp
parent3d0cf61bb4132e0ade13f86a9af16b2702aab524 (diff)
downloadcryptopp-ebb56f57edd46175798c2a70b6dd88bd6ce7f877.tar.gz
fixed Whirlpool crash on Pentium 2 machines
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@385 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'validat1.cpp')
-rw-r--r--validat1.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/validat1.cpp b/validat1.cpp
index 616b92c..365fca5 100644
--- a/validat1.cpp
+++ b/validat1.cpp
@@ -229,6 +229,7 @@ bool TestSettings()
cout << endl;
bool hasMMX = HasMMX();
+ bool hasISSE = HasISSE();
bool hasSSE2 = HasSSE2();
bool hasSSSE3 = HasSSSE3();
bool isP4 = IsP4();
@@ -242,7 +243,7 @@ bool TestSettings()
else
cout << "passed: ";
- cout << "hasMMX == " << hasMMX << ", hasSSE2 == " << hasSSE2 << ", hasSSSE3 == " << hasSSSE3 << ", isP4 == " << isP4 << ", cacheLineSize == " << cacheLineSize;
+ cout << "hasMMX == " << hasMMX << ", hasISSE == " << hasISSE << ", hasSSE2 == " << hasSSE2 << ", hasSSSE3 == " << hasSSSE3 << ", isP4 == " << isP4 << ", cacheLineSize == " << cacheLineSize;
if (!pass)
{