aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/cpuid.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-25 00:26:36 +0000
committerlloyd <[email protected]>2010-06-25 00:26:36 +0000
commit2eadf49b54630897ab66bb382640b4427beb1744 (patch)
tree320b4f48528d7c46f10c506e190034a79d0c518c /doc/examples/cpuid.cpp
parentf1d8cb1f991290404f44710b277b311a92c141d9 (diff)
Add detection support for upcoming AVX
Diffstat (limited to 'doc/examples/cpuid.cpp')
-rw-r--r--doc/examples/cpuid.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/examples/cpuid.cpp b/doc/examples/cpuid.cpp
index 62b565edf..f4d441ba2 100644
--- a/doc/examples/cpuid.cpp
+++ b/doc/examples/cpuid.cpp
@@ -30,6 +30,7 @@ int main()
print_if_feature("SSSE3", CPUID::has_ssse3());
print_if_feature("SSE4.1", CPUID::has_sse41());
print_if_feature("SSE4.2", CPUID::has_sse42());
+ print_if_feature("AVX", CPUID::has_avx());
print_if_feature("AES-NI", CPUID::has_aes_intel());