aboutsummaryrefslogtreecommitdiff
path: root/tccpp.c
diff options
context:
space:
mode:
authorDaniel Glöckner <daniel-gl@gmx.net>2010-05-06 21:42:37 +0200
committerDaniel Glöckner <daniel-gl@gmx.net>2010-05-06 21:42:37 +0200
commit6eac6b7254ad921ea37ab256a41083ec57a6dc0c (patch)
treec1258183db381f62bb24782a7ae13126e3e6d69b /tccpp.c
parent8eb86ab78d19cc9e97b09cd6107397221552817d (diff)
downloadtinycc-6eac6b7254ad921ea37ab256a41083ec57a6dc0c.tar.gz
tinycc-6eac6b7254ad921ea37ab256a41083ec57a6dc0c.tar.bz2
Revert "tccpp: Allow local labels to start with a dot"
This reverts commit f740485a5ab2ecef741bf1161b9feeea9c18cac0. It breaks access to structure elements starting with L
Diffstat (limited to 'tccpp.c')
-rw-r--r--tccpp.c6
1 files changed, 0 insertions, 6 deletions
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)) {