Commit bc83ee59 by Matt Kraai Committed by Jeff Law

* toplev.c (main): Fix misspellings of possibility and language.

From-SVN: r34381
parent 570eb5c8
Sat Jun 3 15:26:13 2000 Matt Kraai <kraai@alumni.carnegiemellon.edu>
* toplev.c (main): Fix misspellings of possibility and language.
2000-06-03 Richard Henderson <rth@cygnus.com> 2000-06-03 Richard Henderson <rth@cygnus.com>
* alias.c (record_alias_subset): Initialize has_zero_child in the * alias.c (record_alias_subset): Initialize has_zero_child in the
......
...@@ -4542,7 +4542,7 @@ main (argc, argv) ...@@ -4542,7 +4542,7 @@ main (argc, argv)
Some options are both language specific and language independent, Some options are both language specific and language independent,
eg --help. It is possible that there might be options that should eg --help. It is possible that there might be options that should
only be decoded in a language independent way if they were not only be decoded in a language independent way if they were not
decoded in a langauge specific way, which is why 'lang_processed' decoded in a language specific way, which is why 'lang_processed'
is passed in. */ is passed in. */
indep_processed = independent_decode_option (argc - i, argv + i, indep_processed = independent_decode_option (argc - i, argv + i,
lang_processed); lang_processed);
...@@ -4560,7 +4560,7 @@ main (argc, argv) ...@@ -4560,7 +4560,7 @@ main (argc, argv)
current language, but it is valid for another language. In order current language, but it is valid for another language. In order
to be compatible with previous versions of the compiler (which to be compatible with previous versions of the compiler (which
did not issue an error message in this case) we check for this did not issue an error message in this case) we check for this
possibilty here. If we do find a match, then if extra_warnings possibility here. If we do find a match, then if extra_warnings
is set we generate a warning message, otherwise we will just is set we generate a warning message, otherwise we will just
ignore the option. */ ignore the option. */
for (j = 0; j < NUM_ELEM (documented_lang_options); j++) for (j = 0; j < NUM_ELEM (documented_lang_options); j++)
...@@ -4580,7 +4580,7 @@ main (argc, argv) ...@@ -4580,7 +4580,7 @@ main (argc, argv)
warning ("Ignoring command line option '%s'", argv[i]); warning ("Ignoring command line option '%s'", argv[i]);
if (lang) if (lang)
warning ("\ warning ("\
(It is valid for %s but not the selected langauge)", lang); (It is valid for %s but not the selected language)", lang);
} }
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment