diff src/cpu/sparc/vm/jniTypes_sparc.hpp @ 8151:b8f261ba79c6

Minimize diff to plain HotSpot version.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Mar 2013 21:00:29 +0100
parents a7a93887b4c4
children
line wrap: on
line diff
--- a/src/cpu/sparc/vm/jniTypes_sparc.hpp	Thu Mar 07 15:17:51 2013 +0100
+++ b/src/cpu/sparc/vm/jniTypes_sparc.hpp	Thu Mar 07 21:00:29 2013 +0100
@@ -112,25 +112,6 @@
                                                           return *(jdouble *)&jl; }
 #endif
 
-  static inline jint    get_int   (intptr_t *from, int& pos) {
-    return get_int(from + pos++);
-  }
-  static inline jlong   get_long  (intptr_t *from, int& pos) {
-    jlong result = get_long(from + pos);
-    pos += 2;
-    return result;
-  }
-  static inline oop     get_obj   (intptr_t *from, int& pos) {
-    return get_obj(from + pos++);
-  }
-  static inline jfloat  get_float (intptr_t *from, int& pos) {
-    return get_float(from + pos++);
-  }
-  static inline jdouble get_double(intptr_t *from, int& pos) {
-    jdouble result = get_double(from + pos);
-    pos += 2;
-    return result;
-  }
 };
 
 #endif // CPU_SPARC_VM_JNITYPES_SPARC_HPP