aboutsummaryrefslogtreecommitdiff
path: root/gcc/integrate.c
diff options
context:
space:
mode:
authorMarc Lehmann <pcg@goof.com>1998-02-05 20:49:54 +0000
committerJeff Law <law@gcc.gnu.org>1998-02-05 13:49:54 -0700
commitaec98e42eff44570e0c88be04e37e297b914534d (patch)
treeffb329918bec313fd2e4055bc4b596f65ffa05e5 /gcc/integrate.c
parenteabb2ebae83d72ceb279b530a631eade3579c836 (diff)
downloadgcc-aec98e42eff44570e0c88be04e37e297b914534d.zip
gcc-aec98e42eff44570e0c88be04e37e297b914534d.tar.gz
gcc-aec98e42eff44570e0c88be04e37e297b914534d.tar.bz2
integrate.c (INTEGRATE_THRESHOLD): Inline only small functions when -Os is specified.
* integrate.c (INTEGRATE_THRESHOLD): Inline only small functions when -Os is specified. * toplev.c (main): Don't disable flag_inline_functions anymore when -Os is in effect. From-SVN: r17671
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r--gcc/integrate.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c
index 28731c0..ec1f8b8 100644
--- a/gcc/integrate.c
+++ b/gcc/integrate.c
@@ -52,8 +52,12 @@ extern tree poplevel ();
/* Default max number of insns a function can have and still be inline.
This is overridden on RISC machines. */
#ifndef INTEGRATE_THRESHOLD
+/* Inlining small functions might save more space then not inlining at
+ all. Assume 1 instruction for the call and 1.5 insns per argument. */
#define INTEGRATE_THRESHOLD(DECL) \
- (8 * (8 + list_length (DECL_ARGUMENTS (DECL))))
+ (optimize_size \
+ ? (1 + (3 * list_length (DECL_ARGUMENTS (DECL)) / 2)) \
+ : (8 * (8 + list_length (DECL_ARGUMENTS (DECL)))))
#endif
static rtx initialize_for_inline PROTO((tree, int, int, int, int));