diff options
author | Joseph Myers <joseph@codesourcery.com> | 2005-06-01 19:19:09 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2005-06-01 19:19:09 +0100 |
commit | 82c0180d7797e3602a7069dbf5696b487be5d7d8 (patch) | |
tree | c2f32333e3d90048910804ca1577c829154c8c3b /gcc/common.opt | |
parent | 68d8b93454c20a663d4b259919d487fe16519837 (diff) | |
download | gcc-82c0180d7797e3602a7069dbf5696b487be5d7d8.tar.gz |
common.opt (fjump-tables): New.
* common.opt (fjump-tables): New.
* doc/invoke.texi (-fno-jump-tables): Document.
* stmt.c (expand_end_case_type): Do not emit jump tables unless
flag_jump_tables.
From-SVN: r100457
Diffstat (limited to 'gcc/common.opt')
-rw-r--r-- | gcc/common.opt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/common.opt b/gcc/common.opt index 91cc3c1ccc2..a603707508a 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -488,6 +488,10 @@ fivopts Common Report Var(flag_ivopts) Init(1) Optimize induction variables on trees +fjump-tables +Common Var(flag_jump_tables) Init(1) +Use jump tables for sufficiently large switch statements + fkeep-inline-functions Common Report Var(flag_keep_inline_functions) Generate code for functions even if they are fully inlined |