[kaffe] CVS kaffe (guilhem): Fix for JIT/sparc.
Kaffe CVS
cvs-commits at kaffe.org
Mon Jun 13 05:30:52 PDT 2005
PatchSet 6641
Date: 2005/06/13 12:23:36
Author: guilhem
Branch: HEAD
Tag: (none)
Log:
Fix for JIT/sparc.
* config/sparc/jit.h: FRAMEOBJECT get the real enclosing object (and
not the second one).
Members:
ChangeLog:1.4167->1.4168
config/sparc/jit.h:1.9->1.10
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4167 kaffe/ChangeLog:1.4168
--- kaffe/ChangeLog:1.4167 Sun Jun 12 14:01:55 2005
+++ kaffe/ChangeLog Mon Jun 13 12:23:36 2005
@@ -1,3 +1,8 @@
+2005-06-13 Guilhem Lavaux <guilhem at kaffe.org>
+
+ * config/sparc/jit.h: FRAMEOBJECT get the real enclosing object (and
+ not the second one).
+
2005-06-12 Dalibor Topic <robilad at kaffe.org>
* kaffe/scripts/serialver.in,
Index: kaffe/config/sparc/jit.h
diff -u kaffe/config/sparc/jit.h:1.9 kaffe/config/sparc/jit.h:1.10
--- kaffe/config/sparc/jit.h:1.9 Tue Dec 23 17:26:33 2003
+++ kaffe/config/sparc/jit.h Mon Jun 13 12:23:39 2005
@@ -55,8 +55,7 @@
/* Extract the object argument from given frame */
#define FRAMEOBJECT(obj, f, einfo) \
(obj) = (*(Hjava_lang_Object**) \
- (((exceptionFrame*)(((exceptionFrame*)(f))->retbp) \
- )->retbp+68))
+ (((exceptionFrame*)(f))->retbp+68))
/**/
/* Method dispatch. */
More information about the kaffe
mailing list