c-decl.c (c_init_decl_processing): Remove local variables ptr_ftype_void and ptr_ftyp...
authorKazu Hirata <kazu@cs.umass.edu>
Sat, 12 Mar 2005 18:32:26 +0000 (18:32 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sat, 12 Mar 2005 18:32:26 +0000 (18:32 +0000)
* c-decl.c (c_init_decl_processing): Remove local variables
ptr_ftype_void and ptr_ftype_ptr.

From-SVN: r96343

gcc/ChangeLog
gcc/c-decl.c

index 19cf0b943a843e12c03f1b03c72e37ad44381387..f509904188acba7ce9c042c02cc1a729f6d455cc 100644 (file)
@@ -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  <geoffk@apple.com>
 
        * c-lex.c (c_lex_with_flags): Add parameter to call to 
index 070a94b8bc984dd56f00209d3d4b787f76454126..fb03afb175b99992ec9f3570465f57fcbf5cb363 100644 (file)
@@ -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;