tccpp : "tcc -E -P" : suppress empty lines

Also:
- regenerate all tests/pp/*.expect with gcc
- test "insert one space" feature
- test "0x1E-1" in asm mode case
- PARSE_FLAG_SPACES: ignore \f\v\r better
- tcc.h: move some things
This commit is contained in:
grischka
2016-10-09 20:33:14 +02:00
parent 78c08898ae
commit 71b16f4e18
9 changed files with 82 additions and 89 deletions

View File

@ -6334,7 +6334,7 @@ static int decl0(int l, int is_for_loop_init)
}
/* special test for old K&R protos without explicit int
type. Only accepted when defining global data */
if (l == VT_LOCAL || tok < TOK_DEFINE)
if (l == VT_LOCAL || tok < TOK_UIDENT)
break;
btype.t = VT_INT;
}