From 9386194f1365c74fea0cd2791bbc8c569e97f20e Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sat, 12 Mar 2005 18:32:26 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 3 +++ gcc/c-decl.c | 8 +++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 19cf0b943a8..f509904188a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -23,6 +23,9 @@ arguments of CALL_EXPR. (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 * c-lex.c (c_lex_with_flags): Add parameter to call to diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 070a94b8bc9..fb03afb175b 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -2578,7 +2578,6 @@ void c_init_decl_processing (void) { tree endlink; - tree ptr_ftype_void, ptr_ftype_ptr; location_t save_loc = input_location; /* Initialize reserved words for parser. */ @@ -2616,10 +2615,9 @@ c_init_decl_processing (void) boolean_type_node)); endlink = void_list_node; - 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)); input_location = save_loc; -- 2.30.2