public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH C] Fix pr44517
@ 2010-06-22  8:14 Shujing Zhao
  2010-06-22  8:49 ` Manuel López-Ibáñez
  2010-06-22 13:36 ` Joseph S. Myers
  0 siblings, 2 replies; 14+ messages in thread
From: Shujing Zhao @ 2010-06-22  8:14 UTC (permalink / raw)
  To: GCC Patches
  Cc: Joseph S. Myers, Manuel López-Ibáñez, Paolo Carlini

[-- Attachment #1: Type: text/plain, Size: 445 bytes --]

Hi,

This patch tries to improve diagnostic for wrong type name in function 
declaration. It also changes the algorithm of function 
c_parser_parms_list_declarator. If one of parameter declaration is wrong, 
c_parser_parms_list_declarator would return NULL, not an empty parameter 
information struct. A test case is added to test this change.

Bootstrapped and tested on i686-pc-linux-gnu with enabled c, objc and c++.
Is it ok?

Thanks
Pearly

[-- Attachment #2: ChangeLog --]
[-- Type: text/plain, Size: 438 bytes --]

gcc/
2010-06-21  Shujing Zhao  <pearly.zhao@oracle.com>

	PR c/44517
	* c-parser.c (c_parser_parms_list_declarator): Return NULL if the
	parameters are not good.
	(c_parser_parameter_declaration): Error unknown type name if the
	parameter can't start declaration specifiers.

gcc/testsuite/
2010-06-22  Shujing Zhao  <pearly.zhao@oracle.com>

	PR c/44517
	* gcc.dg/pr44517.c: New.
	* gcc.dg/noncompile/990416-1.c: Adjust expected error.


[-- Attachment #3: pr44517.patch --]
[-- Type: text/x-patch, Size: 4090 bytes --]

Index: c-parser.c
===================================================================
--- c-parser.c	(revision 160889)
+++ c-parser.c	(working copy)
@@ -2706,7 +2706,7 @@ c_parser_parms_declarator (c_parser *par
 static struct c_arg_info *
 c_parser_parms_list_declarator (c_parser *parser, tree attrs)
 {
-  bool good_parm = false;
+  bool good_parm = true;
   /* ??? Following the old parser, forward parameter declarations may
      use abstract declarators, and if no real parameter declarations
      follow the forward declarations then this is not diagnosed.  Also
@@ -2758,11 +2758,10 @@ c_parser_parms_list_declarator (c_parser
       /* Parse a parameter.  */
       struct c_parm *parm = c_parser_parameter_declaration (parser, attrs);
       attrs = NULL_TREE;
-      if (parm != NULL)
-	{
-	  good_parm = true;
-	  push_parm_decl (parm);
-	}
+      if (parm == NULL)
+	good_parm = false;
+      else
+	push_parm_decl (parm);
       if (c_parser_next_token_is (parser, CPP_SEMICOLON))
 	{
 	  tree new_attrs;
@@ -2777,17 +2776,7 @@ c_parser_parms_list_declarator (c_parser
 	  if (good_parm)
 	    return get_parm_info (false);
 	  else
-	    {
-	      struct c_arg_info *ret
-		= XOBNEW (&parser_obstack, struct c_arg_info);
-	      ret->parms = 0;
-	      ret->tags = 0;
-	      ret->types = 0;
-	      ret->others = 0;
-	      ret->pending_sizes = 0;
-	      ret->had_vla_unspec = 0;
-	      return ret;
-	    }
+	    return NULL;
 	}
       if (!c_parser_require (parser, CPP_COMMA,
 			     "expected %<;%>, %<,%> or %<)%>"))
@@ -2805,17 +2794,7 @@ c_parser_parms_list_declarator (c_parser
 	      if (good_parm)
 		return get_parm_info (true);
 	      else
-		{
-		  struct c_arg_info *ret
-		    = XOBNEW (&parser_obstack, struct c_arg_info);
-		  ret->parms = 0;
-		  ret->tags = 0;
-		  ret->types = 0;
-		  ret->others = 0;
-		  ret->pending_sizes = 0;
-		  ret->had_vla_unspec = 0;
-		  return ret;
-		}
+		return false;
 	    }
 	  else
 	    {
@@ -2843,8 +2822,12 @@ c_parser_parameter_declaration (c_parser
     {
       /* ??? In some Objective-C cases '...' isn't applicable so there
 	 should be a different message.  */
-      c_parser_error (parser,
-		      "expected declaration specifiers or %<...%>");
+      c_token *token = c_parser_peek_token (parser);
+      if (parser->error)
+	return NULL;
+      parser->error = true;
+      c_parser_set_source_position_from_token (token);
+      error ("unknown type name %qE", token->value);
       c_parser_skip_to_end_of_parameter (parser);
       return NULL;
     }
Index: testsuite/gcc.dg/pr44517.c
===================================================================
--- testsuite/gcc.dg/pr44517.c	(revision 0)
+++ testsuite/gcc.dg/pr44517.c	(revision 0)
@@ -0,0 +1,10 @@
+/* PR c/44517 */
+/* { dg-do compile } */
+/* { dg-options "" } */
+int foo(int x, pid_t y, long z, in t) {  /* { dg-error "unknown type name.*pid_t|unknown type name.*in" } */
+  return x + y + z + t;
+}
+
+int bar(int x, lon y, long z, ...){ /* { dg-error "unknown type name" } */
+  return;
+}
Index: testsuite/gcc.dg/noncompile/990416-1.c
===================================================================
--- testsuite/gcc.dg/noncompile/990416-1.c	(revision 160889)
+++ testsuite/gcc.dg/noncompile/990416-1.c	(working copy)
@@ -2,11 +2,11 @@ extern void *memcpy (void *, const void 
 typedef int word_type;
    
 static void
-copy_reg (unsigned int reg, frame_state *udata,	/* { dg-error "parse|syntax|expected" } */
-	  frame_state *target_udata)	/* { dg-error "expected" } */
+copy_reg (unsigned int reg, frame_state *udata,	/* { dg-error "unknown type name" } */
+	  frame_state *target_udata)	/* { dg-error "unknown type name" } */
 {  
-  word_type *preg = get_reg_addr (reg, udata, 0);	/* { dg-error "undeclared|function|without a cast" } */
-  word_type *ptreg = get_reg_addr (reg, target_udata, 0); /* { dg-error "undeclared|without a cast" } */
+  word_type *preg = ge_reg_addr (reg, udata, 0);
+  word_type *ptreg = ge_reg_addr (reg, target_udata, 0);
    
   memcpy (ptreg, preg, __builtin_dwarf_reg_size (reg));
 }

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2010-06-25  8:01 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-22  8:14 [PATCH C] Fix pr44517 Shujing Zhao
2010-06-22  8:49 ` Manuel López-Ibáñez
2010-06-22  9:57   ` Shujing Zhao
2010-06-22 10:00     ` Manuel López-Ibáñez
2010-06-22 13:36 ` Joseph S. Myers
2010-06-23  9:17   ` Shujing Zhao
2010-06-23  9:31     ` Manuel López-Ibáñez
2010-06-23  9:55       ` Shujing Zhao
2010-06-23 12:24     ` Joseph S. Myers
2010-06-23 12:28       ` Manuel López-Ibáñez
2010-06-23 12:41         ` Joseph S. Myers
2010-06-24 10:50           ` Shujing Zhao
2010-06-24 11:56             ` Joseph S. Myers
2010-06-25 10:02               ` Shujing Zhao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).