aboutsummaryrefslogtreecommitdiff
path: root/gcc/ggc.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ggc.h')
-rw-r--r--gcc/ggc.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ggc.h b/gcc/ggc.h
index a9c7f9014fd..f1979d6ca95 100644
--- a/gcc/ggc.h
+++ b/gcc/ggc.h
@@ -286,6 +286,13 @@ ggc_alloc_tree_node_stat (size_t s CXX_MEM_STAT_INFO)
return (struct tree_node *) ggc_internal_alloc (s PASS_MEM_STAT);
}
+static inline class ttype *
+ggc_alloc_ttype_stat (size_t s CXX_MEM_STAT_INFO)
+{
+ return (class ttype *) ggc_internal_alloc (s PASS_MEM_STAT);
+}
+
+
static inline struct tree_node *
ggc_alloc_cleared_tree_node_stat (size_t s CXX_MEM_STAT_INFO)
{