summaryrefslogtreecommitdiff
path: root/validat1.cpp
diff options
context:
space:
mode:
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)
{