Commit c51262cf by Theodore Papadopoulo Committed by Jeff Law

* integrate.c (INTEGRATE_THRESHOLD): Sync it with the comment.

From-SVN: r26356
parent e891fbfe
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.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment