diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-12 18:32:26 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-12 18:32:26 +0000 |
commit | 9386194f1365c74fea0cd2791bbc8c569e97f20e (patch) | |
tree | c801e0dfddf6da75636c40e9e7370fe46d2abcde /gcc/c-decl.c | |
parent | fba08921106c1dabf0b9be81dc02c395f0e62285 (diff) | |
download | gcc-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.c | 8 |
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; |