hotspot/src/share/vm/runtime/vm_version.cpp
changeset 42062 473286891dd8
parent 40015 524230a0f4ca
child 42650 1f304d0c888b
--- a/hotspot/src/share/vm/runtime/vm_version.cpp	Tue Oct 25 16:42:28 2016 +0200
+++ b/hotspot/src/share/vm/runtime/vm_version.cpp	Thu Sep 22 18:23:15 2016 +0200
@@ -170,15 +170,16 @@
 #define CPU      "ppc64le"
 #else
 #define CPU      "ppc64"
-#endif
+#endif // PPC64
 #else
-#define CPU      IA32_ONLY("x86")                \
-                 IA64_ONLY("ia64")               \
+#define CPU      AARCH64_ONLY("aarch64")         \
                  AMD64_ONLY("amd64")             \
-                 AARCH64_ONLY("aarch64")         \
+                 IA32_ONLY("x86")                \
+                 IA64_ONLY("ia64")               \
+                 S390_ONLY("s390")               \
                  SPARC_ONLY("sparc")
-#endif //
-#endif
+#endif // !ZERO
+#endif // !CPU
 
 const char *Abstract_VM_Version::vm_platform_string() {
   return OS "-" CPU;