From bc4721b87e7805c69e5c21b163292a41e3f3e7db Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Fri, 27 Jun 2003 09:05:45 +0000 Subject: c-tree.h (grokfield): Remove unused filename and line parameters. * c-tree.h (grokfield): Remove unused filename and line parameters. * c-decl.c (grokfield): Remove unused filename and line parameters. * c-parse.in (component_decl): Adjust field grokking rules, adjust grokfield calls. (component_declarator): Likewise. (component_notype_declarator): Likewise. * objc/objc-act.c (build_module_descriptor): Adjust grokfield calls. (build_protocol_template, build_method_prototype_list_template, build_method_prototype_template, build_category_template, build_selector_template, build_class_template, build_super_template, build_ivar_template, build_ivar_list_template, build_method_list_template, build_method_template, add_instance_variable): Likewise. From-SVN: r68560 --- gcc/c-decl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gcc/c-decl.c') diff --git a/gcc/c-decl.c b/gcc/c-decl.c index c635a9d..0caed47 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -4811,8 +4811,7 @@ start_struct (enum tree_code code, tree name) are ultimately passed to `build_struct' to make the RECORD_TYPE node. */ tree -grokfield (const char *filename ATTRIBUTE_UNUSED, int line ATTRIBUTE_UNUSED, - tree declarator, tree declspecs, tree width) +grokfield (tree declarator, tree declspecs, tree width) { tree value; -- cgit v1.1