From 6eac6b7254ad921ea37ab256a41083ec57a6dc0c Mon Sep 17 00:00:00 2001 From: Daniel Glöckner Date: Thu, 6 May 2010 21:42:37 +0200 Subject: Revert "tccpp: Allow local labels to start with a dot" This reverts commit f740485a5ab2ecef741bf1161b9feeea9c18cac0. It breaks access to structure elements starting with L --- tccpp.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'tccpp.c') diff --git a/tccpp.c b/tccpp.c index 51348cf..9a4cbca 100644 --- a/tccpp.c +++ b/tccpp.c @@ -2279,12 +2279,6 @@ maybe_newline: tok = TOK_PPNUM; break; case '.': - /* check first for a local label (.Lxx:) */ - if (p[1] == 'L') { - /* fast case */ - goto parse_ident_fast; - } - /* special dot handling because it can also start a number */ PEEKC(c, p); if (isnum(c)) { -- cgit v1.3.1