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

Unified Diff: runtime/bin/platform.h

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/bin/platform.h
diff --git a/runtime/bin/platform.h b/runtime/bin/platform.h
index 8fd4ef706a6dcd4f6bd10a84cf0132c9d7869276..8df0b37550ee0c221c87ce3e9a5a465ef9d87f1e 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

Powered by Google App Engine
This is Rietveld 408576698