diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e7703124e89..66bece7d1bd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-03-23 Kazu Hirata + + * params.def: Fix a typo. + * config/mips/mips.c: Follow the spelling convensions. + * doc/invoke.texi: Fix typos. + 2005-03-18 Dale Johannese * cp/tree.c (cp_tree_equal): Handle SSA_NAME. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 2817e6733de..ee23d4f59b6 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -9193,7 +9193,7 @@ mips_matching_cpu_name_p (const char *canonical, const char *given) /* Return the mips_cpu_info entry for the processor or ISA given - by CPU_STRING. Return null if the string isn't recognised. + by CPU_STRING. Return null if the string isn't recognized. A similar function exists in GAS. */ diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index bd9f4302de7..c750c995677 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -5572,12 +5572,12 @@ default value is 450. @item inline-call-cost Specify cost of call instruction relative to simple arithmetics operations -(having cost of 1). Increasing this cost disqualify inlinining of non-leaf -functions and at same time increase size of leaf function that is believed to -reduce function size by being inlined. In effect it increase amount of +(having cost of 1). Increasing this cost disqualifies inlining of non-leaf +functions and at the same time increases size of leaf function that is believed to +reduce function size by being inlined. In effect it increases amount of inlining for code having large abstraction penalty (many functions that just -pass the argumetns to other functions) and decrease inlining for code with low -abstraction penalty. Default value is 16. +pass the arguments to other functions) and decrease inlining for code with low +abstraction penalty. The default value is 16. @item max-unrolled-insns The maximum number of instructions that a loop should have if that loop diff --git a/gcc/params.def b/gcc/params.def index 64cb88040e6..2dbc19758e0 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -158,7 +158,7 @@ DEFPARAM(PARAM_INLINE_UNIT_GROWTH, 50, 0, 0) DEFPARAM(PARAM_INLINE_CALL_COST, "inline-call-cost", - "expense of call operation relative to ordinary aritmetic operations", + "expense of call operation relative to ordinary arithmetic operations", 16, 0, 0) /* The GCSE optimization will be disabled if it would require