changeset in /hg/icedtea: 2007-11-30 Gary Benson <gbenson at redh...
Gary Benson
gbenson at redhat.com
Wed Jan 16 07:09:32 PST 2008
changeset 03dd9b395a5a in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=03dd9b395a5a
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 8abde5724273 -r 03dd9b395a5a 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 8abde5724273 -r 03dd9b395a5a 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