* integrate.c (INTEGRATE_THRESHOLD): Sync it with the comment.
authorTheodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
Mon, 12 Apr 1999 00:03:02 +0000 (02:03 +0200)
committerJeff Law <law@gcc.gnu.org>
Mon, 12 Apr 1999 00:03:02 +0000 (18:03 -0600)
From-SVN: r26356

gcc/ChangeLog
gcc/integrate.c

index 761b754ac1f06ea0c5380f763db7e5ef28c33c67..4016a62b964b211ac055bf0cb7d7160b9c87990f 100644 (file)
@@ -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.
index 1bcc2803a7e8384747b062f47691a7ff8c4ff786..07055f2abcba1ca354771d0b53da5b2d56baeef3 100644 (file)
@@ -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
 \f