OSDN Git Service

* cgraph.c (cgraph_varpool_n_nodes): Remove.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 23 Jan 2005 19:17:09 +0000 (19:17 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 23 Jan 2005 19:17:09 +0000 (19:17 +0000)
(cgraph_varpool_node): Don't access cgraph_varpool_n_nodes.
* cgraph.h: Remove the corresponding declaration.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94121 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cgraph.c
gcc/cgraph.h

index 64247d7..1fcfbd2 100644 (file)
@@ -9,6 +9,10 @@
        * c-opts.c (c_common_handle_option): Remove all write access
        to explicit_flag_signed_bitfields.
 
+       * cgraph.c (cgraph_varpool_n_nodes): Remove.
+       (cgraph_varpool_node): Don't access cgraph_varpool_n_nodes.
+       * cgraph.h: Remove the corresponding declaration.
+
 2005-01-23  Roger Sayle  <roger@eyesopen.com>
            Eric Botcazou  <ebotcazou@libertysurf.fr>
 
index a5c9b84..7d1cca2 100644 (file)
@@ -120,9 +120,6 @@ static GTY((param_is (struct cgraph_varpool_node))) htab_t cgraph_varpool_hash;
 /* Queue of cgraph nodes scheduled to be lowered and output.  */
 struct cgraph_varpool_node *cgraph_varpool_nodes_queue;
 
-/* Number of nodes in existence.  */
-int cgraph_varpool_n_nodes;
-
 /* The linked list of cgraph varpool nodes.  */
 static GTY(())  struct cgraph_varpool_node *cgraph_varpool_nodes;
 
@@ -584,7 +581,6 @@ cgraph_varpool_node (tree decl)
   node = ggc_alloc_cleared (sizeof (*node));
   node->decl = decl;
   node->next = cgraph_varpool_nodes;
-  cgraph_varpool_n_nodes++;
   cgraph_varpool_nodes = node;
   *slot = node;
   return node;
index d106f36..ae902b2 100644 (file)
@@ -158,7 +158,6 @@ extern GTY(()) int cgraph_max_uid;
 extern bool cgraph_global_info_ready;
 extern GTY(()) struct cgraph_node *cgraph_nodes_queue;
 
-extern GTY(()) int cgraph_varpool_n_nodes;
 extern GTY(()) struct cgraph_varpool_node *cgraph_varpool_nodes_queue;
 
 /* In cgraph.c  */