On Wednesday 13 July 2005 04:29, Josh Conner wrote: > > Finally, you've apparently used grep to find all the places where > > PARAM_MAX_INLINE_INSNS_SINGLE and its friends are used, but you hve > > missed the ones in opts.c and maybe elsewhere. > > Hmmm - I looked for all of the places where estimate_num_insns was > called. I still don't see anything in opts.c -- can you give me a > little more of a hint?
From opts.c:decode_options() if (optimize_size) { /* Inlining of very small functions usually reduces total size. */ set_param_value ("max-inline-insns-single", 5); set_param_value ("max-inline-insns-auto", 5); flag_inline_functions = 1; (...) } You didn't update those two. Gr. Steven