| 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
|
|
|