diff mbox

ObjC/ObjC++: fixed 'too many arguments to method xxx' error

Message ID 1284297781.281115636@192.168.2.229
State New
Headers show

Commit Message

Nicola Pero Sept. 12, 2010, 1:23 p.m. UTC
> Please include the ChangeLog entries with patch submissions and generate 
> diffs with "-p".  You did neither, so your patch does not usefully 
> indicate what functions are being changed.

Joseph,

apologies for that.  I generated the diff again as requested (below). :-)

(I used

 svn diff --diff-cmd diff -x "-u -p"  gcc > patch

hope that's good)

Is it recommended to send patches as text/plain attachments, or to copy/paste into
the email body ?  I'm assuming small ones are better "inline", while bigger ones should
go into attachments ?

Thanks

Comments

Eric Botcazou Sept. 12, 2010, 5:28 p.m. UTC | #1
> +2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
> +
> +       * c-typeck.c (convert_arguments): Use warning 'too many arguments
> +       to method [methodname]' for an Objective-C method instead of the
> +       less satisfactory 'too many arguments to function' (with no method
> +       name).
> +       * cp/typeck.c (warn_args_num): Same change for Objective-C++.

ChangeLog for cp/ changes must go into cp/ChangeLog.
Joseph Myers Sept. 12, 2010, 6:41 p.m. UTC | #2
On Sun, 12 Sep 2010, Nicola Pero wrote:

> 
> > Please include the ChangeLog entries with patch submissions and generate 
> > diffs with "-p".  You did neither, so your patch does not usefully 
> > indicate what functions are being changed.
> 
> Joseph,
> 
> apologies for that.  I generated the diff again as requested (below). :-)

Thanks.  The c-typeck.c changes are OK.
diff mbox

Patch

Index: gcc/ChangeLog
===================================================================
--- gcc/ChangeLog       (revision 164229)
+++ gcc/ChangeLog       (working copy)
@@ -1,3 +1,11 @@ 
+2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
+
+       * c-typeck.c (convert_arguments): Use warning 'too many arguments
+       to method [methodname]' for an Objective-C method instead of the
+       less satisfactory 'too many arguments to function' (with no method
+       name).
+       * cp/typeck.c (warn_args_num): Same change for Objective-C++.
+
 2010-09-10  Jan Hubicka  <jh@suse.cz>
 
        * tree-ssa-ccp.c (fold_const_aggregate_ref): Do not check STATIC flag.
Index: gcc/testsuite/ChangeLog
===================================================================
--- gcc/testsuite/ChangeLog     (revision 164229)
+++ gcc/testsuite/ChangeLog     (working copy)
@@ -1,3 +1,16 @@ 
+2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
+
+       * obj-c++.dg/too-many-args.mm: New file.
+
+2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
+
+       Merge from 'apple/trunk' branch on FSF servers.
+
+       2006-03-27 Fariborz Jahanian <fjahanian@apple.com>
+
+       Radar 4491608
+       * objc.dg/too-many-args.m: New
+
 2010-09-11  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
 
        * gfortran.dg/promotion.f90: Fix options.
Index: gcc/testsuite/objc.dg/too-many-args.m
===================================================================
--- gcc/testsuite/objc.dg/too-many-args.m       (revision 0)
+++ gcc/testsuite/objc.dg/too-many-args.m       (revision 0)
@@ -0,0 +1,10 @@ 
+/* { dg-do compile } */
+
+@interface SomeClass
++ method:(int)foo;
+@end
+
+int main(void) {
+    [SomeClass method:3, 4];   /* { dg-error "too many arguments to method \\'method:\\'" } */
+    return 0;
+}
Index: gcc/testsuite/obj-c++.dg/too-many-args.mm
===================================================================
--- gcc/testsuite/obj-c++.dg/too-many-args.mm   (revision 0)
+++ gcc/testsuite/obj-c++.dg/too-many-args.mm   (revision 0)
@@ -0,0 +1,10 @@ 
+/* { dg-do compile } */
+
+@interface SomeClass
++ method:(int)foo;
+@end
+
+int main(void) {
+    [SomeClass method:3, 4];   /* { dg-error "too many arguments to method \\'method:\\'" } */
+    return 0;
+}
Index: gcc/cp/typeck.c
===================================================================
--- gcc/cp/typeck.c     (revision 164229)
+++ gcc/cp/typeck.c     (working copy)
@@ -3428,8 +3428,17 @@  warn_args_num (location_t loc, tree fnde
              "declared here");
     }
   else
-    error_at (loc, too_many_p ? G_("too many arguments to function")
-                             : G_("too few arguments to function"));
+    {
+      if (c_dialect_objc ()  &&  objc_message_selector ())
+       error_at (loc,
+                 too_many_p 
+                 ? G_("too many arguments to method %q#D")
+                 : G_("too few arguments to method %q#D"),
+                 objc_message_selector ());
+      else
+       error_at (loc, too_many_p ? G_("too many arguments to function")
+                                 : G_("too few arguments to function"));
+    }
 }
 
 /* Convert the actual parameter expressions in the list VALUES to the
Index: gcc/c-typeck.c
===================================================================
--- gcc/c-typeck.c      (revision 164229)
+++ gcc/c-typeck.c      (working copy)
@@ -2897,8 +2897,13 @@  convert_arguments (tree typelist, VEC(tr
 
       if (type == void_type_node)
        {
-         error_at (input_location,
-                   "too many arguments to function %qE", function);
+         if (selector)
+           error_at (input_location,
+                     "too many arguments to method %qE", selector);
+         else
+           error_at (input_location,
+                     "too many arguments to function %qE", function);
+
          if (fundecl && !DECL_BUILT_IN (fundecl))
            inform (DECL_SOURCE_LOCATION (fundecl), "declared here");
          return parmnum;