8067330: ZERO_ARCHDEF incorrectly defined for PPC/PPC64 architectures
authorsgehwolf
Fri, 12 Dec 2014 15:38:57 +0100
changeset 28004 d0931c6d456a
parent 28003 577e534faca4
child 28005 836eb8cb6448
child 28156 6743c7dbf7c6
8067330: ZERO_ARCHDEF incorrectly defined for PPC/PPC64 architectures Reviewed-by: simonis, tbell, erikj
common/autoconf/generated-configure.sh
common/autoconf/platform.m4
--- a/common/autoconf/generated-configure.sh	Fri Dec 12 15:33:10 2014 +0100
+++ b/common/autoconf/generated-configure.sh	Fri Dec 12 15:38:57 2014 +0100
@@ -4329,7 +4329,7 @@
 #CUSTOM_AUTOCONF_INCLUDE
 
 # Do not change or remove the following line, it is needed for consistency checks:
-DATE_WHEN_GENERATED=1418036274
+DATE_WHEN_GENERATED=1418395009
 
 ###############################################################################
 #
@@ -13965,7 +13965,8 @@
 
   # ZERO_ARCHDEF is used to enable architecture-specific code
   case "${OPENJDK_TARGET_CPU}" in
-    ppc*)    ZERO_ARCHDEF=PPC   ;;
+    ppc)     ZERO_ARCHDEF=PPC32 ;;
+    ppc64)   ZERO_ARCHDEF=PPC64 ;;
     s390*)   ZERO_ARCHDEF=S390  ;;
     sparc*)  ZERO_ARCHDEF=SPARC ;;
     x86_64*) ZERO_ARCHDEF=AMD64 ;;
--- a/common/autoconf/platform.m4	Fri Dec 12 15:33:10 2014 +0100
+++ b/common/autoconf/platform.m4	Fri Dec 12 15:38:57 2014 +0100
@@ -367,7 +367,8 @@
 
   # ZERO_ARCHDEF is used to enable architecture-specific code
   case "${OPENJDK_TARGET_CPU}" in
-    ppc*)    ZERO_ARCHDEF=PPC   ;;
+    ppc)     ZERO_ARCHDEF=PPC32 ;;
+    ppc64)   ZERO_ARCHDEF=PPC64 ;;
     s390*)   ZERO_ARCHDEF=S390  ;;
     sparc*)  ZERO_ARCHDEF=SPARC ;;
     x86_64*) ZERO_ARCHDEF=AMD64 ;;