aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorTheodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>1999-04-12 02:03:02 +0200
committerJeff Law <law@gcc.gnu.org>1999-04-11 18:03:02 -0600
commitc51262cf528bf7ce8d6ae55d226797283078deb8 (patch)
treef1b7e287645c519f4a965dd02ccaa5395e5626c5 /gcc
parente891fbfe342f4ef53587bdb71a30a1ea0df7c251 (diff)
downloadgcc-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/ChangeLog4
-rw-r--r--gcc/integrate.c2
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