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]
Other format: [Raw text]

Re: [patch] c-decl.c: Remove local variables that are set but not used.


 > -  ptr_ftype_void = build_function_type (ptr_type_node, endlink);
 > -  ptr_ftype_ptr
 > -    = build_function_type (ptr_type_node,
 > -			      tree_cons (NULL_TREE, ptr_type_node,
 > -  endlink));
 > +  build_function_type (ptr_type_node, endlink);
 > +  build_function_type (ptr_type_node,
 > +		              tree_cons (NULL_TREE, ptr_type_node, endlink));

Can't we get rid of the calls to build_function_type?

--
Kaveh R. Ghazi			ghazi@caip.rutgers.edu


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