diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/cp/Make-lang.in | 2 | ||||
| -rw-r--r-- | gcc/params.def | 2 |
4 files changed, 11 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 768715e..f7af8bd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-07-20 Daniel Berlin <dan@cgsoftware.com> + + * params.def: Change default max inline insns to 100. + 2001-07-20 Diego Novillo <dnovillo@redhat.com> * combine.c (combine_simplify_rtx): Generate a new shift operation diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index fb7d6c1..0ea4cb7 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2001-07-20 Daniel Berlin <dan@cgsoftware.com> + + * Make-lang.in (cp/optimize.o): Depend on $(PARAMS_H), not + params.h. + 2001-07-19 Mark Mitchell <mark@codesourcery.com> * class.c (finish_struct_anon): Forbid nested classes. diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index c3070b9..50190d3 100644 --- a/gcc/cp/Make-lang.in +++ b/gcc/cp/Make-lang.in @@ -277,7 +277,7 @@ cp/semantics.o: cp/semantics.c $(CXX_TREE_H) cp/lex.h except.h toplev.h \ flags.h $(GGC_H) debug.h output.h $(RTL_H) $(TIMEVAR_H) $(EXPR_H) cp/dump.o: cp/dump.c $(CXX_TREE_H) c-dump.h cp/optimize.o: cp/optimize.c $(CXX_TREE_H) rtl.h integrate.h insn-config.h \ - input.h params.h debug.h + input.h $(PARAMS_H) debug.h cp/mangle.o: cp/mangle.c $(CXX_TREE_H) toplev.h cp/parse.o: cp/parse.c $(CXX_TREE_H) flags.h cp/lex.h except.h output.h \ diff --git a/gcc/params.def b/gcc/params.def index eff8a23..d7e9bc0 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -44,7 +44,7 @@ Boston, MA 02111-1307, USA. DEFPARAM (PARAM_MAX_INLINE_INSNS, "max-inline-insns", "The maximum number of instructions in a function that is eligible for inlining", - 10000) + 100) /* The maximum number of instructions to consider when looking for an instruction to fill a delay slot. If more than this arbitrary |
