diff options
Diffstat (limited to 'gcc/cppinit.c')
-rw-r--r-- | gcc/cppinit.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/cppinit.c b/gcc/cppinit.c index c444f83..c4f5942 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -535,6 +535,9 @@ cpp_create_reader (lang) pfile->a_buff = _cpp_get_buff (pfile, 0); pfile->u_buff = _cpp_get_buff (pfile, 0); + /* The expression parser stack. */ + _cpp_expand_op_stack (pfile); + /* Initialise the buffer obstack. */ gcc_obstack_init (&pfile->buffer_ob); @@ -556,6 +559,7 @@ cpp_destroy (pfile) free_chain (CPP_OPTION (pfile, pending)->include_head); free (CPP_OPTION (pfile, pending)); + free (pfile->op_stack); while (CPP_BUFFER (pfile) != NULL) _cpp_pop_buffer (pfile); |