diff options
author | lloyd <[email protected]> | 2009-11-10 05:40:36 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-10 05:40:36 +0000 |
commit | 651c74a712a52095206a9a7dea547c6b56b036d8 (patch) | |
tree | 2ca7a6713a8170bd3b6a207a88ca0e5c5fefb999 /doc/examples | |
parent | efb27197897d2873289bc4e1089385421171076b (diff) |
Make the AES implementation using Intel's AES instruction extension official;
testing with Intel's emulator shows all green.
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/cpuid.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/examples/cpuid.cpp b/doc/examples/cpuid.cpp index 1bdee787c..30ac4d676 100644 --- a/doc/examples/cpuid.cpp +++ b/doc/examples/cpuid.cpp @@ -12,6 +12,7 @@ int main() printf("SSSE3 %d\n", CPUID::has_ssse3()); printf("SSE41 %d\n", CPUID::has_sse41()); printf("SSE42 %d\n", CPUID::has_sse42()); + printf("AES-NI %d\n", CPUID::has_intel_aes()); printf("AltiVec %d\n", CPUID::has_altivec()); } |