-
- Downloads
cpplex.c: Don't include sys/mman.h.
toplevel: * cpplex.c: Don't include sys/mman.h. (cpp_push_buffer, cpp_pop_buffer): Moved to cpplib.c. * cpplib.c: Include sys/mman.h and obstack.h. (cpp_push_buffer): Moved from cpplex.c; allocate buffers on an obstack. (cpp_pop_buffer): Moved from cpplex.c; free buffers from an obstack. (_cpp_unwind_if_stack): Now static, unwind_if_stack. Don't bother freeing if stack entries (they will be freed with their buffer). (do_endif): Free if stack entries from the buffer obstack. (push_conditional): Allocate if stack entries from the buffer obstack. (find_answer): Rename to _cpp_find_answer. (do_assert, do_unassert): Update. * cpphash.h: Update prototypes. (xobnew): New convenience macro. * cpplib.h (struct cpp_reader): Add hash_ob and buffer_ob fields. Update comments. (struct cpp_hashnode): Remove disabled field. * cppinit.c: Don't include hashtab.h or splay-tree.h. (report_missing_guard): Moved to cppfiles.c. (cpp_reader_init): Call cpp_init_stacks, cpp_init_macros, cpp_init_includes. (cpp_cleanup): Call cpp_cleanup_stacks, cpp_cleanup_macros, cpp_cleanup_includes. Don't destroy hashtab or all_include_files here. (cpp_finish): Use _cpp_report_missing_guards. * cppfiles.c (report_missing_guard): Moved from cppinit.c. (_cpp_init_include_table): Rename _cpp_init_includes. (_cpp_cleanup_includes, _cpp_report_missing_guards): New. * cppexp.c (parse_assertion): Update for new name of find_answer. * Makefile.in (cpplib.o, cpphash.o, cppinit.o): Update deps. * cpplib.c (do_ident): s/VSPACE/EOF/ testsuite: * gcc.dg/cpp/ident.c: New test. From-SVN: r34870
Showing
- gcc/ChangeLog 45 additions, 0 deletionsgcc/ChangeLog
- gcc/Makefile.in 3 additions, 3 deletionsgcc/Makefile.in
- gcc/cppexp.c 1 addition, 1 deletiongcc/cppexp.c
- gcc/cppfiles.c 42 additions, 2 deletionsgcc/cppfiles.c
- gcc/cpphash.c 31 additions, 44 deletionsgcc/cpphash.c
- gcc/cpphash.h 10 additions, 5 deletionsgcc/cpphash.h
- gcc/cppinit.c 7 additions, 33 deletionsgcc/cppinit.c
- gcc/cpplex.c 0 additions, 76 deletionsgcc/cpplex.c
- gcc/cpplib.c 115 additions, 17 deletionsgcc/cpplib.c
- gcc/cpplib.h 9 additions, 2 deletionsgcc/cpplib.h
- gcc/testsuite/ChangeLog 4 additions, 0 deletionsgcc/testsuite/ChangeLog
- gcc/testsuite/gcc.dg/cpp/ident.c 9 additions, 0 deletionsgcc/testsuite/gcc.dg/cpp/ident.c
Loading
Please register or sign in to comment