changeset 1694:b13a59d17b81

2009-09-08 Gary Benson <gbenson@redhat.com> * ports/hotspot/src/os_cpu/linux_zero/vm/thread_linux_zero.hpp (JavaThread::pop_zero_frame): Tweak.
author Gary Benson <gbenson@redhat.com>
date Tue, 08 Sep 2009 11:46:08 +0100
parents 61433ed873cf
children 175266c8ad02
files ChangeLog ports/hotspot/src/os_cpu/linux_zero/vm/thread_linux_zero.hpp
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Sep 04 07:14:31 2009 -0400
+++ b/ChangeLog	Tue Sep 08 11:46:08 2009 +0100
@@ -1,3 +1,8 @@
+2009-09-08  Gary Benson  <gbenson@redhat.com>
+
+	* ports/hotspot/src/os_cpu/linux_zero/vm/thread_linux_zero.hpp
+	(JavaThread::pop_zero_frame): Tweak.
+
 2009-09-04  Gary Benson  <gbenson@redhat.com>
 
 	* ports/hotspot/src/cpu/zero/vm/entry_zero.hpp
--- a/ports/hotspot/src/os_cpu/linux_zero/vm/thread_linux_zero.hpp	Fri Sep 04 07:14:31 2009 -0400
+++ b/ports/hotspot/src/os_cpu/linux_zero/vm/thread_linux_zero.hpp	Tue Sep 08 11:46:08 2009 +0100
@@ -45,7 +45,7 @@
     _top_zero_frame = frame;
   }
   void pop_zero_frame() {
-    _zero_stack.set_sp((intptr_t *) _top_zero_frame + 1);
+    zero_stack()->set_sp((intptr_t *) _top_zero_frame + 1);
     _top_zero_frame = *(ZeroFrame **) _top_zero_frame;
   }