diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-01-16 22:45:49 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-01-16 15:45:49 -0700 |
commit | 62e7b7195c7714de352e90d3ff5ce15d5bf45b7d (patch) | |
tree | 999db5731f348deb0dbed044c6e3e6e43b3f7675 | |
parent | cbc546653d403b78ecab4ad44945ca5ba0c588e2 (diff) | |
download | gcc-62e7b7195c7714de352e90d3ff5ce15d5bf45b7d.zip gcc-62e7b7195c7714de352e90d3ff5ce15d5bf45b7d.tar.gz gcc-62e7b7195c7714de352e90d3ff5ce15d5bf45b7d.tar.bz2 |
cccp.c (print_help): Fix typos.
* cccp.c (print_help): Fix typos.
* cpplib.c (print_help): Fix typos.
* toplev.c (f_optiosn): Fix typos.
(documented_lang_options): Fix typos.
From-SVN: r24706
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/cccp.c | 4 | ||||
-rw-r--r-- | gcc/cpplib.c | 4 | ||||
-rw-r--r-- | gcc/toplev.c | 8 |
4 files changed, 15 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3b79eb0..800556e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +Sat Jan 16 23:40:33 1999 Jeffrey A Law (law@cygnus.com) + + * cccp.c (print_help): Fix typos. + * cpplib.c (print_help): Fix typos. + * toplev.c (f_optiosn): Fix typos. + (documented_lang_options): Fix typos. + Sat Jan 16 21:48:17 1999 Marc Espie (Marc.Espie@openbsd.org) * gcc.c: (do_spec_1): Fix obvious typo. @@ -1178,10 +1178,10 @@ print_help () printf (" -Wcomment{s} Warn if one comment starts inside another\n"); printf (" -Wno-comment{s} Do not warn about comments\n"); printf (" -Wtraditional Warn if a macro argument is/would be turned into\n"); - printf (" a string if -tradtional is specified\n"); + printf (" a string if -traditional is specified\n"); printf (" -Wno-traditional Do not warn about stringification\n"); printf (" -Wundef Warn if an undefined macro is used by #if\n"); - printf (" -Wno-undef Do not warn about testing udefined macros\n"); + printf (" -Wno-undef Do not warn about testing undefined macros\n"); printf (" -Wimport Warn about the use of the #import directive\n"); printf (" -Wno-import Do not warn about the use of #import\n"); printf (" -Werror Treat all warnings as errors\n"); diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 2c4afab..1c0b6c5 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -5286,10 +5286,10 @@ print_help () printf (" -Wcomment{s} Warn if one comment starts inside another\n"); printf (" -Wno-comment{s} Do not warn about comments\n"); printf (" -Wtraditional Warn if a macro argument is/would be turned into\n"); - printf (" a string if -tradtional is specified\n"); + printf (" a string if -traditional is specified\n"); printf (" -Wno-traditional Do not warn about stringification\n"); printf (" -Wundef Warn if an undefined macro is used by #if\n"); - printf (" -Wno-undef Do not warn about testing udefined macros\n"); + printf (" -Wno-undef Do not warn about testing undefined macros\n"); printf (" -Wimport Warn about the use of the #import directive\n"); printf (" -Wno-import Do not warn about the use of #import\n"); printf (" -Werror Treat all warnings as errors\n"); diff --git a/gcc/toplev.c b/gcc/toplev.c index 5a4fbfe..5bd82dc 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -819,7 +819,7 @@ lang_independent_options f_options[] = {"strength-reduce", &flag_strength_reduce, 1, "Perform strength reduction optimisations" }, {"unroll-loops", &flag_unroll_loops, 1, - "Perform loop unrolling when interation count is known" }, + "Perform loop unrolling when iteration count is known" }, {"unroll-all-loops", &flag_unroll_all_loops, 1, "Perform loop unrolling for all loops" }, {"move-all-movables", &flag_move_all_movables, 1, @@ -896,7 +896,7 @@ lang_independent_options f_options[] = {"test-coverage", &flag_test_coverage, 1, "Create data files needed by gcov" }, {"branch-probabilities", &flag_branch_probabilities, 1, - "Use profiling information for branch porbabilities" }, + "Use profiling information for branch probabilities" }, {"fast-math", &flag_fast_math, 1, "Improve FP speed by violating ANSI & IEEE rules" }, {"common", &flag_no_common, 0, @@ -984,7 +984,7 @@ documented_lang_options[] = { "-fno-freestanding", "" }, { "-fcond-mismatch", "Allow different types as args of ? operator"}, { "-fno-cond-mismatch", "" }, - { "-fdollars-in-identifiers", "Allow the use of $ inside indentifiers" }, + { "-fdollars-in-identifiers", "Allow the use of $ inside identifiers" }, { "-fno-dollars-in-identifiers", "" }, { "-fident", "" }, { "-fno-ident", "Ignore #ident directives" }, @@ -1091,7 +1091,7 @@ documented_lang_options[] = { "-lang-objc", "" }, { "-gen-decls", "Dump decls to a .decl file" }, - { "-fgnu-runtime", "Generate code for GNU runtime envrionment" }, + { "-fgnu-runtime", "Generate code for GNU runtime environment" }, { "-fno-gnu-runtime", "" }, { "-fnext-runtime", "Generate code for NeXT runtime environment" }, { "-fno-next-runtime", "" }, |