aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2007-09-23 17:42:06 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2007-09-23 15:42:06 +0000
commitf28797595611bc8c886a54648aac4c93b39f8aed (patch)
treef28fe84170ab1e505f5fdfc61cf5cd6be17ffa8f
parent823dd937db20d8f3d8c5bdf42e1d97dbefd3acae (diff)
downloadgcc-f28797595611bc8c886a54648aac4c93b39f8aed.zip
gcc-f28797595611bc8c886a54648aac4c93b39f8aed.tar.gz
gcc-f28797595611bc8c886a54648aac4c93b39f8aed.tar.bz2
params.def (INLINE_CALL_COST): Set to 12.
* params.def (INLINE_CALL_COST): Set to 12. * invoke.texi (inline-call-cost): Update default value. From-SVN: r128692
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/doc/invoke.texi2
-rw-r--r--gcc/params.def2
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ab25de6..198e24e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-23 Jan Hubicka <jh@suse.cz>
+
+ * params.def (INLINE_CALL_COST): Set to 12.
+ * invoke.texi (inline-call-cost): Update default value.
+
2007-09-23 Eric Botcazou <ebotcazou@adacore.com>
* config/alpha/alpha.md (movti): Use operand_subword for the split.
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index 7f85b7e..c162e73 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -6720,7 +6720,7 @@ functions and at the same time increases size of leaf function that is believed
reduce function size by being inlined. In effect it increases amount of
inlining for code having large abstraction penalty (many functions that just
pass the arguments to other functions) and decrease inlining for code with low
-abstraction penalty. The default value is 16.
+abstraction penalty. The default value is 12.
@item min-vect-loop-bound
The minimum number of iterations under which a loop will not get vectorized
diff --git a/gcc/params.def b/gcc/params.def
index 2ad1eb6..c9ae99b 100644
--- a/gcc/params.def
+++ b/gcc/params.def
@@ -201,7 +201,7 @@ DEFPARAM(PARAM_INLINE_UNIT_GROWTH,
DEFPARAM(PARAM_INLINE_CALL_COST,
"inline-call-cost",
"expense of call operation relative to ordinary arithmetic operations",
- 16, 0, 0)
+ 12, 0, 0)
DEFPARAM(PARAM_LARGE_STACK_FRAME,
"large-stack-frame",
"The size of stack frame to be considered large",