c-pragma.c (maybe_apply_renaming_pragma): Fix typo.
authorKriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
Tue, 29 Apr 2003 14:16:48 +0000 (14:16 +0000)
committerKriang Lerdsuwanakij <lerdsuwa@gcc.gnu.org>
Tue, 29 Apr 2003 14:16:48 +0000 (14:16 +0000)
* 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

12 files changed:
gcc/ChangeLog
gcc/c-pragma.c
gcc/config/c4x/c4x.h
gcc/config/mcore/mcore.h
gcc/config/s390/s390.h
gcc/config/v850/v850.h
gcc/cp/ChangeLog
gcc/cp/call.c
gcc/cp/lang-options.h
gcc/gcc.c
gcc/params.def
gcc/toplev.c

index 3b02732bb0f786deda8cc5d328fa9b678eda24a6..2bd830bba185c7a0219120210d89d43be9897fef 100644 (file)
@@ -1,3 +1,14 @@
+2003-04-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
+
+       * 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 <joern.rennecke@superh.com>
 
        * varasm.c (default_assemble_visibility): Use assemble_name.
index 78e9d9dd1055cb3d35b2e3a4155f7f49fdc7c416..7f026d10b69935b2913ea8b4a8177165b747d0ff 100644 (file)
@@ -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);
     }
 
index e414a241342700f01609abb72328aa855bfeffc5..8a703fac93cd168619c4fa9a6c8e1caf5468915f 100644 (file)
   { "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,                             \
index b8dce6a4c3996a9d9685b90c26366eaddefc5498..fa8707e69b4dc2f0184121f624233f1a9579e6a0 100644 (file)
@@ -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,                               \
index b5f40554e0e56b539d5eaee21ec2887b501f2cba..5bd0ab4405d656dd530ed443e9c9141d8ba2db67 100644 (file)
@@ -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")},    \
index b18d85afceda9e7f91a17d183e7a082b7005847e..5a6431dfd4f9337b760a8f2b2ce502d16ec9f5f6 100644 (file)
@@ -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") },\
index 995f8bb52b82822dad99904e8118a274a8823ec7..97bcb2357783de66e79ddc985b51b7d993b7605c 100644 (file)
@@ -1,3 +1,8 @@
+2003-04-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
+
+       * call.c (build_operator_new_call): Fix typo.
+       * lang-options.h: Likewise.
+
 2003-04-29  Mark Mitchell  <mark@codesourcery.com>
 
        * decl.c (maybe_commonize_var): Further tweak support for systems
index 947151eea41c30771e0563cfca569007b0db6058..2340d41f6a056bca493caef42e02630a1a1448db 100644 (file)
@@ -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);
index 25303de2a6fd357b7c3ac0c25fadd0567422007d..ede5a58f95aa7560a138ea5cdfa98ca7c2f83b7f 100644 (file)
@@ -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", "" },
index 37f8b2c42052bb6019bd10a947522865424845d3..8bfc08463201d2b56208e7a39e94a961faf6cce1 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -3022,7 +3022,7 @@ display_help ()
   fputs (_("  -o <file>                Place the output into <file>\n"), stdout);
   fputs (_("\
   -x <language>            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);
index 451c1a8d729a86f6cd7287be7572ab1777061e09..cd68c03929f24eddd8ea4eb4baf6e53668e02f1e 100644 (file)
@@ -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
index 4d7e35141a6d6f81124284edf7702a0afa308d3b..e48eff36a072d958ae96a4a2fca2862a231d0945 100644 (file)
@@ -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,