diff options
Diffstat (limited to 'gcc/cp/lex.c')
-rw-r--r-- | gcc/cp/lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index 8fbbbc40ec4..a4dc2cf30b6 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -4776,7 +4776,7 @@ retrofit_lang_decl (t) else size = sizeof (struct lang_decl_flags); - ld = (struct lang_decl *) ggc_alloc_obj (size, 1); + ld = (struct lang_decl *) ggc_alloc_cleared (size); DECL_LANG_SPECIFIC (t) = ld; if (current_lang_name == lang_name_cplusplus) |