From 1fd5b7a9dc7beeb44dfaae7a04f0cdf2d9616563 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 17 Aug 2017 08:28:19 -0400 Subject: [PATCH] Reorder cpu features --- validat1.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/validat1.cpp b/validat1.cpp index 3c812da6..d49ff812 100644 --- a/validat1.cpp +++ b/validat1.cpp @@ -363,14 +363,15 @@ bool TestSettings() #elif (CRYPTOPP_BOOL_ARM32 || CRYPTOPP_BOOL_ARM64) bool hasNEON = HasNEON(); - bool hasPMULL = HasPMULL(); bool hasCRC32 = HasCRC32(); + bool hasPMULL = HasPMULL(); bool hasAES = HasAES(); bool hasSHA1 = HasSHA1(); bool hasSHA2 = HasSHA2(); std::cout << "passed: "; - std::cout << "hasNEON == " << hasNEON << ", hasPMULL == " << hasPMULL << ", hasCRC32 == " << hasCRC32 << ", hasAES == " << hasAES << ", hasSHA1 == " << hasSHA1 << ", hasSHA2 == " << hasSHA2 << std::endl; + std::cout << "hasNEON == " << hasNEON << ", hasCRC32 == " << hasCRC32 << ", hasPMULL == " << hasPMULL; + std::cout << ", hasAES == " << hasAES << ", hasSHA1 == " << hasSHA1 << ", hasSHA2 == " << hasSHA2 << std::endl; #endif if (!pass)