diff options
author | Kazu Hirata <kazu@hxi.com> | 2002-04-30 20:48:55 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-04-30 20:48:55 +0000 |
commit | 1eeeb6a437b35a0a48b7758d33e2d33164ca52db (patch) | |
tree | a0cc3b83651f56f07e65c72d081ac3f43fda4dfd /gcc/tree-inline.c | |
parent | 888d5eaa62fd5a9e9c62cff6e94a2e9e79434c1e (diff) | |
download | gcc-1eeeb6a437b35a0a48b7758d33e2d33164ca52db.zip gcc-1eeeb6a437b35a0a48b7758d33e2d33164ca52db.tar.gz gcc-1eeeb6a437b35a0a48b7758d33e2d33164ca52db.tar.bz2 |
cpplex.c: Fix comment formatting.
* cpplex.c: Fix comment formatting.
* function.c: Likewise.
* integrate.c: Likewise.
* regrename.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* tree-inline.c: Likewise.
From-SVN: r52972
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 1385e83..b102b51 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -678,7 +678,7 @@ inlinable_function_p (fn, id) /* Assume it is not inlinable. */ inlinable = 0; - /* The number of instructions (estimated) of current function. */ + /* The number of instructions (estimated) of current function. */ currfn_insns = DECL_NUM_STMTS (fn) * INSNS_PER_STMT; /* If we're not inlining things, then nothing is inlinable. */ @@ -709,7 +709,7 @@ inlinable_function_p (fn, id) DECL_UNINLINABLE (fn) = ! inlinable; /* In case we don't disregard the inlining limits and we basically - can inline this function, investigate further. */ + can inline this function, investigate further. */ if (! (*lang_hooks.tree_inlining.disregard_inline_limits) (fn) && inlinable) { @@ -717,13 +717,13 @@ inlinable_function_p (fn, id) + currfn_insns; /* In the extreme case that we have exceeded the recursive inlining limit by a huge factor (128), we just say no. Should not happen - in real life. */ + in real life. */ if (sum_insns > MAX_INLINE_INSNS * 128) inlinable = 0; /* If we did not hit the extreme limit, we use a linear function with slope -1/MAX_INLINE_SLOPE to exceedingly decrease the allowable size. We always allow a size of MIN_INLINE_INSNS - though. */ + though. */ else if ((sum_insns > MAX_INLINE_INSNS) && (currfn_insns > MIN_INLINE_INSNS)) { @@ -988,7 +988,7 @@ expand_call_inline (tp, walk_subtrees, data) /* Our function now has more statements than it did before. */ DECL_NUM_STMTS (VARRAY_TREE (id->fns, 0)) += DECL_NUM_STMTS (fn); - /* For accounting, subtract one for the saved call/ret. */ + /* For accounting, subtract one for the saved call/ret. */ id->inlined_stmts += DECL_NUM_STMTS (fn) - 1; /* Recurse into the body of the just inlined function. */ |