- 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:
parent
12eb7bc5ad
commit
7dd185c885
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue