Revert "expand_mmac_params: Don't forget to handle TOK_OTHER"

This reverts commit 51fd86e0fe.

Revert due to BR 3026808.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2010-07-08 08:34:41 -07:00
parent 6f5f7ef417
commit 13dbfad76b

View File

@ -3824,9 +3824,8 @@ static Token *expand_mmac_params(Token * tline)
tline->text[0] == '%' && tline->text[1] == '$' && tline->text[0] == '%' && tline->text[1] == '$' &&
(tok_type_(tline->next, TOK_ID) || (tok_type_(tline->next, TOK_ID) ||
tok_type_(tline->next, TOK_PREPROC_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_NUMBER) ||
tok_type_(tline->next, TOK_OTHER))) { tok_type_(tline->next, TOK_FLOAT))) {
/* /*
* In a sake of backward compatibility we allow * In a sake of backward compatibility we allow
* to expand local single macro that early before * to expand local single macro that early before