From 13dbfad76b4d3dbf27ef41761873584c6bd9fd7f Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 8 Jul 2010 08:34:41 -0700 Subject: [PATCH] Revert "expand_mmac_params: Don't forget to handle TOK_OTHER" This reverts commit 51fd86e0fed8f5162f8c1e45e4ceaf237d6e5539. Revert due to BR 3026808. Signed-off-by: H. Peter Anvin --- preproc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/preproc.c b/preproc.c index 0ae21ccb..a881dcef 100644 --- a/preproc.c +++ b/preproc.c @@ -3824,9 +3824,8 @@ static Token *expand_mmac_params(Token * tline) tline->text[0] == '%' && tline->text[1] == '$' && (tok_type_(tline->next, TOK_ID) || tok_type_(tline->next, TOK_PREPROC_ID) || - tok_type_(tline->next, TOK_FLOAT) || tok_type_(tline->next, TOK_NUMBER) || - tok_type_(tline->next, TOK_OTHER))) { + tok_type_(tline->next, TOK_FLOAT))) { /* * In a sake of backward compatibility we allow * to expand local single macro that early before -- 2.11.4.GIT