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

Unified Diff: runtime/bin/platform.h

Issue 2858623002: Remove MIPS support (Closed)
Patch Set: Merge and cleanup Created 3 years, 6 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 | « runtime/BUILD.gn ('k') | runtime/observatory/tests/service/service.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/platform.h
diff --git a/runtime/bin/platform.h b/runtime/bin/platform.h
index 674d94f16df7e3bed86cf5e086d863592bb31058..dfe9cde9a06699623da499c9c776cddb21563a3e 100644
--- a/runtime/bin/platform.h
+++ b/runtime/bin/platform.h
@@ -25,7 +25,7 @@ class Platform {
static const char* OperatingSystem();
// Returns the architecture name of the processor the VM is running on
- // (ia32, x64, arm, arm64, or mips).
+ // (ia32, x64, arm, or arm64).
static const char* HostArchitecture() {
#if defined(HOST_ARCH_ARM)
return "arm";
@@ -33,8 +33,6 @@ class Platform {
return "arm64";
#elif defined(HOST_ARCH_IA32)
return "ia32";
-#elif defined(HOST_ARCH_MIPS)
- return "mips";
#elif defined(HOST_ARCH_X64)
return "x64";
#else
« no previous file with comments | « runtime/BUILD.gn ('k') | runtime/observatory/tests/service/service.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698