Commit 9386194f by Kazu Hirata Committed by Kazu Hirata

c-decl.c (c_init_decl_processing): Remove local variables ptr_ftype_void and ptr_ftype_ptr.

	* c-decl.c (c_init_decl_processing): Remove local variables
	ptr_ftype_void and ptr_ftype_ptr.

From-SVN: r96343
parent fba08921
...@@ -23,6 +23,9 @@ ...@@ -23,6 +23,9 @@
arguments of CALL_EXPR. arguments of CALL_EXPR.
(fold_builtin_1): Update a call to fold_builtin_logarithm. (fold_builtin_1): Update a call to fold_builtin_logarithm.
* c-decl.c (c_init_decl_processing): Remove local variables
ptr_ftype_void and ptr_ftype_ptr.
2005-03-12 Geoffrey Keating <geoffk@apple.com> 2005-03-12 Geoffrey Keating <geoffk@apple.com>
* c-lex.c (c_lex_with_flags): Add parameter to call to * c-lex.c (c_lex_with_flags): Add parameter to call to
......
...@@ -2578,7 +2578,6 @@ void ...@@ -2578,7 +2578,6 @@ void
c_init_decl_processing (void) c_init_decl_processing (void)
{ {
tree endlink; tree endlink;
tree ptr_ftype_void, ptr_ftype_ptr;
location_t save_loc = input_location; location_t save_loc = input_location;
/* Initialize reserved words for parser. */ /* Initialize reserved words for parser. */
...@@ -2616,10 +2615,9 @@ c_init_decl_processing (void) ...@@ -2616,10 +2615,9 @@ c_init_decl_processing (void)
boolean_type_node)); boolean_type_node));
endlink = void_list_node; endlink = void_list_node;
ptr_ftype_void = build_function_type (ptr_type_node, endlink); build_function_type (ptr_type_node, endlink);
ptr_ftype_ptr build_function_type (ptr_type_node,
= build_function_type (ptr_type_node, tree_cons (NULL_TREE, ptr_type_node, endlink));
tree_cons (NULL_TREE, ptr_type_node, endlink));
input_location = save_loc; input_location = save_loc;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment