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

Unified Diff: runtime/vm/cpuinfo_linux.cc

Issue 2858623002: Remove MIPS support (Closed)
Patch Set: Rebase Created 3 years, 7 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
Index: runtime/vm/cpuinfo_linux.cc
diff --git a/runtime/vm/cpuinfo_linux.cc b/runtime/vm/cpuinfo_linux.cc
index 232b4091c59fbde308f242abaf18efab9ef4aa17..7299812a0d5fc574afbb5a5f37e1f920a5df37f6 100644
--- a/runtime/vm/cpuinfo_linux.cc
+++ b/runtime/vm/cpuinfo_linux.cc
@@ -45,14 +45,6 @@ void CpuInfo::InitOnce() {
fields_[kCpuInfoArchitecture] = "CPU architecture";
method_ = kCpuInfoSystem;
ProcCpuInfo::InitOnce();
-#elif defined(HOST_ARCH_MIPS)
- fields_[kCpuInfoProcessor] = "system type";
- fields_[kCpuInfoModel] = "cpu model";
- fields_[kCpuInfoHardware] = "cpu model";
- fields_[kCpuInfoFeatures] = "ASEs implemented";
- fields_[kCpuInfoArchitecture] = "CPU architecture";
- method_ = kCpuInfoSystem;
- ProcCpuInfo::InitOnce();
#else
#error Unrecognized target architecture
#endif

Powered by Google App Engine
This is Rietveld 408576698