src/share/vm/runtime/vm_version.cpp

changeset 9642
8fb26a074b20
parent 9637
eef07cd490d4
child 9931
fd44df5e3bc3
     1.1 --- a/src/share/vm/runtime/vm_version.cpp	Mon Jul 22 15:51:01 2019 +0800
     1.2 +++ b/src/share/vm/runtime/vm_version.cpp	Mon Jul 22 17:58:23 2019 +0800
     1.3 @@ -199,11 +199,16 @@
     1.4  #else
     1.5  #define CPU      "ppc64"
     1.6  #endif
     1.7 +#elif defined(MIPS64)
     1.8 +#if defined(VM_LITTLE_ENDIAN)
     1.9 +#define CPU      "mips64el"
    1.10 +#else
    1.11 +#define CPU      "mips64"
    1.12 +#endif
    1.13  #else
    1.14  #define CPU      IA32_ONLY("x86")                \
    1.15                   IA64_ONLY("ia64")               \
    1.16                   AMD64_ONLY("amd64")             \
    1.17 -                 MIPS64_ONLY("mips64")           \
    1.18                   SPARC_ONLY("sparc")
    1.19  #endif // ZERO
    1.20  #endif

mercurial