2003-01-14 Andrew Haley <aph@redhat.com>
authoraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 14 Jan 2003 15:03:16 +0000 (15:03 +0000)
committeraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 14 Jan 2003 15:03:16 +0000 (15:03 +0000)
        * decl.c (java_init_decl_processing): Temporarily back out previous patch.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61286 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/java/ChangeLog
gcc/java/decl.c

index a7d983b..ff3d89d 100644 (file)
@@ -1,5 +1,9 @@
 2003-01-14  Andrew Haley  <aph@redhat.com>
 
+       * decl.c (java_init_decl_processing): Temporarily back out previous patch.
+
+2003-01-14  Andrew Haley  <aph@redhat.com>
+
        * decl.c (java_init_decl_processing): _Jv_NewMultiArray is a
        varargs function -- correct.
 
index c388539..d07f83e 100644 (file)
@@ -810,9 +810,8 @@ java_init_decl_processing (void)
                          0, NOT_BUILT_IN, NULL, NULL_TREE);
   DECL_IS_MALLOC (soft_anewarray_node) = 1;
 
-  /* There is no endlink here because _Jv_NewMultiArray is a varargs
-     function.  */
-  t = tree_cons (NULL_TREE, ptr_type_node, int_type_node);
+  t = tree_cons (NULL_TREE, ptr_type_node,
+                tree_cons (NULL_TREE, int_type_node, endlink));
   soft_multianewarray_node
       = builtin_function ("_Jv_NewMultiArray",
                          build_function_type (ptr_type_node, t),