changeset in /hg/icedtea: 2007-11-30 Gary Benson <gbenson at redh...

Gary Benson gbenson at redhat.com
Fri Nov 30 08:19:37 PST 2007


changeset 672e322acd28 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=672e322acd28
description:
	2007-11-30  Gary Benson  <gbenson at redhat.com>

		* patches/icedtea-ports.patch
		(hotspot/src/share/vm/utilities/macros.hpp):
		Added PPC32_ONLY, NOT_PPC32, PPC64_ONLY and NOT_PPC64.

diffstat:

2 files changed, 23 insertions(+), 1 deletion(-)
ChangeLog                   |    6 ++++++
patches/icedtea-ports.patch |   18 +++++++++++++++++-

diffs (48 lines):

diff -r a16c1b24fc25 -r 672e322acd28 ChangeLog
--- a/ChangeLog	Fri Nov 30 10:36:04 2007 -0500
+++ b/ChangeLog	Fri Nov 30 11:19:33 2007 -0500
@@ -1,3 +1,9 @@ 2007-11-30  Gary Benson  <gbenson at redhat
+2007-11-30  Gary Benson  <gbenson at redhat.com>
+
+	* patches/icedtea-ports.patch
+	(hotspot/src/share/vm/utilities/macros.hpp):
+	Added PPC32_ONLY, NOT_PPC32, PPC64_ONLY and NOT_PPC64.
+
 2007-11-30  Gary Benson  <gbenson at redhat.com>
 
 	* ports/hotspot/src/cpu/ppc/vm/cppInterpreter_ppc.cpp
diff -r a16c1b24fc25 -r 672e322acd28 patches/icedtea-ports.patch
--- a/patches/icedtea-ports.patch	Fri Nov 30 10:36:04 2007 -0500
+++ b/patches/icedtea-ports.patch	Fri Nov 30 11:19:33 2007 -0500
@@ -260,7 +260,7 @@ diff -ru openjdk.orig/hotspot/src/share/
 diff -ru openjdk.orig/hotspot/src/share/vm/utilities/macros.hpp openjdk/hotspot/src/share/vm/utilities/macros.hpp
 --- openjdk.orig/hotspot/src/share/vm/utilities/macros.hpp	2007-11-08 11:34:54.000000000 +0000
 +++ openjdk/hotspot/src/share/vm/utilities/macros.hpp	2007-11-08 11:36:15.000000000 +0000
-@@ -176,6 +176,14 @@
+@@ -176,6 +176,30 @@
  #define NOT_SPARC(code) code
  #endif
  
@@ -270,6 +270,22 @@ diff -ru openjdk.orig/hotspot/src/share/
 +#else
 +#define PPC_ONLY(code)
 +#define NOT_PPC(code) code
++#endif
++
++#ifdef PPC32
++#define PPC32_ONLY(code) code
++#define NOT_PPC32(code)
++#else
++#define PPC32_ONLY(code)
++#define NOT_PPC32(code) code
++#endif
++
++#ifdef PPC64
++#define PPC64_ONLY(code) code
++#define NOT_PPC64(code)
++#else
++#define PPC64_ONLY(code)
++#define NOT_PPC64(code) code
 +#endif
 +
  #define FIX_THIS(code) report_assertion_failure("FIX_THIS",__FILE__, __LINE__, "")



More information about the distro-pkg-dev mailing list