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

Gary Benson gbenson at redhat.com
Fri Nov 30 08:25:39 PST 2007


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

		* ports/hotspot/src/cpu/ppc/vm/assembler_ppc.hpp
		(Rthread, Rmethod, Rlocals): Reorder so Rthread is last.

diffstat:

2 files changed, 8 insertions(+), 3 deletions(-)
ChangeLog                                      |    5 +++++
ports/hotspot/src/cpu/ppc/vm/assembler_ppc.hpp |    6 +++---

diffs (28 lines):

diff -r 672e322acd28 -r 62c402e6e198 ChangeLog
--- a/ChangeLog	Fri Nov 30 11:19:33 2007 -0500
+++ b/ChangeLog	Fri Nov 30 11:25:24 2007 -0500
@@ -1,3 +1,8 @@ 2007-11-30  Gary Benson  <gbenson at redhat
+2007-11-30  Gary Benson  <gbenson at redhat.com>
+
+	* ports/hotspot/src/cpu/ppc/vm/assembler_ppc.hpp
+	(Rthread, Rmethod, Rlocals): Reorder so Rthread is last.
+
 2007-11-30  Gary Benson  <gbenson at redhat.com>
 
 	* patches/icedtea-ports.patch
diff -r 672e322acd28 -r 62c402e6e198 ports/hotspot/src/cpu/ppc/vm/assembler_ppc.hpp
--- a/ports/hotspot/src/cpu/ppc/vm/assembler_ppc.hpp	Fri Nov 30 11:19:33 2007 -0500
+++ b/ports/hotspot/src/cpu/ppc/vm/assembler_ppc.hpp	Fri Nov 30 11:25:24 2007 -0500
@@ -27,9 +27,9 @@
 
 // Non-volatile registers used by the interpreter
 
-REGISTER_DECLARATION(Register, Rmethod, r31);
-REGISTER_DECLARATION(Register, Rlocals, r30);
-REGISTER_DECLARATION(Register, Rthread, r29);
+REGISTER_DECLARATION(Register, Rthread, r31);
+REGISTER_DECLARATION(Register, Rmethod, r30);
+REGISTER_DECLARATION(Register, Rlocals, r29);
 
 
 // Address is an abstraction used to represent a memory location



More information about the distro-pkg-dev mailing list