aboutsummaryrefslogtreecommitdiff
path: root/util/cpuid.c
diff options
context:
space:
mode:
authorfbarchard@google.com <fbarchard@google.com@16f28f9a-4ce2-e073-06de-1de4eb20be90>2013-03-28 09:33:26 +0000
committerfbarchard@google.com <fbarchard@google.com@16f28f9a-4ce2-e073-06de-1de4eb20be90>2013-03-28 09:33:26 +0000
commit8c9de166a11222d6aa38deb12449b30451d2eca5 (patch)
tree3e84f3295d1a1a20e63f490b7e8bc16b0b2e3775 /util/cpuid.c
parent4e0d7cc2c60e8aa85954c48927c6be08ee2b9db4 (diff)
downloadlibyuv-8c9de166a11222d6aa38deb12449b30451d2eca5.tar.gz
ERMS
BUG=none TEST=none Review URL: https://webrtc-codereview.appspot.com/1265004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@625 16f28f9a-4ce2-e073-06de-1de4eb20be90
Diffstat (limited to 'util/cpuid.c')
-rw-r--r--util/cpuid.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/cpuid.c b/util/cpuid.c
index 6f2a1fda..751405c5 100644
--- a/util/cpuid.c
+++ b/util/cpuid.c
@@ -22,6 +22,7 @@ int main(int argc, const char* argv[]) {
int has_arm = TestCpuFlag(kCpuHasARM);
int has_avx = TestCpuFlag(kCpuHasAVX);
int has_avx2 = TestCpuFlag(kCpuHasAVX2);
+ int has_erms = TestCpuFlag(kCpuHasERMS);
int has_mips = TestCpuFlag(kCpuHasMIPS);
int has_mips_dsp = TestCpuFlag(kCpuHasMIPS_DSP);
int has_mips_dspr2 = TestCpuFlag(kCpuHasMIPS_DSPR2);
@@ -70,6 +71,7 @@ int main(int argc, const char* argv[]) {
printf("Has ARM %x\n", has_arm);
printf("Has AVX %x\n", has_avx);
printf("Has AVX2 %x\n", has_avx2);
+ printf("Has ERMS %x\n", has_erms);
printf("Has MIPS %x\n", has_mips);
printf("Has MIPS DSP %x\n", has_mips_dsp);
printf("Has MIPS DSPR2 %x\n", has_mips_dspr2);