/hg/icedtea6: Fix PUSH/POP thinko in soft-fp builds.
aph at icedtea.classpath.org
aph at icedtea.classpath.org
Fri Oct 28 08:47:05 PDT 2011
changeset 26bdb437215d in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=26bdb437215d
author: aph
date: Fri Oct 28 11:46:11 2011 -0400
Fix PUSH/POP thinko in soft-fp builds. 2011-10-28 Andrew Haley
<aph at redhat.com>
* arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S
(PUSHD0) Use PUSH, not POP.
diffstat:
ChangeLog | 5 +++++
arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diffs (24 lines):
diff -r 3885df4d608f -r 26bdb437215d ChangeLog
--- a/ChangeLog Fri Oct 28 14:52:52 2011 +0100
+++ b/ChangeLog Fri Oct 28 11:46:11 2011 -0400
@@ -1,3 +1,8 @@
+2011-10-28 Andrew Haley <aph at redhat.com>
+
+ * arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S (PUSHD0)
+ Use PUSH, not POP.
+
2011-10-28 Andrew Haley <aph at redhat.com>
* Makefile.am (ICEDTEA_PATCHES): Add patches/arm-debug.patch.
diff -r 3885df4d608f -r 26bdb437215d arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S
--- a/arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S Fri Oct 28 14:52:52 2011 +0100
+++ b/arm_port/hotspot/src/cpu/zero/vm/cppInterpreter_arm.S Fri Oct 28 11:46:11 2011 -0400
@@ -382,7 +382,7 @@
fsts s0, [stack, #4]
fsts s1, [stack, #8]
#else
- POP r0, r1
+ PUSH r0, r1
#endif
.endm
More information about the distro-pkg-dev
mailing list