diff options
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/opts.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1a8d78a..b88ed38 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-10-29 Richard Earnshaw <rearnsha@arm.com> + + * opts.c (decode_options): Lower the crossjump threshold for -Os. + 2004-10-29 Diego Novillo <dnovillo@redhat.com> * tree.h (struct tree_ssa_name): Remove field 'equiv'. @@ -574,6 +574,9 @@ decode_options (unsigned int argc, const char **argv) set_param_value ("max-inline-insns-auto", 5); set_param_value ("max-inline-insns-rtl", 10); flag_inline_functions = 1; + + /* We want to crossjump as much as possible. */ + set_param_value ("min-crossjump-insns", 1); } /* Initialize whether `char' is signed. */ |
