summaryrefslogtreecommitdiff
path: root/libjava/include
diff options
context:
space:
mode:
authorBryce McKinlay <mckinlay@redhat.com>2004-07-24 01:17:29 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2004-07-24 02:17:29 +0100
commitffe4e0376f66ff4db3a098f9c41fd8c8dd3c5ac7 (patch)
tree2a0020f7a0787de7e1df677eb515c257dc704d33 /libjava/include
parentbbc630f5d95b858bcea31cec1ce2f1d25c6b6fc6 (diff)
downloadgcc-ffe4e0376f66ff4db3a098f9c41fd8c8dd3c5ac7.tar.gz
prims.cc (_Jv_InitPrimClass): Don't create an array class.
2004-07-23 Bryce McKinlay <mckinlay@redhat.com> * prims.cc (_Jv_InitPrimClass): Don't create an array class. (_Jv_CreateJavaVM): Don't pass array vtable parameter to _Jv_InitPrimClass. (DECLARE_PRIM_TYPE): Don't declare array vtables. * include/jvm.h (struct _Jv_ArrayVTable): Removed. * java/lang/Class.h (_Jv_InitPrimClass): Update friend declaration. From-SVN: r85109
Diffstat (limited to 'libjava/include')
-rw-r--r--libjava/include/jvm.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libjava/include/jvm.h b/libjava/include/jvm.h
index 7b5e9842c27..b8592772923 100644
--- a/libjava/include/jvm.h
+++ b/libjava/include/jvm.h
@@ -79,12 +79,6 @@ struct _Jv_VTable
// to keep this up to date by hand.
#define NUM_OBJECT_METHODS 5
-// This structure is the type of an array's vtable.
-struct _Jv_ArrayVTable : public _Jv_VTable
-{
- vtable_elt extra_method[NUM_OBJECT_METHODS - 1];
-};
-
union _Jv_word
{
jobject o;