aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMatt Kraai <kraai@alumni.carnegiemellon.edu>2000-06-03 21:28:37 +0000
committerJeff Law <law@gcc.gnu.org>2000-06-03 15:28:37 -0600
commitbc83ee5999085072043a6a3659a3e25c0dcaeaa9 (patch)
tree4d4e211950a537c834bea9e1716d5d0f0a79218a /gcc
parent570eb5c8b940303d53772b8fb12c22fab56362a6 (diff)
downloadgcc-bc83ee5999085072043a6a3659a3e25c0dcaeaa9.zip
gcc-bc83ee5999085072043a6a3659a3e25c0dcaeaa9.tar.gz
gcc-bc83ee5999085072043a6a3659a3e25c0dcaeaa9.tar.bz2
* toplev.c (main): Fix misspellings of possibility and language.
From-SVN: r34381
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/toplev.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 504a29f..834d7f2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+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>
* alias.c (record_alias_subset): Initialize has_zero_child in the
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 5fa9851..91a1dff 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -4542,7 +4542,7 @@ main (argc, argv)
Some options are both language specific and language independent,
eg --help. It is possible that there might be options that should
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. */
indep_processed = independent_decode_option (argc - i, argv + i,
lang_processed);
@@ -4560,7 +4560,7 @@ main (argc, argv)
current language, but it is valid for another language. In order
to be compatible with previous versions of the compiler (which
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
ignore the option. */
for (j = 0; j < NUM_ELEM (documented_lang_options); j++)
@@ -4580,7 +4580,7 @@ main (argc, argv)
warning ("Ignoring command line option '%s'", argv[i]);
if (lang)
warning ("\
-(It is valid for %s but not the selected langauge)", lang);
+(It is valid for %s but not the selected language)", lang);
}
}
else