Revert "tccpp: Allow local labels to start with a dot"

This reverts commit f740485a5a.

It breaks access to structure elements starting with L
This commit is contained in:
Daniel Glöckner
2010-05-06 21:42:37 +02:00
parent 8eb86ab78d
commit 6eac6b7254
2 changed files with 1 additions and 10 deletions

View File

@ -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)) {