diff options
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r-- | gcc/c-lang.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c index dbf46c4..24fc72c 100644 --- a/gcc/c-lang.c +++ b/gcc/c-lang.c @@ -28,6 +28,7 @@ Boston, MA 02111-1307, USA. */ #include "c-lex.h" #include "toplev.h" #include "output.h" +#include "ggc.h" #if USE_CPPLIB #include "cpplib.h" @@ -72,6 +73,9 @@ lang_init () save_lang_status = &push_c_function_context; restore_lang_status = &pop_c_function_context; + mark_lang_status = &mark_c_function_context; + + c_parse_init (); } void |