From ebb56f57edd46175798c2a70b6dd88bd6ce7f877 Mon Sep 17 00:00:00 2001 From: weidai Date: Mon, 13 Aug 2007 23:53:09 +0000 Subject: 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 --- validat1.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'validat1.cpp') 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) { -- cgit v1.2.1