diff options
author | pfg <pfg@FreeBSD.org> | 2013-12-25 21:59:56 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2013-12-25 21:59:56 +0000 |
commit | e9055f74febe9413802e444141d5e339838b6f36 (patch) | |
tree | d6940ee2e4607ff30ee325cb6182f6a04f03adaf /contrib/gcclibs/libcpp/include/cpplib.h | |
parent | ddabe064bb57533b02711fc2409db19e1d615522 (diff) | |
download | FreeBSD-src-e9055f74febe9413802e444141d5e339838b6f36.zip FreeBSD-src-e9055f74febe9413802e444141d5e339838b6f36.tar.gz |
MFC r258826, r259555, r 259558:
libcpp: Merge fixes from upstream
Fixes:
GCC preprocessor/29966:
GCC preprocessor/28709:
GCC c/31924
GCC preprocessor/14331
gcc: add Apple-compatible -Wnewline-eof
Obtained from: gcc per-4.3 (rev. 121340, 124356, 124358, 124730,
125212, 125255 ; GPLv2)
Apple Inc. (Apple GCC 4.2 - 5531)
Diffstat (limited to 'contrib/gcclibs/libcpp/include/cpplib.h')
-rw-r--r-- | contrib/gcclibs/libcpp/include/cpplib.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/gcclibs/libcpp/include/cpplib.h b/contrib/gcclibs/libcpp/include/cpplib.h index 5acef41..ac596d6 100644 --- a/contrib/gcclibs/libcpp/include/cpplib.h +++ b/contrib/gcclibs/libcpp/include/cpplib.h @@ -320,6 +320,11 @@ struct cpp_options /* Nonzero means warn if there are any trigraphs. */ unsigned char warn_trigraphs; + /* APPLE LOCAL begin -Wnewline-eof 2001-08-23 --sts */ + /* Nonzero means warn if no newline at end of file. */ + unsigned char warn_newline_at_eof; + /* APPLE LOCAL end -Wnewline-eof 2001-08-23 --sts */ + /* Nonzero means warn about multicharacter charconsts. */ unsigned char warn_multichar; |