diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-16 16:27:19 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-16 16:27:19 +0000 |
commit | d8fff3ca9b99a853557ccd9e5d78510d4a39e22d (patch) | |
tree | f8e6ed92c4715a9964e9461e0650bbca33471270 /gcc/cp | |
parent | 33ea6cc075fce69981316855b3ebe9e666489df9 (diff) | |
download | gcc-d8fff3ca9b99a853557ccd9e5d78510d4a39e22d.tar.gz |
libjava:
2004-04-15 Bryce McKinlay <mckinlay@redhat.com>
* prims.cc (_Jv_AllocObject): Remove `size' argument.
(_Jv_AllocObjectNoFinalizer): Likewise.
(_Jv_AllocObjectNoInitNoFinalizer): Likewise.
(_Jv_AllocPtrFreeObject): Likewise.
(_Jv_AllocString): Moved from natString.cc. Call collector interface
directly even in the JVMPI case.
* gcj/cni.h (JvAllocObject): Remove `size' argument from
_Jv_AllocObject calls.
* gcj/javaprims.h: Update prototypes.
* gnu/gcj/natCore.cc (_Jv_create_core): Use `new', not
_Jv_AllocObject.
* java/lang/Class.h: Update _Jv_AllocObject friend prototype.
* java/lang/natString.cc (_Jv_AllocString): Move to prims.cc.
gcc/cp:
2004-04-15 Bryce McKinlay <mckinlay@redhat.com>
* init.c (build_new_1): Don't use type size argument for Java
_Jv_AllocObject call.
gcc/java:
2004-04-15 Bryce McKinlay <mckinlay@redhat.com>
* expr.c (expand_java_NEW): Don't use size argument for
_Jv_AllocObject calls.
* parse.y (patch_invoke): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80754 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/init.c | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index c0b57257caa..a3a2c6abea5 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2004-04-15 Bryce McKinlay <mckinlay@redhat.com> + + * init.c (build_new_1): Don't use type size argument for Java + _Jv_AllocObject call. + 2004-04-09 Danny Smith <dannysmith@users.sourceforge.net> * method.c (make_alias_for_thunk): Remove preprocessor guard on diff --git a/gcc/cp/init.c b/gcc/cp/init.c index e9142b775e0..5a64ed51bad 100644 --- a/gcc/cp/init.c +++ b/gcc/cp/init.c @@ -2019,7 +2019,6 @@ build_new_1 (tree exp) { tree class_addr, alloc_decl; tree class_decl = build_java_class_ref (true_type); - tree class_size = size_in_bytes (true_type); static const char alloc_name[] = "_Jv_AllocObject"; use_java_new = 1; if (!get_global_value_if_present (get_identifier (alloc_name), @@ -2037,8 +2036,7 @@ build_new_1 (tree exp) class_addr = build1 (ADDR_EXPR, jclass_node, class_decl); alloc_call = (build_function_call (alloc_decl, - tree_cons (NULL_TREE, class_addr, - build_tree_list (NULL_TREE, class_size)))); + build_tree_list (NULL_TREE, class_addr))); } else { |