/hg/icedtea6: 2009-11-25 Gary Benson <gbenson at redhat.com>

gbenson at icedtea.classpath.org gbenson at icedtea.classpath.org
Wed Nov 25 03:36:11 PST 2009


changeset 610a316e54d2 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=610a316e54d2
author: Gary Benson <gbenson at redhat.com>
date: Wed Nov 25 11:41:02 2009 +0000

	2009-11-25 Gary Benson <gbenson at redhat.com>

	 * ports/hotspot/src/cpu/zero/vm/entry_zero.hpp
	(ZeroEntry::entry_point): Removed explicit inline.
	(ZeroEntry::invoke): Likewise. (ZeroEntry::invoke_osr):
	Likewise.


diffstat:

2 files changed, 10 insertions(+), 3 deletions(-)
ChangeLog                                    |    7 +++++++
ports/hotspot/src/cpu/zero/vm/entry_zero.hpp |    6 +++---

diffs (39 lines):

diff -r 7b1be6431ccf -r 610a316e54d2 ChangeLog
--- a/ChangeLog	Mon Nov 23 12:41:55 2009 +0100
+++ b/ChangeLog	Wed Nov 25 11:41:02 2009 +0000
@@ -1,3 +1,10 @@ 2009-11-23  Gary Benson  <gbenson at redhat
+2009-11-25  Gary Benson  <gbenson at redhat.com>
+
+	* ports/hotspot/src/cpu/zero/vm/entry_zero.hpp 
+	(ZeroEntry::entry_point): Removed explicit inline.
+	(ZeroEntry::invoke): Likewise.
+	(ZeroEntry::invoke_osr): Likewise.
+
 2009-11-23  Gary Benson  <gbenson at redhat.com>
 
 	* contrib/jck/compile-native-code.sh: Support s390x.
diff -r 7b1be6431ccf -r 610a316e54d2 ports/hotspot/src/cpu/zero/vm/entry_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/entry_zero.hpp	Mon Nov 23 12:41:55 2009 +0100
+++ b/ports/hotspot/src/cpu/zero/vm/entry_zero.hpp	Wed Nov 25 11:41:02 2009 +0000
@@ -33,7 +33,7 @@ class ZeroEntry {
   address _entry_point;
 
  public:
-  inline address entry_point() const {
+  address entry_point() const {
     return _entry_point;
   }
   void set_entry_point(address entry_point) {
@@ -50,10 +50,10 @@ class ZeroEntry {
                                TRAPS);
 
  public:
-  inline void invoke(methodOop method, TRAPS) const {
+  void invoke(methodOop method, TRAPS) const {
     ((NormalEntryFunc) entry_point())(method, (intptr_t) this, THREAD);
   }
-  inline void invoke_osr(methodOop method, address osr_buf, TRAPS) const {
+  void invoke_osr(methodOop method, address osr_buf, TRAPS) const {
     ((OSREntryFunc) entry_point())(method, osr_buf, (intptr_t) this, THREAD);
   }
 



More information about the distro-pkg-dev mailing list