OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / lto-section-in.c
index aea1c1d..4f2ae4f 100644 (file)
@@ -43,7 +43,6 @@ along with GCC; see the file COPYING3.  If not see
 #include "output.h"
 #include "lto-streamer.h"
 #include "lto-compress.h"
-#include "ggc.h"
 
 /* Section names.  These must correspond to the values of
    enum lto_section_type.  */
@@ -53,8 +52,6 @@ const char *lto_section_name[LTO_N_SECTION_TYPES] =
   "function_body",
   "static_initializer",
   "cgraph",
-  "varpool",
-  "jump_funcs"
   "ipa_pure_const",
   "ipa_reference",
   "symtab",
@@ -434,7 +431,7 @@ lto_new_in_decl_state (void)
 {
   struct lto_in_decl_state *state;
 
-  state = ((struct lto_in_decl_state *) ggc_alloc (sizeof (*state)));
+  state = ((struct lto_in_decl_state *) xmalloc (sizeof (*state)));
   memset (state, 0, sizeof (*state));
   return state;
 }
@@ -448,8 +445,8 @@ lto_delete_in_decl_state (struct lto_in_decl_state *state)
 
   for (i = 0; i < LTO_N_DECL_STREAMS; i++)
     if (state->streams[i].trees)
-      ggc_free (state->streams[i].trees);
-  ggc_free (state);
+      free (state->streams[i].trees);
+  free (state);
 }
 
 /* Hashtable helpers. lto_in_decl_states are hash by their function decls. */