aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-06-24 04:04:50 +0000
committerRichard Stallman <rms@gnu.org>1992-06-24 04:04:50 +0000
commit7b6327ae85fd9785272447667dc693a404eab059 (patch)
tree85cda437de3acd5408efd730a463b7e2d5ee446c
parentf72aed244a1d10f19ba9d3ea943d9bb32fb02041 (diff)
downloadgcc-7b6327ae85fd9785272447667dc693a404eab059.zip
gcc-7b6327ae85fd9785272447667dc693a404eab059.tar.gz
gcc-7b6327ae85fd9785272447667dc693a404eab059.tar.bz2
fix typos in comments.
From-SVN: r1264
-rw-r--r--gcc/c-lex.c2
-rw-r--r--gcc/c-typeck.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c
index 1d3c8e3..3611efb 100644
--- a/gcc/c-lex.c
+++ b/gcc/c-lex.c
@@ -1294,7 +1294,7 @@ yylex ()
{
char *p1 = token_buffer;
/* Check for "0.0" and variants;
- Sunos 4 spuriously returns ERANGE for them. */
+ SunOS 4 spuriously returns ERANGE for them. */
while (*p1 == '0') p1++;
if (*p1 == '.')
{
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c
index 699532e..12505e7 100644
--- a/gcc/c-typeck.c
+++ b/gcc/c-typeck.c
@@ -5172,7 +5172,7 @@ c_expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
return;
}
- /* Record the contents of OUTPUTS before it is modifed. */
+ /* Record the contents of OUTPUTS before it is modified. */
for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
o[i] = TREE_VALUE (tail);