Remove trailing spaces in binutils
This commit is contained in:
parent
3739860c11
commit
3aade68889
42 changed files with 296 additions and 296 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue