+2014-12-08 Trevor Saunders <tsaunders@mozilla.com>
+
+ * lto.c (read_cgraph_and_symbols): allocate gimple_canonical_types
+ htab with malloc instead of ggc.
+
2014-11-20 Trevor Saunders <tsaunders@mozilla.com>
* lto.c: Replace htab with hash_table.
symtab->state = LTO_STREAMING;
canonical_type_hash_cache = new hash_map<const_tree, hashval_t> (251);
- gimple_canonical_types = htab_create_ggc (16381, gimple_canonical_type_hash,
- gimple_canonical_type_eq, 0);
+ gimple_canonical_types = htab_create (16381, gimple_canonical_type_hash,
+ gimple_canonical_type_eq, NULL);
gcc_obstack_init (&tree_scc_hash_obstack);
tree_scc_hash = new hash_table<tree_scc_hasher> (4096);