diff options
author | Ian Lance Taylor <iant@google.com> | 2013-10-21 15:09:59 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-10-21 15:09:59 +0000 |
commit | ce0770fc7bb93ca051c0ccacbd98031f276a2b91 (patch) | |
tree | 5e43be3d527765caac2a8dc8bb6f33c55c4166a9 | |
parent | 390dafb79d287d5b0f7161c9e3b5c3ed7437f23c (diff) | |
download | gcc-ce0770fc7bb93ca051c0ccacbd98031f276a2b91.zip gcc-ce0770fc7bb93ca051c0ccacbd98031f276a2b91.tar.gz gcc-ce0770fc7bb93ca051c0ccacbd98031f276a2b91.tar.bz2 |
invoke.texi (Optimize Options): For -fno-toplevel-reorder, don't imply that attributes can solve all problems.
* doc/invoke.texi (Optimize Options): For -fno-toplevel-reorder,
don't imply that attributes can solve all problems.
(Directory Options): Fix typo.
From-SVN: r203894
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6210564..c5b794e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-10-21 Ian Lance Taylor <iant@google.com> + + * doc/invoke.texi (Optimize Options): For -fno-toplevel-reorder, + don't imply that attributes can solve all problems. + (Directory Options): Fix typo. + 2013-10-21 Kyrylo Tkachov <kyrylo.tkachov@arm.com> * config/arm/arm.c (cortexa9_extra_costs): Update mult costs for diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index a8d6dfa..adbc45b 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -8364,7 +8364,7 @@ statements. Output them in the same order that they appear in the input file. When this option is used, unreferenced static variables are not removed. This option is intended to support existing code that relies on a particular ordering. For new code, it is better to -use attributes. +use attributes when possible. Enabled at level @option{-O0}. When disabled explicitly, it also implies @option{-fno-section-anchors}, which is otherwise enabled at @option{-O0} on some @@ -10367,7 +10367,7 @@ separator character at the end of the path. @option{-B} prefixes that effectively specify directory names also apply to libraries in the linker, because the compiler translates these options into @option{-L} options for the linker. They also apply to -includes files in the preprocessor, because the compiler translates these +include files in the preprocessor, because the compiler translates these options into @option{-isystem} options for the preprocessor. In this case, the compiler appends @samp{include} to the prefix. |