- Fix minor glitch in romcc where it would not return from a header file

if it had a preprocessor directive on the last line.


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1769 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Eric Biederman 2004-11-09 00:05:42 +00:00
parent 12eb7bc5ad
commit 7dd185c885
1 changed files with 1 additions and 1 deletions

View File

@ -4838,7 +4838,7 @@ static void token(struct compile_state *state, struct token *tk)
}
/* When not in macro context hide EOL */
else if ((tk->tok == TOK_EOL) && (state->token_base == 0)) {
next_token(state, tk);
cpp_token(state, tk);
rescan = 1;
}
} while(rescan);