Remove trailing spaces in binutils

This commit is contained in:
H.J. Lu 2015-08-12 04:42:37 -07:00
parent 3739860c11
commit 3aade68889
42 changed files with 296 additions and 296 deletions

View file

@ -147,7 +147,7 @@ cpp_line (void)
++s;
while (ISSPACE (*s))
++s;
/* Check for #pragma code_page ( DEFAULT | <nr>). */
len = strlen (s);
mlen = strlen ("pragma");
@ -703,7 +703,7 @@ rclex_string (void)
c = -1;
}
while (c != -1);
if (rclex_peekch () == '"')
rclex_readch ();
else
@ -781,7 +781,7 @@ yylex (void)
/* Clear token. */
rclex_tok_pos = 0;
rclex_tok[0] = 0;
if ((ch = rclex_readch ()) == -1)
return -1;
if (ch == '\n')
@ -797,15 +797,15 @@ yylex (void)
cpp_line ();
ch = IGNORED_TOKEN;
break;
case '{':
ch = IGNORE_CPP (BEG);
break;
case '}':
ch = IGNORE_CPP (END);
break;
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
yylval.i.val = read_digit (ch);