aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-decl.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-03-12 18:32:26 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-03-12 18:32:26 +0000
commit9386194f1365c74fea0cd2791bbc8c569e97f20e (patch)
treec801e0dfddf6da75636c40e9e7370fe46d2abcde /gcc/c-decl.c
parentfba08921106c1dabf0b9be81dc02c395f0e62285 (diff)
downloadgcc-9386194f1365c74fea0cd2791bbc8c569e97f20e.zip
gcc-9386194f1365c74fea0cd2791bbc8c569e97f20e.tar.gz
gcc-9386194f1365c74fea0cd2791bbc8c569e97f20e.tar.bz2
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
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r--gcc/c-decl.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index 070a94b..fb03afb 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;