Commit fe94b653 by Richard Earnshaw Committed by Richard Earnshaw

* opts.c (decode_options): Lower the crossjump threshold for -Os.

From-SVN: r89843
parent 0be058dd
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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment