diff options
author | loewis <loewis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-24 18:03:42 +0000 |
---|---|---|
committer | loewis <loewis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-24 18:03:42 +0000 |
commit | 0e540732f3cf31b162879b5db86abbc5683ae0ef (patch) | |
tree | 1001f01bdbc61b777abff48a73138617ab5aadeb /gcc | |
parent | f9708620d8e5cb0c035d998ba2b3fe275d33f41b (diff) | |
download | gcc-0e540732f3cf31b162879b5db86abbc5683ae0ef.tar.gz |
* invoke.texi: Correct grammatical errors, document
-fno-gnu-keywords as identical to -fno-asm for C++.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33384 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/invoke.texi | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index db80273433c..a942048e071 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-04-24 Martin v. Löwis <loewis@informatik.hu-berlin.de> + + * invoke.texi: Correct grammatical errors, document + -fno-gnu-keywords as identical to -fno-asm for C++. + 2000-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * aclocal.m4: (GCC_HEADER_STRING, GCC_NEED_DECLARATION, diff --git a/gcc/invoke.texi b/gcc/invoke.texi index 3e13098dfb6..0e3a48a2028 100644 --- a/gcc/invoke.texi +++ b/gcc/invoke.texi @@ -745,8 +745,7 @@ instead. @samp{-ansi} implies @samp{-fno-asm}. In C++, this switch only affects the @code{typeof} keyword, since @code{asm} and @code{inline} are standard keywords. You may want to -use the @samp{-fno-gnu-keywords} flag instead, as it also disables the -other, C++-specific, extension keywords such as @code{headof}. +use the @samp{-fno-gnu-keywords} flag instead, which has the same effect. @item -fno-builtin @cindex builtin functions @@ -1099,9 +1098,9 @@ but to allow and give a warning for old-style code that would otherwise be invalid, or have different behavior. @item -fno-gnu-keywords -Do not recognize @code{typeof} as a keyword, so that code can use these -words as identifiers. You can use the keywords @code{__typeof__} -instead. @samp{-ansi} implies @samp{-fno-gnu-keywords}. +Do not recognize @code{typeof} as a keyword, so that code can use this +word as an identifier. You can use the keyword @code{__typeof__} instead. +@samp{-ansi} implies @samp{-fno-gnu-keywords}. @item -fguiding-decls Treat a function declaration with the same type as a potential function |