diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2009-01-02 11:54:57 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2009-01-02 11:54:57 +0000 |
commit | e3606f3bda110bcec675134174c8d72f09cce75d (patch) | |
tree | 6d241fe224f457341fe941633861fdb9d5a02b94 | |
parent | 2fbbedafa302e3d16d9e71f1a7aa5a9c55e1dd48 (diff) | |
download | gcc-e3606f3bda110bcec675134174c8d72f09cce75d.zip gcc-e3606f3bda110bcec675134174c8d72f09cce75d.tar.gz gcc-e3606f3bda110bcec675134174c8d72f09cce75d.tar.bz2 |
extend.texi: Fix '#pragma GCC option' typo.
gcc/
* doc/extend.texi: Fix '#pragma GCC option' typo.
From-SVN: r143010
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/extend.texi | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d339755..1757883 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2009-01-02 Richard Sandiford <rdsandiford@googlemail.com> + + * doc/extend.texi: Fix '#pragma GCC option' typo. + 2009-01-02 Richard Guenther <rguenther@suse.de> * doc/install.texi (--enable-checking): Mention different diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 43e91af..dc9a2ee 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -2848,7 +2848,7 @@ are assumed to be used with a @code{-f} prefix. You can also use the @samp{#pragma GCC optimize} pragma to set the optimization options that affect more than one function. @xref{Function Specific Option Pragmas}, for details about the -@samp{#pragma GCC option} pragma. +@samp{#pragma GCC optimize} pragma. This can be used for instance to have frequently executed functions compiled with more aggressive optimization options that produce faster |