Commit 7b6327ae by Richard Stallman

fix typos in comments.

From-SVN: r1264
parent f72aed24
...@@ -1294,7 +1294,7 @@ yylex () ...@@ -1294,7 +1294,7 @@ yylex ()
{ {
char *p1 = token_buffer; char *p1 = token_buffer;
/* Check for "0.0" and variants; /* Check for "0.0" and variants;
Sunos 4 spuriously returns ERANGE for them. */ SunOS 4 spuriously returns ERANGE for them. */
while (*p1 == '0') p1++; while (*p1 == '0') p1++;
if (*p1 == '.') if (*p1 == '.')
{ {
......
...@@ -5172,7 +5172,7 @@ c_expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line) ...@@ -5172,7 +5172,7 @@ c_expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
return; 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++) for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
o[i] = TREE_VALUE (tail); o[i] = TREE_VALUE (tail);
......
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