aboutsummaryrefslogtreecommitdiff
path: root/gcc/plugin.c
diff options
context:
space:
mode:
authorTrevor Saunders <tsaunders@mozilla.com>2014-12-10 03:45:40 +0000
committerTrevor Saunders <tbsaunde@gcc.gnu.org>2014-12-10 03:45:40 +0000
commit63f5d5b818319129217e41bcb23db53f99ff11b0 (patch)
treed68af710e723e37215793eba5a9d183e68b6f322 /gcc/plugin.c
parent59bce71381be24449aaf902bc1bc64a12b373bf4 (diff)
downloadgcc-63f5d5b818319129217e41bcb23db53f99ff11b0.zip
gcc-63f5d5b818319129217e41bcb23db53f99ff11b0.tar.gz
gcc-63f5d5b818319129217e41bcb23db53f99ff11b0.tar.bz2
remove gengtype support for param_is use_param, if_marked and splay tree allocators
gcc/ * plugin.c, plugin.def, ggc.h, ggc-common.c, gengtype.h, gengtype.c, gengtype-state.c, gengtype-parse.c, gentype-lex.l, gcc-plugin.h, doc/plugins.texi, doc/gty.texi: Remove support for if_marked and param_is. include/ * hashtab.h, splay-tree.h: Remove GTY markers. From-SVN: r218558
Diffstat (limited to 'gcc/plugin.c')
-rw-r--r--gcc/plugin.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/plugin.c b/gcc/plugin.c
index 8debc09..5482f79 100644
--- a/gcc/plugin.c
+++ b/gcc/plugin.c
@@ -420,10 +420,6 @@ register_callback (const char *plugin_name,
gcc_assert (!callback);
ggc_register_root_tab ((const struct ggc_root_tab*) user_data);
break;
- case PLUGIN_REGISTER_GGC_CACHES:
- gcc_assert (!callback);
- ggc_register_cache_tab ((const struct ggc_cache_tab*) user_data);
- break;
case PLUGIN_EVENT_FIRST_DYNAMIC:
default:
if (event < PLUGIN_EVENT_FIRST_DYNAMIC || event >= event_last)
@@ -546,7 +542,6 @@ invoke_plugin_callbacks_full (int event, void *gcc_data)
case PLUGIN_PASS_MANAGER_SETUP:
case PLUGIN_REGISTER_GGC_ROOTS:
- case PLUGIN_REGISTER_GGC_CACHES:
gcc_assert (false);
}