diff options
author | James E Wilson <wilson@specifixinc.com> | 2004-10-25 22:50:07 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2004-10-25 15:50:07 -0700 |
commit | 5307127042d75e40e952bb986e6f15377dac75db (patch) | |
tree | 9cc78ebc89860801e2935ab8a05003ddc1e04e09 /gcc | |
parent | 535dd32006f8be5ef3e953f357d3e52510b05fc5 (diff) | |
download | gcc-5307127042d75e40e952bb986e6f15377dac75db.zip gcc-5307127042d75e40e952bb986e6f15377dac75db.tar.gz gcc-5307127042d75e40e952bb986e6f15377dac75db.tar.bz2 |
Fix -fcrossjumping doc bug.
* doc/invoke.texi (-fcrossjumping): Not enabled at -O.
From-SVN: r89561
Diffstat (limited to 'gcc')
-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 001043d..6014620 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-10-25 James E Wilson <wilson@specifixinc.com> + + * doc/invoke.texi (-fcrossjumping): Not enabled at -O. + 2004-10-25 Joseph S. Myers <jsm@polyomino.org.uk> PR c/16667 diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index a2b0d83..990b83c 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -4457,7 +4457,7 @@ by separate flags. Perform cross-jumping transformation. This transformation unifies equivalent code and save code size. The resulting code may or may not perform better than without cross-jumping. -Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}. +Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}. @item -fif-conversion @opindex if-conversion |