+2019-02-28 Jakub Jelinek <jakub@redhat.com>
+
+ PR c/89525
+ * c-typeck.c (convert_arguments): Call inform_declaration only if
+ the previous warning_at call returned true.
+
2019-02-22 Thomas Schwinge <thomas@codesourcery.com>
* c-parser.c (c_parser_oacc_shape_clause): Add loc formal
if (builtin_type == void_type_node)
{
- warning_at (loc, OPT_Wbuiltin_declaration_mismatch,
- "too many arguments to built-in function %qE "
- "expecting %d",
- function, parmnum);
-
- inform_declaration (fundecl);
+ if (warning_at (loc, OPT_Wbuiltin_declaration_mismatch,
+ "too many arguments to built-in function %qE "
+ "expecting %d", function, parmnum))
+ inform_declaration (fundecl);
builtin_typetail = NULL_TREE;
}
for (tree t = builtin_typetail; t; t = TREE_CHAIN (t))
++nargs;
- warning_at (loc, OPT_Wbuiltin_declaration_mismatch,
- "too few arguments to built-in function %qE expecting %u",
- function, nargs - 1);
- inform_declaration (fundecl);
+ if (warning_at (loc, OPT_Wbuiltin_declaration_mismatch,
+ "too few arguments to built-in function %qE "
+ "expecting %u", function, nargs - 1))
+ inform_declaration (fundecl);
}
return error_args ? -1 : (int) parmnum;