From 75c6695932b55b914f16b20dc32ff3ef1203ed4b Mon Sep 17 00:00:00 2001 From: Joe Soroka Date: Tue, 1 Feb 2011 13:23:40 -0800 Subject: tccpp: fix bug in handling of recursive macros --- tcc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tcc.h') diff --git a/tcc.h b/tcc.h index 7d42607..a3a9c78 100644 --- a/tcc.h +++ b/tcc.h @@ -683,6 +683,7 @@ struct TCCState { #define TOK_DOTS 0xcc /* three dots */ #define TOK_SHR 0xcd /* unsigned shift right */ #define TOK_PPNUM 0xce /* preprocessor number */ +#define TOK_NOSUBST 0xcf /* means following token has already been pp'd */ #define TOK_SHL 0x01 /* shift left */ #define TOK_SAR 0x02 /* signed shift right */ -- cgit v1.3.1