From 8e854b762f7f6b72891784c1b4a40665ebbcde75 Mon Sep 17 00:00:00 2001 From: Kriang Lerdsuwanakij Date: Tue, 29 Apr 2003 14:16:48 +0000 Subject: [PATCH] c-pragma.c (maybe_apply_renaming_pragma): Fix typo. * c-pragma.c (maybe_apply_renaming_pragma): Fix typo. * gcc.c (display_help): Likewise. * toplev.c (f_options): Likewise. * params.def (PARAM_MAX_INLINE_SCOPE): Likewise. * config/c4x/c4x.h (TARGET_SWITCHES): Likewise. * config/mcore/mcore.h (TARGET_SWITCHES): Likewise. * config/s390/s390.h (TARGET_SWITCHES): Likewise. * config/v850/v850.h (TARGET_SWITCHES): Likewise. * call.c (build_operator_new_call): Fix typo. * lang-options.h: Likewise. From-SVN: r66228 --- gcc/ChangeLog | 11 +++++++++++ gcc/c-pragma.c | 2 +- gcc/config/c4x/c4x.h | 2 +- gcc/config/mcore/mcore.h | 2 +- gcc/config/s390/s390.h | 2 +- gcc/config/v850/v850.h | 2 +- gcc/cp/ChangeLog | 5 +++++ gcc/cp/call.c | 2 +- gcc/cp/lang-options.h | 4 ++-- gcc/gcc.c | 2 +- gcc/params.def | 2 +- gcc/toplev.c | 8 ++++---- 12 files changed, 30 insertions(+), 14 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3b02732bb0f..2bd830bba18 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,14 @@ +2003-04-29 Kriang Lerdsuwanakij + + * c-pragma.c (maybe_apply_renaming_pragma): Fix typo. + * gcc.c (display_help): Likewise. + * toplev.c (f_options): Likewise. + * params.def (PARAM_MAX_INLINE_SCOPE): Likewise. + * config/c4x/c4x.h (TARGET_SWITCHES): Likewise. + * config/mcore/mcore.h (TARGET_SWITCHES): Likewise. + * config/s390/s390.h (TARGET_SWITCHES): Likewise. + * config/v850/v850.h (TARGET_SWITCHES): Likewise. + 2003-04-29 J"orn Rennecke * varasm.c (default_assemble_visibility): Use assemble_name. diff --git a/gcc/c-pragma.c b/gcc/c-pragma.c index 78e9d9dd105..7f026d10b69 100644 --- a/gcc/c-pragma.c +++ b/gcc/c-pragma.c @@ -449,7 +449,7 @@ maybe_apply_renaming_pragma (decl, asmname) { const char *oldasmname = IDENTIFIER_POINTER (oldname) + 1; if (asmname && strcmp (TREE_STRING_POINTER (asmname), oldasmname) != 0) - warning ("asm declaration conficts with previous rename"); + warning ("asm declaration conflicts with previous rename"); asmname = build_string (strlen (oldasmname), oldasmname); } diff --git a/gcc/config/c4x/c4x.h b/gcc/config/c4x/c4x.h index e414a241342..8a703fac93c 100644 --- a/gcc/config/c4x/c4x.h +++ b/gcc/config/c4x/c4x.h @@ -237,7 +237,7 @@ { "no-force", -FORCE_FLAG, \ N_("Allow RTL generation to emit invalid 3 operand insns") }, \ { "loop-unsigned", LOOP_UNSIGNED_FLAG, \ - N_("Allow unsigned interation counts for RPTB/DB") }, \ + N_("Allow unsigned iteration counts for RPTB/DB") }, \ { "no-loop-unsigned", -LOOP_UNSIGNED_FLAG, \ N_("Disallow unsigned iteration counts for RPTB/DB") }, \ { "preserve-float", PRESERVE_FLOAT_FLAG, \ diff --git a/gcc/config/mcore/mcore.h b/gcc/config/mcore/mcore.h index b8dce6a4c39..fa8707e69b4 100644 --- a/gcc/config/mcore/mcore.h +++ b/gcc/config/mcore/mcore.h @@ -138,7 +138,7 @@ extern int target_flags; {"relax-immediates", RELAX_IMM_BIT, \ "" }, \ {"no-relax-immediates", - RELAX_IMM_BIT, \ - N_("Do not arbitary sized immediates in bit operations") }, \ + N_("Do not arbitrary sized immediates in bit operations") }, \ {"wide-bitfields", W_FIELD_BIT, \ N_("Always treat bit-field as int-sized") }, \ {"no-wide-bitfields", - W_FIELD_BIT, \ diff --git a/gcc/config/s390/s390.h b/gcc/config/s390/s390.h index b5f40554e0e..5bd0ab4405d 100644 --- a/gcc/config/s390/s390.h +++ b/gcc/config/s390/s390.h @@ -100,7 +100,7 @@ extern int target_flags; { "soft-float", -1, N_("Don't use hardware fp")}, \ { "backchain", 2, N_("Set backchain")}, \ { "no-backchain", -2, N_("Don't set backchain (faster, but debug harder")}, \ - { "small-exec", 4, N_("Use bras for execucable < 64k")}, \ + { "small-exec", 4, N_("Use bras for executable < 64k")}, \ { "no-small-exec",-4, N_("Don't use bras")}, \ { "debug", 8, N_("Additional debug prints")}, \ { "no-debug", -8, N_("Don't print additional debug prints")}, \ diff --git a/gcc/config/v850/v850.h b/gcc/config/v850/v850.h index b18d85afced..5a6431dfd4f 100644 --- a/gcc/config/v850/v850.h +++ b/gcc/config/v850/v850.h @@ -191,7 +191,7 @@ extern int target_flags; { "no-app-regs", MASK_NO_APP_REGS, \ N_("Do not use registers r2 and r5") }, \ { "strict-align", MASK_STRICT_ALIGN, \ - N_("Enfore strict alignment") }, \ + N_("Enforce strict alignment") }, \ { "no-strict-align", -MASK_STRICT_ALIGN, "" }, \ { "big-switch", MASK_BIG_SWITCH, \ N_("Use 4 byte entries in switch tables") },\ diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 995f8bb52b8..97bcb235778 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2003-04-29 Kriang Lerdsuwanakij + + * call.c (build_operator_new_call): Fix typo. + * lang-options.h: Likewise. + 2003-04-29 Mark Mitchell * decl.c (maybe_commonize_var): Further tweak support for systems diff --git a/gcc/cp/call.c b/gcc/cp/call.c index 947151eea41..2340d41f6a0 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -2959,7 +2959,7 @@ build_operator_new_call (tree fnname, tree args, tree *size, tree *cookie_size) error ("no matching function for call to `%D(%A)'", DECL_NAME (OVL_CURRENT (fns)), args); else - error ("call of overlopaded `%D(%A)' is ambiguous", + error ("call of overloaded `%D(%A)' is ambiguous", DECL_NAME (OVL_CURRENT (fns)), args); if (candidates) print_z_candidates (candidates); diff --git a/gcc/cp/lang-options.h b/gcc/cp/lang-options.h index 25303de2a6f..ede5a58f95a 100644 --- a/gcc/cp/lang-options.h +++ b/gcc/cp/lang-options.h @@ -72,10 +72,10 @@ DEFINE_LANG_NAME ("C++") N_("Export functions even if they can be inlined") }, { "-fimplicit-templates", "" }, { "-fno-implicit-templates", - N_("Only emit explicit template instatiations") }, + N_("Only emit explicit template instantiations") }, { "-fimplicit-inline-templates", "" }, { "-fno-implicit-inline-templates", - N_("Only emit explicit instatiations of inline templates") }, + N_("Only emit explicit instantiations of inline templates") }, { "-finit-priority", "" }, { "-fno-init-priority", "" }, { "-fmemoize-lookups", "" }, diff --git a/gcc/gcc.c b/gcc/gcc.c index 37f8b2c4205..8bfc0846320 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -3022,7 +3022,7 @@ display_help () fputs (_(" -o Place the output into \n"), stdout); fputs (_("\ -x Specify the language of the following input files\n\ - Permissable languages include: c c++ assembler none\n\ + Permissible languages include: c c++ assembler none\n\ 'none' means revert to the default behavior of\n\ guessing the language based on the file's extension\n\ "), stdout); diff --git a/gcc/params.def b/gcc/params.def index 451c1a8d729..cd68c03929f 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -94,7 +94,7 @@ DEFPARAM (PARAM_MAX_INLINE_INSNS, value specified by the "min-inline-insns" parameter. */ DEFPARAM (PARAM_MAX_INLINE_SLOPE, "max-inline-slope", - "The slope of the linear funtion throttling inlining after the recursive inlining limit has been reached is given by the negative reciprocal value of this parameter", + "The slope of the linear function throttling inlining after the recursive inlining limit has been reached is given by the negative reciprocal value of this parameter", 32) /* When gcc has inlined so many instructions (by repeated diff --git a/gcc/toplev.c b/gcc/toplev.c index 4d7e35141a6..e48eff36a07 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1116,9 +1116,9 @@ static const lang_independent_options f_options[] = {"sched-spec-load-dangerous",&flag_schedule_speculative_load_dangerous, 1, N_("Allow speculative motion of more loads") }, {"sched2-use-superblocks", &flag_sched2_use_superblocks, 1, - N_("If scheduling post reload, do superblock sheduling") }, + N_("If scheduling post reload, do superblock scheduling") }, {"sched2-use-traces", &flag_sched2_use_traces, 1, - N_("If scheduling post reload, do trace sheduling") }, + N_("If scheduling post reload, do trace scheduling") }, {"branch-count-reg",&flag_branch_on_count_reg, 1, N_("Replace add,compare,branch with branch on count reg") }, {"pic", &flag_pic, 1, @@ -1159,7 +1159,7 @@ static const lang_independent_options f_options[] = {"data-sections", &flag_data_sections, 1, N_("place data items into their own section") }, {"verbose-asm", &flag_verbose_asm, 1, - N_("Add extra commentry to assembler output") }, + N_("Add extra commentary to assembler output") }, {"gnu-linker", &flag_gnu_linker, 1, N_("Output GNU ld formatted global initializers") }, {"regmove", &flag_regmove, 1, @@ -1187,7 +1187,7 @@ static const lang_independent_options f_options[] = {"align-functions", &align_functions, 0, N_("Align the start of functions") }, {"merge-constants", &flag_merge_constants, 1, - N_("Attempt to merge identical constants accross compilation units") }, + N_("Attempt to merge identical constants across compilation units") }, {"merge-all-constants", &flag_merge_constants, 2, N_("Attempt to merge identical constants and constant variables") }, {"dump-unnumbered", &flag_dump_unnumbered, 1,