diff options
author | Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr> | 1999-04-12 02:03:02 +0200 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-04-11 18:03:02 -0600 |
commit | c51262cf528bf7ce8d6ae55d226797283078deb8 (patch) | |
tree | f1b7e287645c519f4a965dd02ccaa5395e5626c5 /gcc | |
parent | e891fbfe342f4ef53587bdb71a30a1ea0df7c251 (diff) | |
download | gcc-c51262cf528bf7ce8d6ae55d226797283078deb8.zip gcc-c51262cf528bf7ce8d6ae55d226797283078deb8.tar.gz gcc-c51262cf528bf7ce8d6ae55d226797283078deb8.tar.bz2 |
* integrate.c (INTEGRATE_THRESHOLD): Sync it with the comment.
From-SVN: r26356
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/integrate.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 761b754..4016a62 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Apr 12 00:57:10 1999 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr> + + * integrate.c (INTEGRATE_THRESHOLD): Sync it with the comment. + Sun Apr 11 10:24:18 1999 Mark Mitchell <mark@codesourcery.com> * rtl.h (rtx_def): Update documentation for jump and call. diff --git a/gcc/integrate.c b/gcc/integrate.c index 1bcc280..07055f2 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -56,7 +56,7 @@ extern struct obstack *function_maybepermanent_obstack; all. Assume 1 instruction for the call and 1.5 insns per argument. */ #define INTEGRATE_THRESHOLD(DECL) \ (optimize_size \ - ? (1 + (3 * list_length (DECL_ARGUMENTS (DECL)) / 2)) \ + ? (1 + (3 * list_length (DECL_ARGUMENTS (DECL))) / 2) \ : (8 * (8 + list_length (DECL_ARGUMENTS (DECL))))) #endif |