Implement simplified substitution for function-like macro invocation.

This supports function-like macro invocation but without any argument
substitution. This now makes test 11 through 14 pass.
This commit is contained in:
Carl Worth
2010-05-25 16:28:26 -07:00
parent e6fb7827c9
commit b1854fdfb6
3 changed files with 168 additions and 21 deletions
+1
View File
@@ -51,6 +51,7 @@ typedef union YYSTYPE
{
int ival;
char *str;
string_list_t *string_list;
token_t *token;
token_list_t *token_list;
} YYSTYPE;