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