diff options
author | Neil Booth <neilb@earthling.net> | 2000-11-27 19:08:36 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2000-11-27 19:08:36 +0000 |
commit | 6a6b162822130013ab558c9bb4dda88874ee48f1 (patch) | |
tree | 376dab862876e9b09630f6d229b81ba1eeb2fa61 /gcc/cpplib.h | |
parent | fb6a7b08a80113867aaeaa3d4dc6bcade0a57699 (diff) | |
download | gcc-6a6b162822130013ab558c9bb4dda88874ee48f1.zip gcc-6a6b162822130013ab558c9bb4dda88874ee48f1.tar.gz gcc-6a6b162822130013ab558c9bb4dda88874ee48f1.tar.bz2 |
cppinit.c (cpp_reader_init): Remove handling of warn_paste command line options.
* cppinit.c (cpp_reader_init): Remove handling of warn_paste
command line options.
(cpp_handle_option): Similarly.
* cpplib.h (struct cpp_options): Remove warn_paste.
* cppmacro.c (paste_tokens): Apart from assembler, make
unpasteable token warning mandatory.
From-SVN: r37804
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 18ad1cd..b75e9ac 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -367,10 +367,6 @@ struct cpp_options traditional C. */ unsigned char warn_traditional; - /* Nonzero means warn if ## is applied to two tokens that cannot be - pasted together. */ - unsigned char warn_paste; - /* Nonzero means turn warnings into errors. */ unsigned char warnings_are_errors; |