< prev index next >

src/share/vm/runtime/vm_version.cpp

Print this page
rev 12087 : 8166560: [s390] Basic enablement of s390 port.

*** 168,186 **** #elif defined(PPC64) #if defined(VM_LITTLE_ENDIAN) #define CPU "ppc64le" #else #define CPU "ppc64" ! #endif #else ! #define CPU IA32_ONLY("x86") \ ! IA64_ONLY("ia64") \ AMD64_ONLY("amd64") \ ! AARCH64_ONLY("aarch64") \ SPARC_ONLY("sparc") ! #endif // ! #endif const char *Abstract_VM_Version::vm_platform_string() { return OS "-" CPU; } --- 168,187 ---- #elif defined(PPC64) #if defined(VM_LITTLE_ENDIAN) #define CPU "ppc64le" #else #define CPU "ppc64" ! #endif // PPC64 #else ! #define CPU AARCH64_ONLY("aarch64") \ AMD64_ONLY("amd64") \ ! IA32_ONLY("x86") \ ! IA64_ONLY("ia64") \ ! S390_ONLY("s390") \ SPARC_ONLY("sparc") ! #endif // !ZERO ! #endif // !CPU const char *Abstract_VM_Version::vm_platform_string() { return OS "-" CPU; }
< prev index next >