diff options
author | Geoffrey Keating <geoffk@apple.com> | 2003-02-16 01:11:41 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2003-02-16 01:11:41 +0000 |
commit | d203738b3a8967e2f096288da68075154c81bcb2 (patch) | |
tree | e0a56f1d0e2103e58d4fe2cd400c1fdd48501568 | |
parent | c8e5d1afc5f98b96dd66eb0bbb1ee9d1fe2e40bf (diff) | |
download | gcc-d203738b3a8967e2f096288da68075154c81bcb2.zip gcc-d203738b3a8967e2f096288da68075154c81bcb2.tar.gz gcc-d203738b3a8967e2f096288da68075154c81bcb2.tar.bz2 |
* doc/invoke.texi (Optimize Options): Correct @option syntax.
From-SVN: r62957
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1381de2..152ba52 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-02-15 Geoffrey Keating <geoffk@apple.com> + + * doc/invoke.texi (Optimize Options): Correct @option syntax. + 2003-02-15 Richard Henderson <rth@redhat.com> * Makefile.in (cfglayout.o): Depend on TARGET_H. diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 0c6f4eb..c57e9d9 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -4348,7 +4348,7 @@ In each case, the @var{value} is an integer. The allowable choices for @table @gcctabopt @item max-crossjump-edges The maximum number of incoming edges to consider for crossjumping. -The algorithm used by @option(-fcrossjumping) is @math{O(N^2)} in +The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in the number of edges incoming to each block. Increasing values mean more aggressive optimization, making the compile time increase with probably small improvement in executable size. |