diff options
Diffstat (limited to 'gcc/cp/decl.h')
-rw-r--r-- | gcc/cp/decl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/decl.h b/gcc/cp/decl.h index 2316f06728d..eeac80f29ad 100644 --- a/gcc/cp/decl.h +++ b/gcc/cp/decl.h @@ -36,13 +36,13 @@ extern tree grokdeclarator PARAMS ((tree, tree, enum decl_context, int, /* Parsing a function declarator leaves a list of parameter names or a chain or parameter decls here. */ -extern tree last_function_parms; +extern GTY(()) tree last_function_parms; /* A list of objects which have constructors or destructors which reside in the global scope. The decl is stored in the TREE_VALUE slot and the initializer is stored in the TREE_PURPOSE slot. */ -extern tree static_aggregates; +extern GTY(()) tree static_aggregates; #ifdef DEBUG_CP_BINDING_LEVELS /* Purely for debugging purposes. */ |