From adafc6f2ec12b2217cb6330403f062a84aae49ab Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 13 Mar 2008 16:01:24 +0000 Subject: [PATCH] Need a full review now that the theoretical grammar is implemented --- src/parser.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/parser.c b/src/parser.c index 53d8ddd..6936991 100644 --- a/src/parser.c +++ b/src/parser.c @@ -609,7 +609,6 @@ static int _direct_declarator(C99 * c99) static int _identifier(C99 * c99) /* identifier-nondigit { (identifier-nondigit | identifier-digit) } */ { - /* FIXME implement */ #ifdef DEBUG fprintf(stderr, "DEBUG: %s() \"%s\"\n", __func__, token_get_string(c99->token)); @@ -950,7 +949,6 @@ static int _specifier_qualifier_list(C99 * c99) static int _unary_operator(C99 * c99) /* "&" | "*" | "+" | "-" | "~" | "!" */ { - /* FIXME implement */ #ifdef DEBUG fprintf(stderr, "DEBUG: %s() %s\n", __func__, token_get_string(c99->token)); @@ -964,7 +962,6 @@ static int _assignment_operator(C99 * c99) /* "=" | "*=" | "/=" | "%=" | "+=" | "-=" | "<<=" | ">>=" | "&=" | "^=" * | "|=" */ { - /* FIXME implement */ #ifdef DEBUG fprintf(stderr, "DEBUG: %s()\n", __func__); #endif