This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch] java/parse.c extra param patch...




here's a patch to get rid of the extra signature argument when calling
build_invokeinterface(), this was a recent checkin by Richard Kenner, i'm
was this a typo or mistake Richard?


ani


--- parse.c.orig	Tue Mar  7 12:00:24 2000
+++ parse.c	Tue Mar  7 12:00:38 2000
@@ -10199,7 +10199,7 @@
 
 	case INVOKE_INTERFACE:
 	  dtable = invoke_build_dtable (1, args);
-	  func = build_invokeinterface (dtable, DECL_NAME (method), signature);
+	  func = build_invokeinterface (dtable, DECL_NAME (method));
 	  break;
 
 	default:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]