Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(644)

Unified Diff: unit_test/cpu_test.cc

Issue 1677633002: rename MIPS_DSPR2 to DSPR2 for consistency (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: git cl try Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/scale_mips.cc ('k') | util/cpuid.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: unit_test/cpu_test.cc
diff --git a/unit_test/cpu_test.cc b/unit_test/cpu_test.cc
index 020205a3c3f5c21bcf72da2f77ca722f8719ecd6..5933ee442d87bcbbd86202579d2ea78061901fe9 100644
--- a/unit_test/cpu_test.cc
+++ b/unit_test/cpu_test.cc
@@ -48,8 +48,8 @@ TEST_F(LibYUVBaseTest, TestCpuHas) {
printf("Has AVX3 %x\n", has_avx3);
int has_mips = TestCpuFlag(kCpuHasMIPS);
printf("Has MIPS %x\n", has_mips);
- int has_mips_dspr2 = TestCpuFlag(kCpuHasMIPS_DSPR2);
- printf("Has MIPS DSPR2 %x\n", has_mips_dspr2);
+ int has_dspr2 = TestCpuFlag(kCpuHasDSPR2);
+ printf("Has DSPR2 %x\n", has_dspr2);
}
TEST_F(LibYUVBaseTest, TestCpuCompilerEnabled) {
« no previous file with comments | « source/scale_mips.cc ('k') | util/cpuid.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698