diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-02-06 07:30:25 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-02-06 07:30:25 +0000 |
commit | 40ea76de513e2bd7388dfaf144c5c9f68f53afad (patch) | |
tree | 4302b34cfa658453c0f2005d1fc2b74f7da47536 /gcc/cpplib.h | |
parent | fd81d24f991f53d3cdd71e482e6d83f351e1759d (diff) | |
download | gcc-40ea76de513e2bd7388dfaf144c5c9f68f53afad.zip gcc-40ea76de513e2bd7388dfaf144c5c9f68f53afad.tar.gz gcc-40ea76de513e2bd7388dfaf144c5c9f68f53afad.tar.bz2 |
cpperror.c: Remove #ifdef EMACS block.
* cpperror.c: Remove #ifdef EMACS block.
* cppmain.c: Likewise.
* cpphash.c: Remove #if 0 blocks.
* cppinit.c: Remove #if 0 blocks, and the -lint option.
* cpplib.c: Remove #if 0 blocks and code referencing
pcp_inside_if or for_lint. Remove duplicate error message.
Fix error messages for #else after #else or #elif. Reformat.
Remove archaic TODO list.
* cpplib.h: Remove pcp_inside_if and for_lint flags.
From-SVN: r31817
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index c225916..1207f84 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -200,11 +200,6 @@ struct cpp_reader struct if_stack *if_stack; - /* Nonzero means we are inside an IF during a -pcp run. In this mode - macro expansion is done, and preconditions are output for all macro - uses requiring them. */ - char pcp_inside_if; - /* Nonzero means we have printed (while error reporting) a list of containing files that matches the current status. */ char input_stack_listing_current; @@ -369,10 +364,6 @@ struct cpp_options { char lang_fortran; - /* Nonzero means turn NOTREACHED into #pragma NOTREACHED etc */ - - char for_lint; - /* Nonzero means handle CHILL comment syntax and output CHILL string delimiter for __DATE___ etc. */ |