From 71b16f4e18b2794b76cc80cb7d0303243656b050 Mon Sep 17 00:00:00 2001 From: grischka Date: Sun, 9 Oct 2016 20:33:14 +0200 Subject: 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 --- tccgen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tccgen.c') diff --git a/tccgen.c b/tccgen.c index abeb924..6447eb5 100644 --- a/tccgen.c +++ b/tccgen.c @@ -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; } -- cgit v1.3.1