From: Theodore Papadopoulo Date: Mon, 12 Apr 1999 00:03:02 +0000 (+0200) Subject: * integrate.c (INTEGRATE_THRESHOLD): Sync it with the comment. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c51262cf528bf7ce8d6ae55d226797283078deb8;p=gcc.git * integrate.c (INTEGRATE_THRESHOLD): Sync it with the comment. From-SVN: r26356 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 761b754ac1f..4016a62b964 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Apr 12 00:57:10 1999 Theodore Papadopoulo + + * integrate.c (INTEGRATE_THRESHOLD): Sync it with the comment. + Sun Apr 11 10:24:18 1999 Mark Mitchell * rtl.h (rtx_def): Update documentation for jump and call. diff --git a/gcc/integrate.c b/gcc/integrate.c index 1bcc2803a7e..07055f2abcb 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