diff --git a/corpus/expressions.txt b/corpus/expressions.txt index c1346d8..c20ecac 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -206,6 +206,7 @@ Math operators int main() { -a / b + c * -d; a++ - ++b + c-- + --d; + ++L; } --- @@ -229,7 +230,8 @@ int main() { (update_expression (identifier)) (update_expression (identifier))) (update_expression (identifier))) - (update_expression (identifier))))))) + (update_expression (identifier)))) + (expression_statement (update_expression (identifier)))))) ============================================ The comma operator diff --git a/grammar.js b/grammar.js index e2e4fcc..4473012 100644 --- a/grammar.js +++ b/grammar.js @@ -772,8 +772,7 @@ module.exports = grammar({ }, char_literal: $ => seq( - optional('L'), - '\'', + choice('L\'', '\''), choice( $.escape_sequence, token.immediate(/[^\n']/) @@ -787,8 +786,7 @@ module.exports = grammar({ ), string_literal: $ => seq( - optional('L'), - '"', + choice('L"', '"'), repeat(choice( token.immediate(prec(1, /[^\\"\n]+/)), $.escape_sequence diff --git a/src/grammar.json b/src/grammar.json index 542a9e6..17f4da9 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4902,17 +4902,14 @@ "members": [ { "type": "STRING", - "value": "L" + "value": "L'" }, { - "type": "BLANK" + "type": "STRING", + "value": "'" } ] }, - { - "type": "STRING", - "value": "'" - }, { "type": "CHOICE", "members": [ @@ -4959,17 +4956,14 @@ "members": [ { "type": "STRING", - "value": "L" + "value": "L\"" }, { - "type": "BLANK" + "type": "STRING", + "value": "\"" } ] }, - { - "type": "STRING", - "value": "\"" - }, { "type": "REPEAT", "content": { diff --git a/src/node-types.json b/src/node-types.json index 1c1d336..eba3351 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2822,13 +2822,17 @@ "named": true }, { - "type": "L", + "type": "L'", "named": false }, { "type": "'", "named": false }, + { + "type": "L\"", + "named": false + }, { "type": "\"", "named": false diff --git a/src/parser.c b/src/parser.c index e5dca7f..0d632cc 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,10 +6,10 @@ #endif #define LANGUAGE_VERSION 10 -#define STATE_COUNT 1309 -#define SYMBOL_COUNT 220 +#define STATE_COUNT 1285 +#define SYMBOL_COUNT 221 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 104 +#define TOKEN_COUNT 105 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 24 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -107,136 +107,137 @@ enum { anon_sym_DOT = 90, anon_sym_DASH_GT = 91, sym_number_literal = 92, - anon_sym_L = 93, + anon_sym_L_SQUOTE = 93, anon_sym_SQUOTE = 94, aux_sym_char_literal_token1 = 95, - anon_sym_DQUOTE = 96, - aux_sym_string_literal_token1 = 97, - sym_escape_sequence = 98, - sym_system_lib_string = 99, - sym_true = 100, - sym_false = 101, - sym_null = 102, - sym_comment = 103, - sym_translation_unit = 104, - sym_preproc_include = 105, - sym_preproc_def = 106, - sym_preproc_function_def = 107, - sym_preproc_params = 108, - sym_preproc_call = 109, - sym_preproc_if = 110, - sym_preproc_ifdef = 111, - sym_preproc_else = 112, - sym_preproc_elif = 113, - sym_preproc_if_in_field_declaration_list = 114, - sym_preproc_ifdef_in_field_declaration_list = 115, - sym_preproc_else_in_field_declaration_list = 116, - sym_preproc_elif_in_field_declaration_list = 117, - sym_function_definition = 118, - sym_declaration = 119, - sym_type_definition = 120, - sym__declaration_specifiers = 121, - sym_linkage_specification = 122, - sym_attribute_specifier = 123, - sym_declaration_list = 124, - sym__declarator = 125, - sym__field_declarator = 126, - sym__type_declarator = 127, - sym__abstract_declarator = 128, - sym_parenthesized_declarator = 129, - sym_parenthesized_field_declarator = 130, - sym_parenthesized_type_declarator = 131, - sym_abstract_parenthesized_declarator = 132, - sym_pointer_declarator = 133, - sym_pointer_field_declarator = 134, - sym_pointer_type_declarator = 135, - sym_abstract_pointer_declarator = 136, - sym_function_declarator = 137, - sym_function_field_declarator = 138, - sym_function_type_declarator = 139, - sym_abstract_function_declarator = 140, - sym_array_declarator = 141, - sym_array_field_declarator = 142, - sym_array_type_declarator = 143, - sym_abstract_array_declarator = 144, - sym_init_declarator = 145, - sym_compound_statement = 146, - sym_storage_class_specifier = 147, - sym_type_qualifier = 148, - sym__type_specifier = 149, - sym_sized_type_specifier = 150, - sym_enum_specifier = 151, - sym_enumerator_list = 152, - sym_struct_specifier = 153, - sym_union_specifier = 154, - sym_field_declaration_list = 155, - sym__field_declaration_list_item = 156, - sym_field_declaration = 157, - sym_bitfield_clause = 158, - sym_enumerator = 159, - sym_parameter_list = 160, - sym_parameter_declaration = 161, - sym_labeled_statement = 162, - sym_expression_statement = 163, - sym_if_statement = 164, - sym_switch_statement = 165, - sym_switch_body = 166, - sym_case_statement = 167, - sym_while_statement = 168, - sym_do_statement = 169, - sym_for_statement = 170, - sym_return_statement = 171, - sym_break_statement = 172, - sym_continue_statement = 173, - sym_goto_statement = 174, - sym__expression = 175, - sym_comma_expression = 176, - sym_conditional_expression = 177, - sym_assignment_expression = 178, - sym_pointer_expression = 179, - sym_unary_expression = 180, - sym_binary_expression = 181, - sym_update_expression = 182, - sym_cast_expression = 183, - sym_type_descriptor = 184, - sym_sizeof_expression = 185, - sym_subscript_expression = 186, - sym_call_expression = 187, - sym_argument_list = 188, - sym_field_expression = 189, - sym_compound_literal_expression = 190, - sym_parenthesized_expression = 191, - sym_initializer_list = 192, - sym_initializer_pair = 193, - sym_subscript_designator = 194, - sym_field_designator = 195, - sym_char_literal = 196, - sym_concatenated_string = 197, - sym_string_literal = 198, - sym__empty_declaration = 199, - sym_macro_type_specifier = 200, - aux_sym_translation_unit_repeat1 = 201, - aux_sym_preproc_params_repeat1 = 202, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 203, - aux_sym_declaration_repeat1 = 204, - aux_sym_type_definition_repeat1 = 205, - aux_sym_type_definition_repeat2 = 206, - aux_sym__declaration_specifiers_repeat1 = 207, - aux_sym_function_declarator_repeat1 = 208, - aux_sym_sized_type_specifier_repeat1 = 209, - aux_sym_enumerator_list_repeat1 = 210, - aux_sym_field_declaration_repeat1 = 211, - aux_sym_parameter_list_repeat1 = 212, - aux_sym_switch_body_repeat1 = 213, - aux_sym_case_statement_repeat1 = 214, - aux_sym_argument_list_repeat1 = 215, - aux_sym_initializer_list_repeat1 = 216, - aux_sym_initializer_pair_repeat1 = 217, - aux_sym_concatenated_string_repeat1 = 218, - aux_sym_string_literal_repeat1 = 219, - alias_sym_statement_identifier = 220, - alias_sym_field_identifier = 221, - alias_sym_type_identifier = 222, + anon_sym_L_DQUOTE = 96, + anon_sym_DQUOTE = 97, + aux_sym_string_literal_token1 = 98, + sym_escape_sequence = 99, + sym_system_lib_string = 100, + sym_true = 101, + sym_false = 102, + sym_null = 103, + sym_comment = 104, + sym_translation_unit = 105, + sym_preproc_include = 106, + sym_preproc_def = 107, + sym_preproc_function_def = 108, + sym_preproc_params = 109, + sym_preproc_call = 110, + sym_preproc_if = 111, + sym_preproc_ifdef = 112, + sym_preproc_else = 113, + sym_preproc_elif = 114, + sym_preproc_if_in_field_declaration_list = 115, + sym_preproc_ifdef_in_field_declaration_list = 116, + sym_preproc_else_in_field_declaration_list = 117, + sym_preproc_elif_in_field_declaration_list = 118, + sym_function_definition = 119, + sym_declaration = 120, + sym_type_definition = 121, + sym__declaration_specifiers = 122, + sym_linkage_specification = 123, + sym_attribute_specifier = 124, + sym_declaration_list = 125, + sym__declarator = 126, + sym__field_declarator = 127, + sym__type_declarator = 128, + sym__abstract_declarator = 129, + sym_parenthesized_declarator = 130, + sym_parenthesized_field_declarator = 131, + sym_parenthesized_type_declarator = 132, + sym_abstract_parenthesized_declarator = 133, + sym_pointer_declarator = 134, + sym_pointer_field_declarator = 135, + sym_pointer_type_declarator = 136, + sym_abstract_pointer_declarator = 137, + sym_function_declarator = 138, + sym_function_field_declarator = 139, + sym_function_type_declarator = 140, + sym_abstract_function_declarator = 141, + sym_array_declarator = 142, + sym_array_field_declarator = 143, + sym_array_type_declarator = 144, + sym_abstract_array_declarator = 145, + sym_init_declarator = 146, + sym_compound_statement = 147, + sym_storage_class_specifier = 148, + sym_type_qualifier = 149, + sym__type_specifier = 150, + sym_sized_type_specifier = 151, + sym_enum_specifier = 152, + sym_enumerator_list = 153, + sym_struct_specifier = 154, + sym_union_specifier = 155, + sym_field_declaration_list = 156, + sym__field_declaration_list_item = 157, + sym_field_declaration = 158, + sym_bitfield_clause = 159, + sym_enumerator = 160, + sym_parameter_list = 161, + sym_parameter_declaration = 162, + sym_labeled_statement = 163, + sym_expression_statement = 164, + sym_if_statement = 165, + sym_switch_statement = 166, + sym_switch_body = 167, + sym_case_statement = 168, + sym_while_statement = 169, + sym_do_statement = 170, + sym_for_statement = 171, + sym_return_statement = 172, + sym_break_statement = 173, + sym_continue_statement = 174, + sym_goto_statement = 175, + sym__expression = 176, + sym_comma_expression = 177, + sym_conditional_expression = 178, + sym_assignment_expression = 179, + sym_pointer_expression = 180, + sym_unary_expression = 181, + sym_binary_expression = 182, + sym_update_expression = 183, + sym_cast_expression = 184, + sym_type_descriptor = 185, + sym_sizeof_expression = 186, + sym_subscript_expression = 187, + sym_call_expression = 188, + sym_argument_list = 189, + sym_field_expression = 190, + sym_compound_literal_expression = 191, + sym_parenthesized_expression = 192, + sym_initializer_list = 193, + sym_initializer_pair = 194, + sym_subscript_designator = 195, + sym_field_designator = 196, + sym_char_literal = 197, + sym_concatenated_string = 198, + sym_string_literal = 199, + sym__empty_declaration = 200, + sym_macro_type_specifier = 201, + aux_sym_translation_unit_repeat1 = 202, + aux_sym_preproc_params_repeat1 = 203, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 204, + aux_sym_declaration_repeat1 = 205, + aux_sym_type_definition_repeat1 = 206, + aux_sym_type_definition_repeat2 = 207, + aux_sym__declaration_specifiers_repeat1 = 208, + aux_sym_function_declarator_repeat1 = 209, + aux_sym_sized_type_specifier_repeat1 = 210, + aux_sym_enumerator_list_repeat1 = 211, + aux_sym_field_declaration_repeat1 = 212, + aux_sym_parameter_list_repeat1 = 213, + aux_sym_switch_body_repeat1 = 214, + aux_sym_case_statement_repeat1 = 215, + aux_sym_argument_list_repeat1 = 216, + aux_sym_initializer_list_repeat1 = 217, + aux_sym_initializer_pair_repeat1 = 218, + aux_sym_concatenated_string_repeat1 = 219, + aux_sym_string_literal_repeat1 = 220, + alias_sym_statement_identifier = 221, + alias_sym_field_identifier = 222, + alias_sym_type_identifier = 223, }; static const char *ts_symbol_names[] = { @@ -333,9 +334,10 @@ static const char *ts_symbol_names[] = { [anon_sym_DOT] = ".", [anon_sym_DASH_GT] = "->", [sym_number_literal] = "number_literal", - [anon_sym_L] = "L", + [anon_sym_L_SQUOTE] = "L'", [anon_sym_SQUOTE] = "'", [aux_sym_char_literal_token1] = "char_literal_token1", + [anon_sym_L_DQUOTE] = "L\"", [anon_sym_DQUOTE] = "\"", [aux_sym_string_literal_token1] = "string_literal_token1", [sym_escape_sequence] = "escape_sequence", @@ -838,7 +840,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_L] = { + [anon_sym_L_SQUOTE] = { .visible = true, .named = false, }, @@ -850,6 +852,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [anon_sym_L_DQUOTE] = { + .visible = true, + .named = false, + }, [anon_sym_DQUOTE] = { .visible = true, .named = false, @@ -1428,13 +1434,13 @@ static const TSFieldMapSlice ts_field_map_slices[] = { [11] = {.index = 12, .length = 1}, [12] = {.index = 12, .length = 1}, [13] = {.index = 13, .length = 2}, - [14] = {.index = 15, .length = 2}, - [15] = {.index = 17, .length = 1}, + [14] = {.index = 15, .length = 1}, + [15] = {.index = 16, .length = 2}, [16] = {.index = 18, .length = 1}, - [17] = {.index = 19, .length = 2}, - [18] = {.index = 21, .length = 1}, - [19] = {.index = 22, .length = 1}, - [20] = {.index = 23, .length = 2}, + [17] = {.index = 19, .length = 1}, + [18] = {.index = 20, .length = 2}, + [19] = {.index = 22, .length = 2}, + [20] = {.index = 24, .length = 1}, [21] = {.index = 1, .length = 1}, [22] = {.index = 25, .length = 2}, [23] = {.index = 27, .length = 2}, @@ -1518,22 +1524,22 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 2}, {field_name, 1}, [15] = - {field_left, 0}, - {field_right, 2}, - [17] = - {field_label, 0}, - [18] = {field_label, 1}, - [19] = + [16] = {field_argument, 1}, {field_directive, 0}, - [21] = + [18] = {field_condition, 1}, - [22] = + [19] = {field_parameters, 0}, - [23] = + [20] = {field_declarator, 1}, {field_type, 0}, + [22] = + {field_left, 0}, + {field_right, 2}, + [24] = + {field_label, 0}, [25] = {field_body, 2}, {field_value, 1}, @@ -1567,23 +1573,23 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [45] = {field_type, 0, .inherited = true}, [46] = - {field_name, 0}, - {field_type, 2}, - [48] = {field_body, 1}, {field_condition, 3}, - [50] = + [48] = {field_alternative, 2}, {field_condition, 1}, - [52] = + [50] = {field_type, 1}, {field_value, 3}, - [54] = + [52] = {field_declarator, 2}, {field_type, 1}, - [56] = + [54] = {field_declarator, 2}, {field_type, 0}, + [56] = + {field_name, 0}, + {field_type, 2}, [58] = {field_alternative, 2}, {field_name, 1}, @@ -1698,18 +1704,18 @@ static TSSymbol ts_alias_sequences[76][MAX_ALIAS_SEQUENCE_LENGTH] = { [3] = { [1] = alias_sym_type_identifier, }, - [12] = { + [11] = { [1] = alias_sym_type_identifier, }, [13] = { [1] = alias_sym_type_identifier, }, - [15] = { - [0] = alias_sym_statement_identifier, - }, - [16] = { + [14] = { [1] = alias_sym_statement_identifier, }, + [20] = { + [0] = alias_sym_statement_identifier, + }, [27] = { [2] = alias_sym_field_identifier, }, @@ -1727,11 +1733,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (lookahead == 0) ADVANCE(54); if (lookahead == '!') ADVANCE(132); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(29); + if (lookahead == '"') ADVANCE(181); + if (lookahead == '#') ADVANCE(28); if (lookahead == '%') ADVANCE(141); if (lookahead == '&') ADVANCE(130); - if (lookahead == '\'') ADVANCE(175); + if (lookahead == '\'') ADVANCE(176); if (lookahead == '(') ADVANCE(59); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(112); @@ -1747,6 +1753,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(116); if (lookahead == '>') ADVANCE(148); if (lookahead == '?') ADVANCE(118); + if (lookahead == 'L') ADVANCE(192); if (lookahead == '[') ADVANCE(113); if (lookahead == '\\') ADVANCE(27); if (lookahead == ']') ADVANCE(114); @@ -1761,28 +1768,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(2) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 1: if (lookahead == 0) ADVANCE(54); if (lookahead == '!') ADVANCE(131); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(33); + if (lookahead == '"') ADVANCE(181); + if (lookahead == '#') ADVANCE(32); if (lookahead == '&') ADVANCE(129); - if (lookahead == '\'') ADVANCE(175); + if (lookahead == '\'') ADVANCE(176); if (lookahead == '(') ADVANCE(108); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(111); if (lookahead == '+') ADVANCE(138); if (lookahead == ',') ADVANCE(61); if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(20); + if (lookahead == '.') ADVANCE(21); if (lookahead == '/') ADVANCE(18); if (lookahead == '0') ADVANCE(164); if (lookahead == ':') ADVANCE(117); if (lookahead == ';') ADVANCE(107); if (lookahead == '<') ADVANCE(26); if (lookahead == '=') ADVANCE(115); + if (lookahead == 'L') ADVANCE(192); if (lookahead == '[') ADVANCE(113); if (lookahead == ']') ADVANCE(114); if (lookahead == '{') ADVANCE(109); @@ -1795,16 +1803,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 2: if (lookahead == 0) ADVANCE(54); if (lookahead == '!') ADVANCE(132); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(29); + if (lookahead == '"') ADVANCE(181); + if (lookahead == '#') ADVANCE(28); if (lookahead == '%') ADVANCE(141); if (lookahead == '&') ADVANCE(130); - if (lookahead == '\'') ADVANCE(175); + if (lookahead == '\'') ADVANCE(176); if (lookahead == '(') ADVANCE(108); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(112); @@ -1820,6 +1828,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(116); if (lookahead == '>') ADVANCE(148); if (lookahead == '?') ADVANCE(118); + if (lookahead == 'L') ADVANCE(192); if (lookahead == '[') ADVANCE(113); if (lookahead == ']') ADVANCE(114); if (lookahead == '^') ADVANCE(145); @@ -1834,69 +1843,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(57); - if (lookahead == '/') ADVANCE(18); + if (lookahead == '\n') SKIP(13) + if (lookahead == '"') ADVANCE(181); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '\\') ADVANCE(27); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(3) + lookahead == ' ') ADVANCE(185); + if (lookahead != 0) ADVANCE(186); END_STATE(); case 4: - if (lookahead == '\n') SKIP(13) - if (lookahead == '"') ADVANCE(179); - if (lookahead == '/') ADVANCE(180); - if (lookahead == '\\') ADVANCE(27); + if (lookahead == '\n') SKIP(4) + if (lookahead == '/') ADVANCE(100); + if (lookahead == '\\') ADVANCE(103); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(183); - if (lookahead != 0) ADVANCE(184); + lookahead == ' ') ADVANCE(96); + if (lookahead != 0) ADVANCE(101); END_STATE(); case 5: - if (lookahead == '\n') SKIP(23) - if (lookahead == '/') ADVANCE(177); - if (lookahead == '\\') ADVANCE(178); + if (lookahead == '\n') ADVANCE(57); + if (lookahead == '(') ADVANCE(59); + if (lookahead == '/') ADVANCE(100); + if (lookahead == '\\') ADVANCE(103); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(176); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(176); + lookahead == ' ') ADVANCE(97); + if (lookahead != 0) ADVANCE(101); END_STATE(); case 6: - if (lookahead == '\n') SKIP(6) + if (lookahead == '\n') ADVANCE(57); if (lookahead == '/') ADVANCE(100); if (lookahead == '\\') ADVANCE(103); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(98); + lookahead == ' ') ADVANCE(97); if (lookahead != 0) ADVANCE(101); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(58); - if (lookahead == '(') ADVANCE(59); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '\n') SKIP(23) + if (lookahead == '/') ADVANCE(178); + if (lookahead == '\\') ADVANCE(179); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(99); - if (lookahead != 0) ADVANCE(101); + lookahead == ' ') ADVANCE(177); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(177); END_STATE(); case 8: if (lookahead == '\n') ADVANCE(58); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '\\') ADVANCE(103); + if (lookahead == '/') ADVANCE(18); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(99); - if (lookahead != 0) ADVANCE(101); + lookahead == ' ') SKIP(8) END_STATE(); case 9: if (lookahead == '!') ADVANCE(131); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(29); + if (lookahead == '"') ADVANCE(181); + if (lookahead == '#') ADVANCE(28); if (lookahead == '&') ADVANCE(129); - if (lookahead == '\'') ADVANCE(175); + if (lookahead == '\'') ADVANCE(176); if (lookahead == '(') ADVANCE(108); if (lookahead == '*') ADVANCE(111); if (lookahead == '+') ADVANCE(138); @@ -1906,6 +1915,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(18); if (lookahead == '0') ADVANCE(164); if (lookahead == ';') ADVANCE(107); + if (lookahead == 'L') ADVANCE(192); if (lookahead == '[') ADVANCE(113); if (lookahead == '{') ADVANCE(109); if (lookahead == '}') ADVANCE(110); @@ -1917,22 +1927,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 10: if (lookahead == '!') ADVANCE(131); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(31); + if (lookahead == '"') ADVANCE(181); + if (lookahead == '#') ADVANCE(30); if (lookahead == '&') ADVANCE(129); - if (lookahead == '\'') ADVANCE(175); + if (lookahead == '\'') ADVANCE(176); if (lookahead == '(') ADVANCE(108); if (lookahead == '*') ADVANCE(111); if (lookahead == '+') ADVANCE(138); if (lookahead == '-') ADVANCE(135); - if (lookahead == '.') ADVANCE(41); + if (lookahead == '.') ADVANCE(39); if (lookahead == '/') ADVANCE(18); if (lookahead == '0') ADVANCE(164); if (lookahead == ';') ADVANCE(107); + if (lookahead == 'L') ADVANCE(192); if (lookahead == '{') ADVANCE(109); if (lookahead == '~') ADVANCE(133); if (lookahead == '\t' || @@ -1942,12 +1953,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 11: if (lookahead == '!') ADVANCE(24); - if (lookahead == '"') ADVANCE(179); - if (lookahead == '#') ADVANCE(34); + if (lookahead == '"') ADVANCE(181); + if (lookahead == '#') ADVANCE(33); if (lookahead == '%') ADVANCE(141); if (lookahead == '&') ADVANCE(130); if (lookahead == '(') ADVANCE(108); @@ -1964,6 +1975,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(116); if (lookahead == '>') ADVANCE(148); if (lookahead == '?') ADVANCE(118); + if (lookahead == 'L') ADVANCE(193); if (lookahead == '[') ADVANCE(113); if (lookahead == ']') ADVANCE(114); if (lookahead == '^') ADVANCE(145); @@ -1976,15 +1988,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(11) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 12: if (lookahead == '!') ADVANCE(132); - if (lookahead == '"') ADVANCE(179); + if (lookahead == '"') ADVANCE(181); if (lookahead == '#') ADVANCE(35); if (lookahead == '%') ADVANCE(141); if (lookahead == '&') ADVANCE(130); - if (lookahead == '\'') ADVANCE(175); + if (lookahead == '\'') ADVANCE(176); if (lookahead == '(') ADVANCE(108); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(112); @@ -2000,6 +2012,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(116); if (lookahead == '>') ADVANCE(148); if (lookahead == '?') ADVANCE(118); + if (lookahead == 'L') ADVANCE(192); if (lookahead == '[') ADVANCE(113); if (lookahead == ']') ADVANCE(114); if (lookahead == '^') ADVANCE(145); @@ -2014,10 +2027,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(179); + if (lookahead == '"') ADVANCE(181); if (lookahead == '/') ADVANCE(18); if (lookahead == '\t' || lookahead == '\n' || @@ -2025,7 +2038,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(13) END_STATE(); case 14: - if (lookahead == '#') ADVANCE(30); + if (lookahead == '#') ADVANCE(29); if (lookahead == '/') ADVANCE(18); if (lookahead == '\t' || lookahead == '\n' || @@ -2033,10 +2046,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(14) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 15: - if (lookahead == '#') ADVANCE(32); + if (lookahead == '#') ADVANCE(31); if (lookahead == '/') ADVANCE(18); if (lookahead == '\t' || lookahead == '\n' || @@ -2044,11 +2057,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(15) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 16: if (lookahead == '*') ADVANCE(16); - if (lookahead == '/') ADVANCE(191); + if (lookahead == '/') ADVANCE(195); if (lookahead != 0) ADVANCE(17); END_STATE(); case 17: @@ -2057,26 +2070,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 18: if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(193); + if (lookahead == '/') ADVANCE(197); END_STATE(); case 19: - if (lookahead == '.') ADVANCE(60); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '0') ADVANCE(161); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(162); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(19); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '0') ADVANCE(165); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(41); - if (lookahead == '0') ADVANCE(160); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(161); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + if (lookahead == '.') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(160); END_STATE(); case 22: - if (lookahead == '.') ADVANCE(41); - if (lookahead == '0') ADVANCE(165); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); + if (lookahead == '.') ADVANCE(60); END_STATE(); case 23: if (lookahead == '/') ADVANCE(18); @@ -2089,13 +2102,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(147); END_STATE(); case 25: - if (lookahead == '>') ADVANCE(189); + if (lookahead == '>') ADVANCE(191); if (lookahead == '\\') ADVANCE(25); if (lookahead != 0 && lookahead != '\n') ADVANCE(26); END_STATE(); case 26: - if (lookahead == '>') ADVANCE(188); + if (lookahead == '>') ADVANCE(190); if (lookahead == '\\') ADVANCE(25); if (lookahead != 0 && lookahead != '\n') ADVANCE(26); @@ -2104,24 +2117,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'U') ADVANCE(52); if (lookahead == 'u') ADVANCE(48); if (lookahead == 'x') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(187); - if (lookahead != 0) ADVANCE(185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); + if (lookahead != 0) ADVANCE(187); END_STATE(); case 28: - if (lookahead == 'd') ADVANCE(37); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'e') ADVANCE(90); + if (lookahead == 'i') ADVANCE(82); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(28); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 29: - if (lookahead == 'd') ADVANCE(74); + if (lookahead == 'd') ADVANCE(75); if (lookahead == 'e') ADVANCE(90); - if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'i') ADVANCE(83); if (lookahead == '\t' || lookahead == ' ') ADVANCE(29); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 30: - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'e') ADVANCE(90); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'e') ADVANCE(92); if (lookahead == 'i') ADVANCE(82); if (lookahead == '\t' || lookahead == ' ') ADVANCE(30); @@ -2129,17 +2148,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 31: - if (lookahead == 'd') ADVANCE(74); + if (lookahead == 'd') ADVANCE(75); if (lookahead == 'e') ADVANCE(92); - if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'i') ADVANCE(83); if (lookahead == '\t' || lookahead == ' ') ADVANCE(31); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 32: - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'd') ADVANCE(75); if (lookahead == 'i') ADVANCE(82); if (lookahead == '\t' || lookahead == ' ') ADVANCE(32); @@ -2147,20 +2165,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 33: - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'i') ADVANCE(83); if (lookahead == '\t' || lookahead == ' ') ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 34: - if (lookahead == 'd') ADVANCE(74); - if (lookahead == 'i') ADVANCE(82); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(34); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); + if (lookahead == 'd') ADVANCE(37); END_STATE(); case 35: if (lookahead == 'e') ADVANCE(38); @@ -2174,43 +2187,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(36); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(28); + if (lookahead == 'n') ADVANCE(34); END_STATE(); case 39: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(160); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 42: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); END_STATE(); case 43: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); END_STATE(); case 44: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); END_STATE(); case 46: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 47: if (('0' <= lookahead && lookahead <= '9') || @@ -2244,8 +2257,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 53: if (lookahead != 0 && - lookahead != '\r') ADVANCE(193); - if (lookahead == '\r') ADVANCE(195); + lookahead != '\r') ADVANCE(197); + if (lookahead == '\r') ADVANCE(199); END_STATE(); case 54: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -2267,13 +2280,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 57: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(57); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(97); END_STATE(); case 58: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(58); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(99); END_STATE(); case 59: ACCEPT_TOKEN(anon_sym_LPAREN); @@ -2352,7 +2365,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 72: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'd') ADVANCE(74); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2368,7 +2381,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 74: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(80); + if (lookahead == 'e') ADVANCE(55); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2376,7 +2389,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 75: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(55); + if (lookahead == 'e') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2400,7 +2413,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 78: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(84); + if (lookahead == 'e') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2408,7 +2421,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 79: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(85); + if (lookahead == 'e') ADVANCE(84); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2416,7 +2429,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 80: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(87); + if (lookahead == 'f') ADVANCE(65); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2424,8 +2437,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 81: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(63); - if (lookahead == 'n') ADVANCE(70); + if (lookahead == 'f') ADVANCE(66); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2434,6 +2446,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 82: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'f') ADVANCE(63); + if (lookahead == 'n') ADVANCE(70); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2441,7 +2454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 83: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(65); + if (lookahead == 'f') ADVANCE(63); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2449,7 +2462,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 84: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(66); + if (lookahead == 'f') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2457,7 +2470,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 85: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(67); + if (lookahead == 'f') ADVANCE(87); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2490,7 +2503,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 89: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(83); + if (lookahead == 'i') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2546,43 +2559,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 96: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(17); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '/') ADVANCE(191); - if (lookahead == '\\') ADVANCE(106); - if (lookahead != 0) ADVANCE(97); - END_STATE(); - case 97: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(17); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '\\') ADVANCE(106); - if (lookahead != 0) ADVANCE(97); - END_STATE(); - case 98: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(6) + if (lookahead == '\n') SKIP(4) if (lookahead == '/') ADVANCE(100); if (lookahead == '\\') ADVANCE(103); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(98); + lookahead == ' ') ADVANCE(96); if (lookahead != 0) ADVANCE(101); END_STATE(); - case 99: + case 97: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(58); + if (lookahead == '\n') ADVANCE(57); if (lookahead == '/') ADVANCE(100); if (lookahead == '\\') ADVANCE(103); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(99); + lookahead == ' ') ADVANCE(97); if (lookahead != 0) ADVANCE(101); END_STATE(); + case 98: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(17); + if (lookahead == '*') ADVANCE(98); + if (lookahead == '/') ADVANCE(195); + if (lookahead == '\\') ADVANCE(106); + if (lookahead != 0) ADVANCE(99); + END_STATE(); + case 99: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(17); + if (lookahead == '*') ADVANCE(98); + if (lookahead == '\\') ADVANCE(106); + if (lookahead != 0) ADVANCE(99); + END_STATE(); case 100: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(97); - if (lookahead == '/') ADVANCE(194); + if (lookahead == '*') ADVANCE(99); + if (lookahead == '/') ADVANCE(198); if (lookahead == '\\') ADVANCE(103); if (lookahead != 0 && lookahead != '\n') ADVANCE(101); @@ -2611,16 +2624,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(194); - if (lookahead == '\r') ADVANCE(196); - if (lookahead == '\\') ADVANCE(192); + lookahead != '\\') ADVANCE(198); + if (lookahead == '\r') ADVANCE(200); + if (lookahead == '\\') ADVANCE(196); END_STATE(); case 105: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '*' && - lookahead != '\\') ADVANCE(97); - if (lookahead == '*') ADVANCE(96); + lookahead != '\\') ADVANCE(99); + if (lookahead == '*') ADVANCE(98); if (lookahead == '\\') ADVANCE(106); END_STATE(); case 106: @@ -2628,9 +2641,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\r' && lookahead != '*' && - lookahead != '\\') ADVANCE(97); + lookahead != '\\') ADVANCE(99); if (lookahead == '\r') ADVANCE(105); - if (lookahead == '*') ADVANCE(96); + if (lookahead == '*') ADVANCE(98); if (lookahead == '\\') ADVANCE(106); END_STATE(); case 107: @@ -2722,7 +2735,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 134: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(41); + if (lookahead == '.') ADVANCE(39); if (lookahead == '0') ADVANCE(164); if (lookahead == '=') ADVANCE(123); if (lookahead == '>') ADVANCE(159); @@ -2731,7 +2744,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 135: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(154); - if (lookahead == '.') ADVANCE(41); + if (lookahead == '.') ADVANCE(39); if (lookahead == '0') ADVANCE(164); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); @@ -2744,7 +2757,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 137: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(155); - if (lookahead == '.') ADVANCE(41); + if (lookahead == '.') ADVANCE(39); if (lookahead == '0') ADVANCE(164); if (lookahead == '=') ADVANCE(122); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); @@ -2752,7 +2765,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 138: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(155); - if (lookahead == '.') ADVANCE(41); + if (lookahead == '.') ADVANCE(39); if (lookahead == '0') ADVANCE(164); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); @@ -2764,7 +2777,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 140: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(193); + if (lookahead == '/') ADVANCE(197); if (lookahead == '=') ADVANCE(120); END_STATE(); case 141: @@ -2827,12 +2840,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(19); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + if (lookahead == '.') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(160); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(160); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_DASH_GT); @@ -2840,59 +2853,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 160: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(39); - if (lookahead == '.') ADVANCE(173); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(171); - if (lookahead == 'L' || + lookahead == 'L' || lookahead == 'U' || + lookahead == 'f' || lookahead == 'l' || lookahead == 'u') ADVANCE(174); - if (lookahead == 'b') ADVANCE(170); - if (lookahead == 'x') ADVANCE(43); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(169); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(172); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(160); END_STATE(); case 161: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(39); - if (lookahead == '.') ADVANCE(173); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == '.') ADVANCE(172); if (lookahead == 'F' || lookahead == 'f') ADVANCE(171); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || lookahead == 'u') ADVANCE(174); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'x') ADVANCE(45); if (lookahead == 'E' || lookahead == 'e') ADVANCE(169); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(172); + lookahead == 'p') ADVANCE(173); if (('A' <= lookahead && lookahead <= 'D') || ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); END_STATE(); case 162: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(41); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == '.') ADVANCE(172); if (lookahead == 'F' || - lookahead == 'L' || + lookahead == 'f') ADVANCE(171); + if (lookahead == 'L' || lookahead == 'U' || - lookahead == 'f' || lookahead == 'l' || lookahead == 'u') ADVANCE(174); if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(172); + lookahead == 'e') ADVANCE(169); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(173); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); END_STATE(); case 163: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(42); + if (lookahead == '\'') ADVANCE(44); if (lookahead == 'F' || lookahead == 'f') ADVANCE(163); if (lookahead == 'L' || @@ -2905,44 +2918,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 164: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '.') ADVANCE(173); + if (lookahead == '\'') ADVANCE(41); + if (lookahead == '.') ADVANCE(172); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || lookahead == 'u') ADVANCE(174); - if (lookahead == 'b') ADVANCE(22); - if (lookahead == 'x') ADVANCE(21); + if (lookahead == 'b') ADVANCE(20); + if (lookahead == 'x') ADVANCE(19); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(172); + lookahead == 'p') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 165: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '.') ADVANCE(173); + if (lookahead == '\'') ADVANCE(41); + if (lookahead == '.') ADVANCE(172); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || lookahead == 'u') ADVANCE(174); - if (lookahead == 'b') ADVANCE(40); - if (lookahead == 'x') ADVANCE(43); + if (lookahead == 'b') ADVANCE(41); + if (lookahead == 'x') ADVANCE(45); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(172); + lookahead == 'p') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 166: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '.') ADVANCE(173); + if (lookahead == '\'') ADVANCE(41); + if (lookahead == '.') ADVANCE(172); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || @@ -2952,12 +2965,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(172); + lookahead == 'p') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(166); END_STATE(); case 167: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(44); + if (lookahead == '\'') ADVANCE(42); if (lookahead == 'F' || lookahead == 'f') ADVANCE(168); if (lookahead == 'L' || @@ -2965,18 +2978,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'l' || lookahead == 'u') ADVANCE(174); if (lookahead == '+' || - lookahead == '-') ADVANCE(42); + lookahead == '-') ADVANCE(44); if (lookahead == 'E' || lookahead == 'e') ADVANCE(167); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(172); + lookahead == 'p') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || ('a' <= lookahead && lookahead <= 'd')) ADVANCE(168); END_STATE(); case 168: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(44); + if (lookahead == '\'') ADVANCE(42); if (lookahead == 'F' || lookahead == 'f') ADVANCE(168); if (lookahead == 'L' || @@ -2986,15 +2999,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E' || lookahead == 'e') ADVANCE(167); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(172); + lookahead == 'p') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || ('a' <= lookahead && lookahead <= 'd')) ADVANCE(168); END_STATE(); case 169: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(43); - if (lookahead == '.') ADVANCE(173); + if (lookahead == '\'') ADVANCE(45); + if (lookahead == '.') ADVANCE(172); if (lookahead == 'F' || lookahead == 'f') ADVANCE(171); if (lookahead == 'L' || @@ -3002,19 +3015,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'l' || lookahead == 'u') ADVANCE(174); if (lookahead == '+' || - lookahead == '-') ADVANCE(42); + lookahead == '-') ADVANCE(44); if (lookahead == 'E' || lookahead == 'e') ADVANCE(169); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(172); + lookahead == 'p') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); END_STATE(); case 170: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(43); - if (lookahead == '.') ADVANCE(173); + if (lookahead == '\'') ADVANCE(45); + if (lookahead == '.') ADVANCE(172); if (lookahead == 'F' || lookahead == 'f') ADVANCE(171); if (lookahead == 'L' || @@ -3024,15 +3037,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E' || lookahead == 'e') ADVANCE(169); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(172); + lookahead == 'p') ADVANCE(173); if (('A' <= lookahead && lookahead <= 'D') || ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); END_STATE(); case 171: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(43); - if (lookahead == '.') ADVANCE(173); + if (lookahead == '\'') ADVANCE(45); + if (lookahead == '.') ADVANCE(172); if (lookahead == 'F' || lookahead == 'f') ADVANCE(171); if (lookahead == 'L' || @@ -3042,7 +3055,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E' || lookahead == 'e') ADVANCE(169); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(172); + lookahead == 'p') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || ('a' <= lookahead && lookahead <= 'd')) ADVANCE(171); @@ -3050,32 +3063,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 172: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(163); + lookahead == 'f') ADVANCE(168); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || lookahead == 'u') ADVANCE(174); - if (lookahead == '+' || - lookahead == '-') ADVANCE(42); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(167); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(163); + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(168); END_STATE(); case 173: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(168); + lookahead == 'f') ADVANCE(163); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || lookahead == 'u') ADVANCE(174); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(167); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(172); + if (lookahead == '+' || + lookahead == '-') ADVANCE(44); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(168); + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(163); END_STATE(); case 174: ACCEPT_TOKEN(sym_number_literal); @@ -3087,131 +3100,154 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'u') ADVANCE(174); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); case 176: - ACCEPT_TOKEN(aux_sym_char_literal_token1); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 177: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(193); END_STATE(); case 178: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == 'U') ADVANCE(52); + if (lookahead == '*') ADVANCE(17); + if (lookahead == '/') ADVANCE(197); + END_STATE(); + case 179: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == 'U') ADVANCE(52); if (lookahead == 'u') ADVANCE(48); if (lookahead == 'x') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(187); - if (lookahead != 0) ADVANCE(185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); + if (lookahead != 0) ADVANCE(187); END_STATE(); - case 179: + case 180: + ACCEPT_TOKEN(anon_sym_L_DQUOTE); + END_STATE(); + case 181: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 180: + case 182: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '/') ADVANCE(184); + if (lookahead == '*') ADVANCE(184); + if (lookahead == '/') ADVANCE(186); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(184); + lookahead != '\\') ADVANCE(186); END_STATE(); - case 181: + case 183: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(181); - if (lookahead == '/') ADVANCE(184); + if (lookahead == '*') ADVANCE(183); + if (lookahead == '/') ADVANCE(186); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(182); + lookahead != '\\') ADVANCE(184); END_STATE(); - case 182: + case 184: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(181); + if (lookahead == '*') ADVANCE(183); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(182); + lookahead != '\\') ADVANCE(184); END_STATE(); - case 183: + case 185: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(180); + if (lookahead == '/') ADVANCE(182); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(183); + lookahead == ' ') ADVANCE(185); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(184); + lookahead != '\\') ADVANCE(186); END_STATE(); - case 184: + case 186: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(184); + lookahead != '\\') ADVANCE(186); END_STATE(); - case 185: + case 187: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 186: + case 188: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(187); END_STATE(); - case 187: + case 189: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(188); END_STATE(); - case 188: + case 190: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 189: + case 191: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(188); + if (lookahead == '>') ADVANCE(190); if (lookahead == '\\') ADVANCE(25); if (lookahead != 0 && lookahead != '\n') ADVANCE(26); END_STATE(); - case 190: + case 192: ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(180); + if (lookahead == '\'') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); - case 191: + case 193: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(180); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + END_STATE(); + case 194: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + END_STATE(); + case 195: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 192: + case 196: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(194); + if (lookahead == '\r') ADVANCE(198); if (lookahead == '\\') ADVANCE(104); if (lookahead != 0 && - lookahead != '\n') ADVANCE(194); + lookahead != '\n') ADVANCE(198); END_STATE(); - case 193: + case 197: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') ADVANCE(53); if (lookahead != 0 && - lookahead != '\n') ADVANCE(193); + lookahead != '\n') ADVANCE(197); END_STATE(); - case 194: + case 198: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') ADVANCE(104); if (lookahead != 0 && - lookahead != '\n') ADVANCE(194); + lookahead != '\n') ADVANCE(198); END_STATE(); - case 195: + case 199: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(193); + lookahead != '\\') ADVANCE(197); if (lookahead == '\\') ADVANCE(53); END_STATE(); - case 196: + case 200: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(194); + lookahead != '\\') ADVANCE(198); if (lookahead == '\\') ADVANCE(104); END_STATE(); default: @@ -3224,531 +3260,530 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (lookahead == 'F') ADVANCE(1); - if (lookahead == 'L') ADVANCE(2); - if (lookahead == 'N') ADVANCE(3); - if (lookahead == 'T') ADVANCE(4); - if (lookahead == '_') ADVANCE(5); - if (lookahead == 'a') ADVANCE(6); - if (lookahead == 'b') ADVANCE(7); - if (lookahead == 'c') ADVANCE(8); - if (lookahead == 'd') ADVANCE(9); - if (lookahead == 'e') ADVANCE(10); - if (lookahead == 'f') ADVANCE(11); - if (lookahead == 'g') ADVANCE(12); - if (lookahead == 'i') ADVANCE(13); - if (lookahead == 'l') ADVANCE(14); - if (lookahead == 'r') ADVANCE(15); - if (lookahead == 's') ADVANCE(16); - if (lookahead == 't') ADVANCE(17); - if (lookahead == 'u') ADVANCE(18); - if (lookahead == 'v') ADVANCE(19); - if (lookahead == 'w') ADVANCE(20); + if (lookahead == 'N') ADVANCE(2); + if (lookahead == 'T') ADVANCE(3); + if (lookahead == '_') ADVANCE(4); + if (lookahead == 'a') ADVANCE(5); + if (lookahead == 'b') ADVANCE(6); + if (lookahead == 'c') ADVANCE(7); + if (lookahead == 'd') ADVANCE(8); + if (lookahead == 'e') ADVANCE(9); + if (lookahead == 'f') ADVANCE(10); + if (lookahead == 'g') ADVANCE(11); + if (lookahead == 'i') ADVANCE(12); + if (lookahead == 'l') ADVANCE(13); + if (lookahead == 'r') ADVANCE(14); + if (lookahead == 's') ADVANCE(15); + if (lookahead == 't') ADVANCE(16); + if (lookahead == 'u') ADVANCE(17); + if (lookahead == 'v') ADVANCE(18); + if (lookahead == 'w') ADVANCE(19); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (lookahead == 'A') ADVANCE(21); + if (lookahead == 'A') ADVANCE(20); END_STATE(); case 2: - ACCEPT_TOKEN(anon_sym_L); + if (lookahead == 'U') ADVANCE(21); END_STATE(); case 3: - if (lookahead == 'U') ADVANCE(22); + if (lookahead == 'R') ADVANCE(22); END_STATE(); case 4: - if (lookahead == 'R') ADVANCE(23); + if (lookahead == 'A') ADVANCE(23); + if (lookahead == '_') ADVANCE(24); END_STATE(); case 5: - if (lookahead == 'A') ADVANCE(24); - if (lookahead == '_') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); END_STATE(); case 6: - if (lookahead == 'u') ADVANCE(26); + if (lookahead == 'o') ADVANCE(26); + if (lookahead == 'r') ADVANCE(27); END_STATE(); case 7: - if (lookahead == 'o') ADVANCE(27); - if (lookahead == 'r') ADVANCE(28); + if (lookahead == 'a') ADVANCE(28); + if (lookahead == 'h') ADVANCE(29); + if (lookahead == 'o') ADVANCE(30); END_STATE(); case 8: - if (lookahead == 'a') ADVANCE(29); - if (lookahead == 'h') ADVANCE(30); - if (lookahead == 'o') ADVANCE(31); + if (lookahead == 'e') ADVANCE(31); + if (lookahead == 'o') ADVANCE(32); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(32); - if (lookahead == 'o') ADVANCE(33); + if (lookahead == 'l') ADVANCE(33); + if (lookahead == 'n') ADVANCE(34); + if (lookahead == 'x') ADVANCE(35); END_STATE(); case 10: - if (lookahead == 'l') ADVANCE(34); - if (lookahead == 'n') ADVANCE(35); - if (lookahead == 'x') ADVANCE(36); + if (lookahead == 'a') ADVANCE(36); + if (lookahead == 'l') ADVANCE(37); + if (lookahead == 'o') ADVANCE(38); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(37); - if (lookahead == 'l') ADVANCE(38); if (lookahead == 'o') ADVANCE(39); END_STATE(); case 12: - if (lookahead == 'o') ADVANCE(40); + if (lookahead == 'f') ADVANCE(40); + if (lookahead == 'n') ADVANCE(41); END_STATE(); case 13: - if (lookahead == 'f') ADVANCE(41); - if (lookahead == 'n') ADVANCE(42); + if (lookahead == 'o') ADVANCE(42); END_STATE(); case 14: - if (lookahead == 'o') ADVANCE(43); + if (lookahead == 'e') ADVANCE(43); END_STATE(); case 15: - if (lookahead == 'e') ADVANCE(44); + if (lookahead == 'h') ADVANCE(44); + if (lookahead == 'i') ADVANCE(45); + if (lookahead == 's') ADVANCE(46); + if (lookahead == 't') ADVANCE(47); + if (lookahead == 'w') ADVANCE(48); END_STATE(); case 16: - if (lookahead == 'h') ADVANCE(45); - if (lookahead == 'i') ADVANCE(46); - if (lookahead == 's') ADVANCE(47); - if (lookahead == 't') ADVANCE(48); - if (lookahead == 'w') ADVANCE(49); + if (lookahead == 'r') ADVANCE(49); + if (lookahead == 'y') ADVANCE(50); END_STATE(); case 17: - if (lookahead == 'r') ADVANCE(50); - if (lookahead == 'y') ADVANCE(51); + if (lookahead == 'i') ADVANCE(51); + if (lookahead == 'n') ADVANCE(52); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(52); - if (lookahead == 'n') ADVANCE(53); + if (lookahead == 'o') ADVANCE(53); END_STATE(); case 19: - if (lookahead == 'o') ADVANCE(54); + if (lookahead == 'h') ADVANCE(54); END_STATE(); case 20: - if (lookahead == 'h') ADVANCE(55); + if (lookahead == 'L') ADVANCE(55); END_STATE(); case 21: if (lookahead == 'L') ADVANCE(56); END_STATE(); case 22: - if (lookahead == 'L') ADVANCE(57); + if (lookahead == 'U') ADVANCE(57); END_STATE(); case 23: - if (lookahead == 'U') ADVANCE(58); + if (lookahead == 't') ADVANCE(58); END_STATE(); case 24: - if (lookahead == 't') ADVANCE(59); + if (lookahead == 'a') ADVANCE(59); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(60); + if (lookahead == 't') ADVANCE(60); END_STATE(); case 26: - if (lookahead == 't') ADVANCE(61); + if (lookahead == 'o') ADVANCE(61); END_STATE(); case 27: - if (lookahead == 'o') ADVANCE(62); + if (lookahead == 'e') ADVANCE(62); END_STATE(); case 28: - if (lookahead == 'e') ADVANCE(63); + if (lookahead == 's') ADVANCE(63); END_STATE(); case 29: - if (lookahead == 's') ADVANCE(64); + if (lookahead == 'a') ADVANCE(64); END_STATE(); case 30: - if (lookahead == 'a') ADVANCE(65); + if (lookahead == 'n') ADVANCE(65); END_STATE(); case 31: - if (lookahead == 'n') ADVANCE(66); + if (lookahead == 'f') ADVANCE(66); END_STATE(); case 32: - if (lookahead == 'f') ADVANCE(67); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'u') ADVANCE(67); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') ADVANCE(68); + if (lookahead == 's') ADVANCE(68); END_STATE(); case 34: - if (lookahead == 's') ADVANCE(69); + if (lookahead == 'u') ADVANCE(69); END_STATE(); case 35: - if (lookahead == 'u') ADVANCE(70); + if (lookahead == 't') ADVANCE(70); END_STATE(); case 36: - if (lookahead == 't') ADVANCE(71); + if (lookahead == 'l') ADVANCE(71); END_STATE(); case 37: - if (lookahead == 'l') ADVANCE(72); + if (lookahead == 'o') ADVANCE(72); END_STATE(); case 38: - if (lookahead == 'o') ADVANCE(73); + if (lookahead == 'r') ADVANCE(73); END_STATE(); case 39: - if (lookahead == 'r') ADVANCE(74); + if (lookahead == 't') ADVANCE(74); END_STATE(); case 40: - if (lookahead == 't') ADVANCE(75); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'l') ADVANCE(75); + if (lookahead == 't') ADVANCE(76); END_STATE(); case 42: - if (lookahead == 'l') ADVANCE(76); - if (lookahead == 't') ADVANCE(77); + if (lookahead == 'n') ADVANCE(77); END_STATE(); case 43: - if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'g') ADVANCE(78); + if (lookahead == 's') ADVANCE(79); + if (lookahead == 't') ADVANCE(80); END_STATE(); case 44: - if (lookahead == 'g') ADVANCE(79); - if (lookahead == 's') ADVANCE(80); - if (lookahead == 't') ADVANCE(81); + if (lookahead == 'o') ADVANCE(81); END_STATE(); case 45: - if (lookahead == 'o') ADVANCE(82); + if (lookahead == 'g') ADVANCE(82); + if (lookahead == 'z') ADVANCE(83); END_STATE(); case 46: - if (lookahead == 'g') ADVANCE(83); - if (lookahead == 'z') ADVANCE(84); + if (lookahead == 'i') ADVANCE(84); END_STATE(); case 47: - if (lookahead == 'i') ADVANCE(85); + if (lookahead == 'a') ADVANCE(85); + if (lookahead == 'r') ADVANCE(86); END_STATE(); case 48: - if (lookahead == 'a') ADVANCE(86); - if (lookahead == 'r') ADVANCE(87); + if (lookahead == 'i') ADVANCE(87); END_STATE(); case 49: - if (lookahead == 'i') ADVANCE(88); + if (lookahead == 'u') ADVANCE(88); END_STATE(); case 50: - if (lookahead == 'u') ADVANCE(89); + if (lookahead == 'p') ADVANCE(89); END_STATE(); case 51: - if (lookahead == 'p') ADVANCE(90); + if (lookahead == 'n') ADVANCE(90); END_STATE(); case 52: - if (lookahead == 'n') ADVANCE(91); + if (lookahead == 'i') ADVANCE(91); + if (lookahead == 's') ADVANCE(92); END_STATE(); case 53: - if (lookahead == 'i') ADVANCE(92); - if (lookahead == 's') ADVANCE(93); + if (lookahead == 'i') ADVANCE(93); + if (lookahead == 'l') ADVANCE(94); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(94); - if (lookahead == 'l') ADVANCE(95); + if (lookahead == 'i') ADVANCE(95); END_STATE(); case 55: - if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'S') ADVANCE(96); END_STATE(); case 56: - if (lookahead == 'S') ADVANCE(97); + if (lookahead == 'L') ADVANCE(97); END_STATE(); case 57: - if (lookahead == 'L') ADVANCE(98); + if (lookahead == 'E') ADVANCE(98); END_STATE(); case 58: - if (lookahead == 'E') ADVANCE(99); + if (lookahead == 'o') ADVANCE(99); END_STATE(); case 59: - if (lookahead == 'o') ADVANCE(100); + if (lookahead == 't') ADVANCE(100); END_STATE(); case 60: - if (lookahead == 't') ADVANCE(101); + if (lookahead == 'o') ADVANCE(101); END_STATE(); case 61: - if (lookahead == 'o') ADVANCE(102); + if (lookahead == 'l') ADVANCE(102); END_STATE(); case 62: - if (lookahead == 'l') ADVANCE(103); + if (lookahead == 'a') ADVANCE(103); END_STATE(); case 63: - if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'e') ADVANCE(104); END_STATE(); case 64: - if (lookahead == 'e') ADVANCE(105); + if (lookahead == 'r') ADVANCE(105); END_STATE(); case 65: - if (lookahead == 'r') ADVANCE(106); + if (lookahead == 's') ADVANCE(106); + if (lookahead == 't') ADVANCE(107); END_STATE(); case 66: - if (lookahead == 's') ADVANCE(107); - if (lookahead == 't') ADVANCE(108); + if (lookahead == 'a') ADVANCE(108); END_STATE(); case 67: - if (lookahead == 'a') ADVANCE(109); + if (lookahead == 'b') ADVANCE(109); END_STATE(); case 68: - if (lookahead == 'b') ADVANCE(110); + if (lookahead == 'e') ADVANCE(110); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(111); + if (lookahead == 'm') ADVANCE(111); END_STATE(); case 70: - if (lookahead == 'm') ADVANCE(112); + if (lookahead == 'e') ADVANCE(112); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(113); + if (lookahead == 's') ADVANCE(113); END_STATE(); case 72: - if (lookahead == 's') ADVANCE(114); + if (lookahead == 'a') ADVANCE(114); END_STATE(); case 73: - if (lookahead == 'a') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'o') ADVANCE(115); END_STATE(); case 75: - if (lookahead == 'o') ADVANCE(116); + if (lookahead == 'i') ADVANCE(116); END_STATE(); case 76: - if (lookahead == 'i') ADVANCE(117); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(117); + if (lookahead == '3') ADVANCE(118); + if (lookahead == '6') ADVANCE(119); + if (lookahead == '8') ADVANCE(120); + if (lookahead == 'p') ADVANCE(121); END_STATE(); case 77: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(118); - if (lookahead == '3') ADVANCE(119); - if (lookahead == '6') ADVANCE(120); - if (lookahead == '8') ADVANCE(121); - if (lookahead == 'p') ADVANCE(122); + if (lookahead == 'g') ADVANCE(122); END_STATE(); case 78: - if (lookahead == 'g') ADVANCE(123); + if (lookahead == 'i') ADVANCE(123); END_STATE(); case 79: - if (lookahead == 'i') ADVANCE(124); + if (lookahead == 't') ADVANCE(124); END_STATE(); case 80: - if (lookahead == 't') ADVANCE(125); + if (lookahead == 'u') ADVANCE(125); END_STATE(); case 81: - if (lookahead == 'u') ADVANCE(126); + if (lookahead == 'r') ADVANCE(126); END_STATE(); case 82: - if (lookahead == 'r') ADVANCE(127); + if (lookahead == 'n') ADVANCE(127); END_STATE(); case 83: - if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'e') ADVANCE(128); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(129); + if (lookahead == 'z') ADVANCE(129); END_STATE(); case 85: - if (lookahead == 'z') ADVANCE(130); + if (lookahead == 't') ADVANCE(130); END_STATE(); case 86: - if (lookahead == 't') ADVANCE(131); + if (lookahead == 'u') ADVANCE(131); END_STATE(); case 87: - if (lookahead == 'u') ADVANCE(132); + if (lookahead == 't') ADVANCE(132); END_STATE(); case 88: - if (lookahead == 't') ADVANCE(133); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'e') ADVANCE(133); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(134); + if (lookahead == 't') ADVANCE(134); END_STATE(); case 91: - if (lookahead == 't') ADVANCE(135); + if (lookahead == 'o') ADVANCE(135); END_STATE(); case 92: - if (lookahead == 'o') ADVANCE(136); + if (lookahead == 'i') ADVANCE(136); END_STATE(); case 93: - if (lookahead == 'i') ADVANCE(137); + if (lookahead == 'd') ADVANCE(102); END_STATE(); case 94: - if (lookahead == 'd') ADVANCE(103); + if (lookahead == 'a') ADVANCE(137); END_STATE(); case 95: - if (lookahead == 'a') ADVANCE(138); + if (lookahead == 'l') ADVANCE(138); END_STATE(); case 96: - if (lookahead == 'l') ADVANCE(139); + if (lookahead == 'E') ADVANCE(139); END_STATE(); case 97: - if (lookahead == 'E') ADVANCE(140); + ACCEPT_TOKEN(sym_null); END_STATE(); case 98: - ACCEPT_TOKEN(sym_null); + ACCEPT_TOKEN(sym_true); END_STATE(); case 99: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'm') ADVANCE(140); END_STATE(); case 100: - if (lookahead == 'm') ADVANCE(141); + if (lookahead == 't') ADVANCE(141); END_STATE(); case 101: - if (lookahead == 't') ADVANCE(142); + ACCEPT_TOKEN(anon_sym_auto); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_auto); + ACCEPT_TOKEN(sym_primitive_type); END_STATE(); case 103: - ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == 'k') ADVANCE(142); END_STATE(); case 104: - if (lookahead == 'k') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_case); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(143); + if (lookahead == '3') ADVANCE(144); + if (lookahead == '6') ADVANCE(145); + if (lookahead == '8') ADVANCE(146); + if (lookahead == 'p') ADVANCE(147); END_STATE(); case 106: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(144); - if (lookahead == '3') ADVANCE(145); - if (lookahead == '6') ADVANCE(146); - if (lookahead == '8') ADVANCE(147); - if (lookahead == 'p') ADVANCE(148); + if (lookahead == 't') ADVANCE(148); END_STATE(); case 107: - if (lookahead == 't') ADVANCE(149); + if (lookahead == 'i') ADVANCE(149); END_STATE(); case 108: - if (lookahead == 'i') ADVANCE(150); + if (lookahead == 'u') ADVANCE(150); END_STATE(); case 109: - if (lookahead == 'u') ADVANCE(151); + if (lookahead == 'l') ADVANCE(151); END_STATE(); case 110: - if (lookahead == 'l') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'r') ADVANCE(152); END_STATE(); case 113: - if (lookahead == 'r') ADVANCE(153); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 114: - if (lookahead == 'e') ADVANCE(140); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 115: - if (lookahead == 't') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 'n') ADVANCE(153); END_STATE(); case 117: - if (lookahead == 'n') ADVANCE(154); + if (lookahead == '6') ADVANCE(154); END_STATE(); case 118: - if (lookahead == '6') ADVANCE(155); + if (lookahead == '2') ADVANCE(155); END_STATE(); case 119: - if (lookahead == '2') ADVANCE(156); + if (lookahead == '4') ADVANCE(156); END_STATE(); case 120: - if (lookahead == '4') ADVANCE(157); + if (lookahead == '_') ADVANCE(157); END_STATE(); case 121: - if (lookahead == '_') ADVANCE(158); + if (lookahead == 't') ADVANCE(158); END_STATE(); case 122: - if (lookahead == 't') ADVANCE(159); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 's') ADVANCE(159); END_STATE(); case 124: - if (lookahead == 's') ADVANCE(160); + if (lookahead == 'r') ADVANCE(160); END_STATE(); case 125: if (lookahead == 'r') ADVANCE(161); END_STATE(); case 126: - if (lookahead == 'r') ADVANCE(162); + if (lookahead == 't') ADVANCE(162); END_STATE(); case 127: - if (lookahead == 't') ADVANCE(163); + if (lookahead == 'e') ADVANCE(163); END_STATE(); case 128: - if (lookahead == 'e') ADVANCE(164); + if (lookahead == '_') ADVANCE(164); + if (lookahead == 'o') ADVANCE(165); END_STATE(); case 129: - if (lookahead == '_') ADVANCE(165); - if (lookahead == 'o') ADVANCE(166); + if (lookahead == 'e') ADVANCE(166); END_STATE(); case 130: - if (lookahead == 'e') ADVANCE(167); + if (lookahead == 'i') ADVANCE(167); END_STATE(); case 131: - if (lookahead == 'i') ADVANCE(168); + if (lookahead == 'c') ADVANCE(168); END_STATE(); case 132: if (lookahead == 'c') ADVANCE(169); END_STATE(); case 133: - if (lookahead == 'c') ADVANCE(170); + if (lookahead == 'd') ADVANCE(170); END_STATE(); case 134: - if (lookahead == 'd') ADVANCE(171); + if (lookahead == '1') ADVANCE(171); + if (lookahead == '3') ADVANCE(172); + if (lookahead == '6') ADVANCE(173); + if (lookahead == '8') ADVANCE(174); + if (lookahead == 'p') ADVANCE(175); END_STATE(); case 135: - if (lookahead == '1') ADVANCE(172); - if (lookahead == '3') ADVANCE(173); - if (lookahead == '6') ADVANCE(174); - if (lookahead == '8') ADVANCE(175); - if (lookahead == 'p') ADVANCE(176); + if (lookahead == 'n') ADVANCE(176); END_STATE(); case 136: - if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'g') ADVANCE(177); END_STATE(); case 137: - if (lookahead == 'g') ADVANCE(178); + if (lookahead == 't') ADVANCE(178); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(179); + if (lookahead == 'e') ADVANCE(179); END_STATE(); case 139: - if (lookahead == 'e') ADVANCE(180); + ACCEPT_TOKEN(sym_false); END_STATE(); case 140: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'i') ADVANCE(180); END_STATE(); case 141: - if (lookahead == 'i') ADVANCE(181); + if (lookahead == 'r') ADVANCE(181); END_STATE(); case 142: - if (lookahead == 'r') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == '6') ADVANCE(182); END_STATE(); case 144: - if (lookahead == '6') ADVANCE(183); + if (lookahead == '2') ADVANCE(183); END_STATE(); case 145: - if (lookahead == '2') ADVANCE(184); + if (lookahead == '4') ADVANCE(184); END_STATE(); case 146: - if (lookahead == '4') ADVANCE(185); + if (lookahead == '_') ADVANCE(185); END_STATE(); case 147: - if (lookahead == '_') ADVANCE(186); + if (lookahead == 't') ADVANCE(186); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'n') ADVANCE(187); END_STATE(); case 150: - if (lookahead == 'n') ADVANCE(188); + if (lookahead == 'l') ADVANCE(188); END_STATE(); case 151: - if (lookahead == 'l') ADVANCE(189); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 152: - if (lookahead == 'e') ADVANCE(103); + if (lookahead == 'n') ADVANCE(189); END_STATE(); case 153: - if (lookahead == 'n') ADVANCE(190); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 154: - if (lookahead == 'e') ADVANCE(191); + if (lookahead == '_') ADVANCE(191); END_STATE(); case 155: if (lookahead == '_') ADVANCE(192); @@ -3757,82 +3792,82 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(193); END_STATE(); case 157: - if (lookahead == '_') ADVANCE(194); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 158: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'r') ADVANCE(194); END_STATE(); case 159: - if (lookahead == 'r') ADVANCE(195); + if (lookahead == 't') ADVANCE(195); END_STATE(); case 160: - if (lookahead == 't') ADVANCE(196); + if (lookahead == 'i') ADVANCE(196); END_STATE(); case 161: - if (lookahead == 'i') ADVANCE(197); + if (lookahead == 'n') ADVANCE(197); END_STATE(); case 162: - if (lookahead == 'n') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'd') ADVANCE(198); END_STATE(); case 164: - if (lookahead == 'd') ADVANCE(199); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 165: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'f') ADVANCE(199); END_STATE(); case 166: - if (lookahead == 'f') ADVANCE(200); + if (lookahead == '_') ADVANCE(200); END_STATE(); case 167: - if (lookahead == '_') ADVANCE(201); + if (lookahead == 'c') ADVANCE(201); END_STATE(); case 168: - if (lookahead == 'c') ADVANCE(202); + if (lookahead == 't') ADVANCE(202); END_STATE(); case 169: - if (lookahead == 't') ADVANCE(203); + if (lookahead == 'h') ADVANCE(203); END_STATE(); case 170: - if (lookahead == 'h') ADVANCE(204); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 171: - if (lookahead == 'e') ADVANCE(205); + if (lookahead == '6') ADVANCE(205); END_STATE(); case 172: - if (lookahead == '6') ADVANCE(206); + if (lookahead == '2') ADVANCE(206); END_STATE(); case 173: - if (lookahead == '2') ADVANCE(207); + if (lookahead == '4') ADVANCE(207); END_STATE(); case 174: - if (lookahead == '4') ADVANCE(208); + if (lookahead == '_') ADVANCE(208); END_STATE(); case 175: - if (lookahead == '_') ADVANCE(209); + if (lookahead == 't') ADVANCE(209); END_STATE(); case 176: - if (lookahead == 't') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'n') ADVANCE(210); END_STATE(); case 178: - if (lookahead == 'n') ADVANCE(211); + if (lookahead == 'i') ADVANCE(211); END_STATE(); case 179: - if (lookahead == 'i') ADVANCE(212); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'c') ADVANCE(212); END_STATE(); case 181: - if (lookahead == 'c') ADVANCE(213); + if (lookahead == 'i') ADVANCE(213); END_STATE(); case 182: - if (lookahead == 'i') ADVANCE(214); + if (lookahead == '_') ADVANCE(214); END_STATE(); case 183: if (lookahead == '_') ADVANCE(215); @@ -3841,67 +3876,67 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(216); END_STATE(); case 185: - if (lookahead == '_') ADVANCE(217); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 186: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'r') ADVANCE(217); END_STATE(); case 187: - if (lookahead == 'r') ADVANCE(218); + if (lookahead == 'u') ADVANCE(218); END_STATE(); case 188: - if (lookahead == 'u') ADVANCE(219); + if (lookahead == 't') ADVANCE(219); END_STATE(); case 189: - if (lookahead == 't') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 192: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 193: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 194: - if (lookahead == 't') ADVANCE(103); + if (lookahead == '_') ADVANCE(220); END_STATE(); case 195: - if (lookahead == '_') ADVANCE(221); + if (lookahead == 'e') ADVANCE(221); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(222); + if (lookahead == 'c') ADVANCE(222); END_STATE(); case 197: - if (lookahead == 'c') ADVANCE(223); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_signed); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 201: - if (lookahead == 't') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_static); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 'f') ADVANCE(223); END_STATE(); case 205: - if (lookahead == 'f') ADVANCE(224); + if (lookahead == '_') ADVANCE(224); END_STATE(); case 206: if (lookahead == '_') ADVANCE(225); @@ -3910,111 +3945,108 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(226); END_STATE(); case 208: - if (lookahead == '_') ADVANCE(227); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 209: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'r') ADVANCE(227); END_STATE(); case 210: - if (lookahead == 'r') ADVANCE(228); + if (lookahead == 'e') ADVANCE(228); END_STATE(); case 211: - if (lookahead == 'e') ADVANCE(229); + if (lookahead == 'l') ADVANCE(229); END_STATE(); case 212: - if (lookahead == 'l') ADVANCE(230); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == 'b') ADVANCE(230); END_STATE(); case 214: - if (lookahead == 'b') ADVANCE(231); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 215: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 216: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 217: - if (lookahead == 't') ADVANCE(103); + if (lookahead == '_') ADVANCE(231); END_STATE(); case 218: - if (lookahead == '_') ADVANCE(232); + if (lookahead == 'e') ADVANCE(232); END_STATE(); case 219: - if (lookahead == 'e') ADVANCE(233); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 221: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'r') ADVANCE(233); END_STATE(); case 222: - if (lookahead == 'r') ADVANCE(234); + if (lookahead == 't') ADVANCE(234); END_STATE(); case 223: - if (lookahead == 't') ADVANCE(235); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 225: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 226: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 227: - if (lookahead == 't') ADVANCE(103); + if (lookahead == '_') ADVANCE(235); END_STATE(); case 228: - if (lookahead == '_') ADVANCE(236); + if (lookahead == 'd') ADVANCE(236); END_STATE(); case 229: - if (lookahead == 'd') ADVANCE(237); + if (lookahead == 'e') ADVANCE(237); END_STATE(); case 230: - if (lookahead == 'e') ADVANCE(238); + if (lookahead == 'u') ADVANCE(238); END_STATE(); case 231: - if (lookahead == 'u') ADVANCE(239); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 232: - if (lookahead == 't') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_register); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 236: - if (lookahead == 't') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_unsigned); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_volatile); + if (lookahead == 't') ADVANCE(239); END_STATE(); case 239: - if (lookahead == 't') ADVANCE(240); + if (lookahead == 'e') ADVANCE(240); END_STATE(); case 240: - if (lookahead == 'e') ADVANCE(241); + if (lookahead == '_') ADVANCE(241); END_STATE(); case 241: if (lookahead == '_') ADVANCE(242); END_STATE(); case 242: - if (lookahead == '_') ADVANCE(243); - END_STATE(); - case 243: ACCEPT_TOKEN(anon_sym___attribute__); END_STATE(); default: @@ -4028,17 +4060,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2] = {.lex_state = 1}, [3] = {.lex_state = 0}, [4] = {.lex_state = 1}, - [5] = {.lex_state = 11}, - [6] = {.lex_state = 1}, - [7] = {.lex_state = 0}, - [8] = {.lex_state = 8}, - [9] = {.lex_state = 1}, - [10] = {.lex_state = 6}, + [5] = {.lex_state = 1}, + [6] = {.lex_state = 0}, + [7] = {.lex_state = 6}, + [8] = {.lex_state = 1}, + [9] = {.lex_state = 4}, + [10] = {.lex_state = 1}, [11] = {.lex_state = 1}, - [12] = {.lex_state = 1}, - [13] = {.lex_state = 0}, - [14] = {.lex_state = 1}, - [15] = {.lex_state = 4}, + [12] = {.lex_state = 0}, + [13] = {.lex_state = 1}, + [14] = {.lex_state = 3}, + [15] = {.lex_state = 11}, [16] = {.lex_state = 1}, [17] = {.lex_state = 0}, [18] = {.lex_state = 0}, @@ -4049,502 +4081,502 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [23] = {.lex_state = 0}, [24] = {.lex_state = 1}, [25] = {.lex_state = 0}, - [26] = {.lex_state = 1}, + [26] = {.lex_state = 7}, [27] = {.lex_state = 1}, - [28] = {.lex_state = 0}, - [29] = {.lex_state = 1}, - [30] = {.lex_state = 5}, + [28] = {.lex_state = 1}, + [29] = {.lex_state = 0}, + [30] = {.lex_state = 1}, [31] = {.lex_state = 0}, - [32] = {.lex_state = 0}, + [32] = {.lex_state = 1}, [33] = {.lex_state = 1}, - [34] = {.lex_state = 1}, - [35] = {.lex_state = 11}, - [36] = {.lex_state = 0}, - [37] = {.lex_state = 11}, + [34] = {.lex_state = 11}, + [35] = {.lex_state = 0}, + [36] = {.lex_state = 11}, + [37] = {.lex_state = 1}, [38] = {.lex_state = 1}, - [39] = {.lex_state = 1}, - [40] = {.lex_state = 0}, - [41] = {.lex_state = 1}, - [42] = {.lex_state = 11}, - [43] = {.lex_state = 1}, - [44] = {.lex_state = 0}, + [39] = {.lex_state = 0}, + [40] = {.lex_state = 1}, + [41] = {.lex_state = 11}, + [42] = {.lex_state = 1}, + [43] = {.lex_state = 0}, + [44] = {.lex_state = 1}, [45] = {.lex_state = 1}, - [46] = {.lex_state = 1}, - [47] = {.lex_state = 11}, + [46] = {.lex_state = 11}, + [47] = {.lex_state = 1}, [48] = {.lex_state = 1}, - [49] = {.lex_state = 1}, - [50] = {.lex_state = 1}, + [49] = {.lex_state = 11}, + [50] = {.lex_state = 0}, [51] = {.lex_state = 0}, [52] = {.lex_state = 1}, - [53] = {.lex_state = 11}, - [54] = {.lex_state = 0}, - [55] = {.lex_state = 0}, - [56] = {.lex_state = 1}, - [57] = {.lex_state = 3}, - [58] = {.lex_state = 11}, - [59] = {.lex_state = 9}, - [60] = {.lex_state = 11}, - [61] = {.lex_state = 11}, - [62] = {.lex_state = 0}, - [63] = {.lex_state = 11}, - [64] = {.lex_state = 0}, + [53] = {.lex_state = 8}, + [54] = {.lex_state = 11}, + [55] = {.lex_state = 9}, + [56] = {.lex_state = 11}, + [57] = {.lex_state = 11}, + [58] = {.lex_state = 0}, + [59] = {.lex_state = 11}, + [60] = {.lex_state = 0}, + [61] = {.lex_state = 0}, + [62] = {.lex_state = 1}, + [63] = {.lex_state = 1}, + [64] = {.lex_state = 1}, [65] = {.lex_state = 0}, - [66] = {.lex_state = 1}, - [67] = {.lex_state = 1}, - [68] = {.lex_state = 1}, - [69] = {.lex_state = 0}, - [70] = {.lex_state = 11}, - [71] = {.lex_state = 11}, - [72] = {.lex_state = 4}, + [66] = {.lex_state = 11}, + [67] = {.lex_state = 11}, + [68] = {.lex_state = 3}, + [69] = {.lex_state = 1}, + [70] = {.lex_state = 0}, + [71] = {.lex_state = 1}, + [72] = {.lex_state = 1}, [73] = {.lex_state = 1}, - [74] = {.lex_state = 1}, - [75] = {.lex_state = 9}, - [76] = {.lex_state = 1}, - [77] = {.lex_state = 0}, - [78] = {.lex_state = 0}, + [74] = {.lex_state = 9}, + [75] = {.lex_state = 1}, + [76] = {.lex_state = 0}, + [77] = {.lex_state = 1}, + [78] = {.lex_state = 1}, [79] = {.lex_state = 1}, [80] = {.lex_state = 1}, - [81] = {.lex_state = 1}, - [82] = {.lex_state = 1}, - [83] = {.lex_state = 0}, - [84] = {.lex_state = 0}, - [85] = {.lex_state = 1}, + [81] = {.lex_state = 0}, + [82] = {.lex_state = 0}, + [83] = {.lex_state = 1}, + [84] = {.lex_state = 1}, + [85] = {.lex_state = 0}, [86] = {.lex_state = 1}, - [87] = {.lex_state = 1}, - [88] = {.lex_state = 11}, + [87] = {.lex_state = 11}, + [88] = {.lex_state = 1}, [89] = {.lex_state = 1}, - [90] = {.lex_state = 1}, - [91] = {.lex_state = 0}, - [92] = {.lex_state = 7}, - [93] = {.lex_state = 5}, - [94] = {.lex_state = 4}, + [90] = {.lex_state = 5}, + [91] = {.lex_state = 1}, + [92] = {.lex_state = 1}, + [93] = {.lex_state = 11}, + [94] = {.lex_state = 1}, [95] = {.lex_state = 1}, [96] = {.lex_state = 1}, - [97] = {.lex_state = 11}, + [97] = {.lex_state = 1}, [98] = {.lex_state = 1}, [99] = {.lex_state = 1}, [100] = {.lex_state = 1}, [101] = {.lex_state = 1}, [102] = {.lex_state = 1}, [103] = {.lex_state = 1}, - [104] = {.lex_state = 1}, - [105] = {.lex_state = 1}, + [104] = {.lex_state = 11}, + [105] = {.lex_state = 0}, [106] = {.lex_state = 1}, [107] = {.lex_state = 1}, - [108] = {.lex_state = 11}, - [109] = {.lex_state = 0}, + [108] = {.lex_state = 1}, + [109] = {.lex_state = 1}, [110] = {.lex_state = 1}, - [111] = {.lex_state = 1}, + [111] = {.lex_state = 11}, [112] = {.lex_state = 1}, [113] = {.lex_state = 1}, [114] = {.lex_state = 1}, - [115] = {.lex_state = 11}, + [115] = {.lex_state = 1}, [116] = {.lex_state = 1}, [117] = {.lex_state = 1}, [118] = {.lex_state = 1}, [119] = {.lex_state = 1}, - [120] = {.lex_state = 1}, - [121] = {.lex_state = 1}, + [120] = {.lex_state = 0}, + [121] = {.lex_state = 11}, [122] = {.lex_state = 1}, [123] = {.lex_state = 1}, - [124] = {.lex_state = 0}, - [125] = {.lex_state = 11}, - [126] = {.lex_state = 1}, - [127] = {.lex_state = 1}, + [124] = {.lex_state = 1}, + [125] = {.lex_state = 1}, + [126] = {.lex_state = 0}, + [127] = {.lex_state = 4}, [128] = {.lex_state = 1}, - [129] = {.lex_state = 1}, - [130] = {.lex_state = 0}, - [131] = {.lex_state = 6}, + [129] = {.lex_state = 11}, + [130] = {.lex_state = 1}, + [131] = {.lex_state = 1}, [132] = {.lex_state = 1}, - [133] = {.lex_state = 11}, + [133] = {.lex_state = 1}, [134] = {.lex_state = 1}, [135] = {.lex_state = 1}, [136] = {.lex_state = 1}, - [137] = {.lex_state = 11}, - [138] = {.lex_state = 0}, - [139] = {.lex_state = 1}, - [140] = {.lex_state = 1}, + [137] = {.lex_state = 4}, + [138] = {.lex_state = 10}, + [139] = {.lex_state = 12}, + [140] = {.lex_state = 9}, [141] = {.lex_state = 1}, - [142] = {.lex_state = 1}, + [142] = {.lex_state = 11}, [143] = {.lex_state = 1}, - [144] = {.lex_state = 6}, - [145] = {.lex_state = 10}, - [146] = {.lex_state = 12}, - [147] = {.lex_state = 9}, + [144] = {.lex_state = 1}, + [145] = {.lex_state = 1}, + [146] = {.lex_state = 1}, + [147] = {.lex_state = 1}, [148] = {.lex_state = 1}, - [149] = {.lex_state = 11}, + [149] = {.lex_state = 1}, [150] = {.lex_state = 1}, [151] = {.lex_state = 1}, [152] = {.lex_state = 1}, [153] = {.lex_state = 1}, [154] = {.lex_state = 1}, [155] = {.lex_state = 1}, - [156] = {.lex_state = 1}, - [157] = {.lex_state = 1}, - [158] = {.lex_state = 1}, - [159] = {.lex_state = 1}, + [156] = {.lex_state = 11}, + [157] = {.lex_state = 3}, + [158] = {.lex_state = 11}, + [159] = {.lex_state = 0}, [160] = {.lex_state = 1}, [161] = {.lex_state = 1}, - [162] = {.lex_state = 1}, - [163] = {.lex_state = 11}, - [164] = {.lex_state = 4}, + [162] = {.lex_state = 11}, + [163] = {.lex_state = 1}, + [164] = {.lex_state = 1}, [165] = {.lex_state = 1}, - [166] = {.lex_state = 11}, - [167] = {.lex_state = 1}, + [166] = {.lex_state = 12}, + [167] = {.lex_state = 9}, [168] = {.lex_state = 1}, [169] = {.lex_state = 1}, - [170] = {.lex_state = 12}, - [171] = {.lex_state = 9}, + [170] = {.lex_state = 1}, + [171] = {.lex_state = 1}, [172] = {.lex_state = 1}, [173] = {.lex_state = 1}, [174] = {.lex_state = 1}, - [175] = {.lex_state = 1}, - [176] = {.lex_state = 1}, - [177] = {.lex_state = 1}, - [178] = {.lex_state = 0}, - [179] = {.lex_state = 1}, - [180] = {.lex_state = 0}, - [181] = {.lex_state = 0}, - [182] = {.lex_state = 1}, + [175] = {.lex_state = 0}, + [176] = {.lex_state = 0}, + [177] = {.lex_state = 0}, + [178] = {.lex_state = 1}, + [179] = {.lex_state = 11}, + [180] = {.lex_state = 1}, + [181] = {.lex_state = 1}, + [182] = {.lex_state = 8}, [183] = {.lex_state = 1}, [184] = {.lex_state = 1}, - [185] = {.lex_state = 11}, - [186] = {.lex_state = 3}, - [187] = {.lex_state = 1}, - [188] = {.lex_state = 1}, - [189] = {.lex_state = 8}, - [190] = {.lex_state = 0}, - [191] = {.lex_state = 4}, - [192] = {.lex_state = 0}, + [185] = {.lex_state = 6}, + [186] = {.lex_state = 0}, + [187] = {.lex_state = 0}, + [188] = {.lex_state = 11}, + [189] = {.lex_state = 11}, + [190] = {.lex_state = 11}, + [191] = {.lex_state = 11}, + [192] = {.lex_state = 11}, [193] = {.lex_state = 0}, [194] = {.lex_state = 11}, [195] = {.lex_state = 11}, [196] = {.lex_state = 11}, [197] = {.lex_state = 11}, [198] = {.lex_state = 11}, - [199] = {.lex_state = 0}, + [199] = {.lex_state = 11}, [200] = {.lex_state = 11}, [201] = {.lex_state = 11}, [202] = {.lex_state = 11}, [203] = {.lex_state = 11}, [204] = {.lex_state = 11}, - [205] = {.lex_state = 11}, - [206] = {.lex_state = 11}, - [207] = {.lex_state = 11}, - [208] = {.lex_state = 11}, - [209] = {.lex_state = 11}, - [210] = {.lex_state = 11}, + [205] = {.lex_state = 1}, + [206] = {.lex_state = 1}, + [207] = {.lex_state = 1}, + [208] = {.lex_state = 1}, + [209] = {.lex_state = 1}, + [210] = {.lex_state = 1}, [211] = {.lex_state = 1}, [212] = {.lex_state = 1}, [213] = {.lex_state = 1}, [214] = {.lex_state = 1}, - [215] = {.lex_state = 1}, - [216] = {.lex_state = 1}, + [215] = {.lex_state = 0}, + [216] = {.lex_state = 11}, [217] = {.lex_state = 1}, - [218] = {.lex_state = 1}, - [219] = {.lex_state = 1}, + [218] = {.lex_state = 14}, + [219] = {.lex_state = 14}, [220] = {.lex_state = 1}, - [221] = {.lex_state = 0}, - [222] = {.lex_state = 11}, + [221] = {.lex_state = 11}, + [222] = {.lex_state = 1}, [223] = {.lex_state = 1}, - [224] = {.lex_state = 14}, - [225] = {.lex_state = 14}, - [226] = {.lex_state = 1}, - [227] = {.lex_state = 11}, + [224] = {.lex_state = 1}, + [225] = {.lex_state = 1}, + [226] = {.lex_state = 11}, + [227] = {.lex_state = 0}, [228] = {.lex_state = 1}, [229] = {.lex_state = 1}, - [230] = {.lex_state = 1}, - [231] = {.lex_state = 1}, - [232] = {.lex_state = 11}, - [233] = {.lex_state = 0}, - [234] = {.lex_state = 1}, - [235] = {.lex_state = 1}, - [236] = {.lex_state = 1}, - [237] = {.lex_state = 9}, - [238] = {.lex_state = 10}, + [230] = {.lex_state = 9}, + [231] = {.lex_state = 10}, + [232] = {.lex_state = 1}, + [233] = {.lex_state = 1}, + [234] = {.lex_state = 12}, + [235] = {.lex_state = 9}, + [236] = {.lex_state = 11}, + [237] = {.lex_state = 11}, + [238] = {.lex_state = 1}, [239] = {.lex_state = 1}, [240] = {.lex_state = 1}, - [241] = {.lex_state = 12}, - [242] = {.lex_state = 9}, - [243] = {.lex_state = 11}, - [244] = {.lex_state = 11}, + [241] = {.lex_state = 1}, + [242] = {.lex_state = 1}, + [243] = {.lex_state = 0}, + [244] = {.lex_state = 1}, [245] = {.lex_state = 1}, [246] = {.lex_state = 1}, [247] = {.lex_state = 1}, - [248] = {.lex_state = 1}, - [249] = {.lex_state = 0}, + [248] = {.lex_state = 11}, + [249] = {.lex_state = 1}, [250] = {.lex_state = 1}, [251] = {.lex_state = 1}, [252] = {.lex_state = 1}, [253] = {.lex_state = 1}, [254] = {.lex_state = 1}, - [255] = {.lex_state = 11}, + [255] = {.lex_state = 1}, [256] = {.lex_state = 1}, [257] = {.lex_state = 1}, [258] = {.lex_state = 1}, - [259] = {.lex_state = 1}, + [259] = {.lex_state = 0}, [260] = {.lex_state = 1}, [261] = {.lex_state = 1}, [262] = {.lex_state = 1}, [263] = {.lex_state = 1}, - [264] = {.lex_state = 1}, + [264] = {.lex_state = 11}, [265] = {.lex_state = 1}, - [266] = {.lex_state = 0}, - [267] = {.lex_state = 1}, + [266] = {.lex_state = 1}, + [267] = {.lex_state = 11}, [268] = {.lex_state = 1}, [269] = {.lex_state = 1}, - [270] = {.lex_state = 11}, - [271] = {.lex_state = 1}, + [270] = {.lex_state = 1}, + [271] = {.lex_state = 12}, [272] = {.lex_state = 1}, - [273] = {.lex_state = 11}, + [273] = {.lex_state = 1}, [274] = {.lex_state = 1}, [275] = {.lex_state = 1}, [276] = {.lex_state = 1}, - [277] = {.lex_state = 12}, + [277] = {.lex_state = 0}, [278] = {.lex_state = 1}, [279] = {.lex_state = 1}, [280] = {.lex_state = 1}, - [281] = {.lex_state = 1}, - [282] = {.lex_state = 1}, - [283] = {.lex_state = 0}, - [284] = {.lex_state = 1}, - [285] = {.lex_state = 1}, + [281] = {.lex_state = 0}, + [282] = {.lex_state = 0}, + [283] = {.lex_state = 1}, + [284] = {.lex_state = 0}, + [285] = {.lex_state = 6}, [286] = {.lex_state = 1}, - [287] = {.lex_state = 0}, - [288] = {.lex_state = 0}, - [289] = {.lex_state = 1}, - [290] = {.lex_state = 0}, - [291] = {.lex_state = 8}, - [292] = {.lex_state = 1}, - [293] = {.lex_state = 3}, - [294] = {.lex_state = 11}, - [295] = {.lex_state = 11}, + [287] = {.lex_state = 8}, + [288] = {.lex_state = 1}, + [289] = {.lex_state = 12}, + [290] = {.lex_state = 11}, + [291] = {.lex_state = 1}, + [292] = {.lex_state = 11}, + [293] = {.lex_state = 0}, + [294] = {.lex_state = 1}, + [295] = {.lex_state = 1}, [296] = {.lex_state = 1}, - [297] = {.lex_state = 12}, - [298] = {.lex_state = 11}, + [297] = {.lex_state = 11}, + [298] = {.lex_state = 0}, [299] = {.lex_state = 1}, - [300] = {.lex_state = 11}, - [301] = {.lex_state = 0}, + [300] = {.lex_state = 0}, + [301] = {.lex_state = 1}, [302] = {.lex_state = 1}, - [303] = {.lex_state = 1}, + [303] = {.lex_state = 11}, [304] = {.lex_state = 1}, - [305] = {.lex_state = 11}, - [306] = {.lex_state = 0}, - [307] = {.lex_state = 1}, - [308] = {.lex_state = 0}, - [309] = {.lex_state = 1}, - [310] = {.lex_state = 1}, - [311] = {.lex_state = 11}, - [312] = {.lex_state = 1}, - [313] = {.lex_state = 1}, - [314] = {.lex_state = 1}, - [315] = {.lex_state = 0}, - [316] = {.lex_state = 15}, - [317] = {.lex_state = 11}, - [318] = {.lex_state = 6}, - [319] = {.lex_state = 14}, - [320] = {.lex_state = 12}, + [305] = {.lex_state = 1}, + [306] = {.lex_state = 1}, + [307] = {.lex_state = 0}, + [308] = {.lex_state = 15}, + [309] = {.lex_state = 11}, + [310] = {.lex_state = 4}, + [311] = {.lex_state = 14}, + [312] = {.lex_state = 12}, + [313] = {.lex_state = 11}, + [314] = {.lex_state = 14}, + [315] = {.lex_state = 12}, + [316] = {.lex_state = 1}, + [317] = {.lex_state = 1}, + [318] = {.lex_state = 1}, + [319] = {.lex_state = 11}, + [320] = {.lex_state = 11}, [321] = {.lex_state = 11}, - [322] = {.lex_state = 14}, - [323] = {.lex_state = 12}, - [324] = {.lex_state = 1}, - [325] = {.lex_state = 1}, + [322] = {.lex_state = 1}, + [323] = {.lex_state = 1}, + [324] = {.lex_state = 0}, + [325] = {.lex_state = 0}, [326] = {.lex_state = 1}, - [327] = {.lex_state = 11}, - [328] = {.lex_state = 11}, - [329] = {.lex_state = 11}, + [327] = {.lex_state = 12}, + [328] = {.lex_state = 9}, + [329] = {.lex_state = 1}, [330] = {.lex_state = 1}, - [331] = {.lex_state = 1}, - [332] = {.lex_state = 0}, + [331] = {.lex_state = 0}, + [332] = {.lex_state = 11}, [333] = {.lex_state = 0}, - [334] = {.lex_state = 1}, - [335] = {.lex_state = 12}, - [336] = {.lex_state = 9}, + [334] = {.lex_state = 11}, + [335] = {.lex_state = 11}, + [336] = {.lex_state = 0}, [337] = {.lex_state = 1}, [338] = {.lex_state = 1}, - [339] = {.lex_state = 0}, - [340] = {.lex_state = 11}, + [339] = {.lex_state = 1}, + [340] = {.lex_state = 1}, [341] = {.lex_state = 0}, - [342] = {.lex_state = 11}, - [343] = {.lex_state = 11}, - [344] = {.lex_state = 0}, + [342] = {.lex_state = 1}, + [343] = {.lex_state = 1}, + [344] = {.lex_state = 1}, [345] = {.lex_state = 1}, [346] = {.lex_state = 1}, [347] = {.lex_state = 1}, [348] = {.lex_state = 1}, - [349] = {.lex_state = 0}, - [350] = {.lex_state = 1}, + [349] = {.lex_state = 1}, + [350] = {.lex_state = 11}, [351] = {.lex_state = 1}, [352] = {.lex_state = 1}, - [353] = {.lex_state = 1}, + [353] = {.lex_state = 11}, [354] = {.lex_state = 1}, [355] = {.lex_state = 1}, [356] = {.lex_state = 1}, [357] = {.lex_state = 1}, - [358] = {.lex_state = 11}, + [358] = {.lex_state = 1}, [359] = {.lex_state = 1}, - [360] = {.lex_state = 1}, - [361] = {.lex_state = 11}, + [360] = {.lex_state = 11}, + [361] = {.lex_state = 1}, [362] = {.lex_state = 1}, - [363] = {.lex_state = 1}, + [363] = {.lex_state = 0}, [364] = {.lex_state = 1}, - [365] = {.lex_state = 1}, + [365] = {.lex_state = 0}, [366] = {.lex_state = 1}, - [367] = {.lex_state = 1}, - [368] = {.lex_state = 11}, + [367] = {.lex_state = 11}, + [368] = {.lex_state = 0}, [369] = {.lex_state = 1}, [370] = {.lex_state = 1}, - [371] = {.lex_state = 0}, + [371] = {.lex_state = 11}, [372] = {.lex_state = 1}, - [373] = {.lex_state = 0}, - [374] = {.lex_state = 1}, - [375] = {.lex_state = 11}, - [376] = {.lex_state = 0}, + [373] = {.lex_state = 11}, + [374] = {.lex_state = 0}, + [375] = {.lex_state = 1}, + [376] = {.lex_state = 1}, [377] = {.lex_state = 1}, [378] = {.lex_state = 1}, [379] = {.lex_state = 11}, [380] = {.lex_state = 1}, - [381] = {.lex_state = 11}, - [382] = {.lex_state = 0}, - [383] = {.lex_state = 1}, + [381] = {.lex_state = 1}, + [382] = {.lex_state = 1}, + [383] = {.lex_state = 11}, [384] = {.lex_state = 1}, - [385] = {.lex_state = 1}, - [386] = {.lex_state = 1}, - [387] = {.lex_state = 11}, + [385] = {.lex_state = 0}, + [386] = {.lex_state = 0}, + [387] = {.lex_state = 0}, [388] = {.lex_state = 1}, - [389] = {.lex_state = 1}, - [390] = {.lex_state = 1}, - [391] = {.lex_state = 11}, - [392] = {.lex_state = 1}, - [393] = {.lex_state = 0}, + [389] = {.lex_state = 6}, + [390] = {.lex_state = 0}, + [391] = {.lex_state = 1}, + [392] = {.lex_state = 11}, + [393] = {.lex_state = 11}, [394] = {.lex_state = 0}, - [395] = {.lex_state = 0}, + [395] = {.lex_state = 11}, [396] = {.lex_state = 1}, - [397] = {.lex_state = 8}, - [398] = {.lex_state = 0}, - [399] = {.lex_state = 1}, - [400] = {.lex_state = 11}, - [401] = {.lex_state = 11}, - [402] = {.lex_state = 0}, + [397] = {.lex_state = 1}, + [398] = {.lex_state = 1}, + [399] = {.lex_state = 11}, + [400] = {.lex_state = 1}, + [401] = {.lex_state = 15}, + [402] = {.lex_state = 14}, [403] = {.lex_state = 11}, - [404] = {.lex_state = 1}, - [405] = {.lex_state = 1}, - [406] = {.lex_state = 1}, - [407] = {.lex_state = 11}, - [408] = {.lex_state = 1}, - [409] = {.lex_state = 15}, - [410] = {.lex_state = 14}, - [411] = {.lex_state = 11}, - [412] = {.lex_state = 12}, - [413] = {.lex_state = 11}, + [404] = {.lex_state = 12}, + [405] = {.lex_state = 11}, + [406] = {.lex_state = 11}, + [407] = {.lex_state = 12}, + [408] = {.lex_state = 11}, + [409] = {.lex_state = 1}, + [410] = {.lex_state = 1}, + [411] = {.lex_state = 1}, + [412] = {.lex_state = 1}, + [413] = {.lex_state = 1}, [414] = {.lex_state = 11}, - [415] = {.lex_state = 12}, + [415] = {.lex_state = 1}, [416] = {.lex_state = 11}, - [417] = {.lex_state = 1}, - [418] = {.lex_state = 1}, - [419] = {.lex_state = 1}, - [420] = {.lex_state = 1}, - [421] = {.lex_state = 1}, + [417] = {.lex_state = 0}, + [418] = {.lex_state = 0}, + [419] = {.lex_state = 12}, + [420] = {.lex_state = 11}, + [421] = {.lex_state = 11}, [422] = {.lex_state = 11}, - [423] = {.lex_state = 1}, - [424] = {.lex_state = 11}, - [425] = {.lex_state = 0}, - [426] = {.lex_state = 0}, - [427] = {.lex_state = 12}, - [428] = {.lex_state = 11}, - [429] = {.lex_state = 11}, - [430] = {.lex_state = 11}, - [431] = {.lex_state = 9}, - [432] = {.lex_state = 0}, + [423] = {.lex_state = 9}, + [424] = {.lex_state = 0}, + [425] = {.lex_state = 1}, + [426] = {.lex_state = 11}, + [427] = {.lex_state = 0}, + [428] = {.lex_state = 1}, + [429] = {.lex_state = 0}, + [430] = {.lex_state = 1}, + [431] = {.lex_state = 1}, + [432] = {.lex_state = 1}, [433] = {.lex_state = 1}, - [434] = {.lex_state = 11}, - [435] = {.lex_state = 0}, - [436] = {.lex_state = 1}, - [437] = {.lex_state = 0}, + [434] = {.lex_state = 1}, + [435] = {.lex_state = 1}, + [436] = {.lex_state = 11}, + [437] = {.lex_state = 1}, [438] = {.lex_state = 1}, [439] = {.lex_state = 1}, - [440] = {.lex_state = 1}, + [440] = {.lex_state = 11}, [441] = {.lex_state = 1}, [442] = {.lex_state = 1}, [443] = {.lex_state = 1}, - [444] = {.lex_state = 11}, - [445] = {.lex_state = 1}, - [446] = {.lex_state = 1}, + [444] = {.lex_state = 1}, + [445] = {.lex_state = 11}, + [446] = {.lex_state = 0}, [447] = {.lex_state = 1}, [448] = {.lex_state = 11}, - [449] = {.lex_state = 1}, + [449] = {.lex_state = 0}, [450] = {.lex_state = 1}, [451] = {.lex_state = 1}, [452] = {.lex_state = 1}, - [453] = {.lex_state = 11}, - [454] = {.lex_state = 0}, - [455] = {.lex_state = 1}, - [456] = {.lex_state = 11}, - [457] = {.lex_state = 0}, + [453] = {.lex_state = 1}, + [454] = {.lex_state = 11}, + [455] = {.lex_state = 0}, + [456] = {.lex_state = 1}, + [457] = {.lex_state = 1}, [458] = {.lex_state = 1}, - [459] = {.lex_state = 1}, - [460] = {.lex_state = 1}, - [461] = {.lex_state = 1}, - [462] = {.lex_state = 11}, - [463] = {.lex_state = 0}, - [464] = {.lex_state = 1}, - [465] = {.lex_state = 1}, - [466] = {.lex_state = 1}, - [467] = {.lex_state = 0}, - [468] = {.lex_state = 0}, - [469] = {.lex_state = 8}, - [470] = {.lex_state = 0}, - [471] = {.lex_state = 1}, - [472] = {.lex_state = 14}, - [473] = {.lex_state = 12}, + [459] = {.lex_state = 0}, + [460] = {.lex_state = 0}, + [461] = {.lex_state = 6}, + [462] = {.lex_state = 0}, + [463] = {.lex_state = 1}, + [464] = {.lex_state = 14}, + [465] = {.lex_state = 12}, + [466] = {.lex_state = 11}, + [467] = {.lex_state = 11}, + [468] = {.lex_state = 1}, + [469] = {.lex_state = 1}, + [470] = {.lex_state = 1}, + [471] = {.lex_state = 11}, + [472] = {.lex_state = 11}, + [473] = {.lex_state = 11}, [474] = {.lex_state = 11}, [475] = {.lex_state = 11}, - [476] = {.lex_state = 1}, - [477] = {.lex_state = 1}, - [478] = {.lex_state = 1}, + [476] = {.lex_state = 0}, + [477] = {.lex_state = 9}, + [478] = {.lex_state = 0}, [479] = {.lex_state = 11}, - [480] = {.lex_state = 11}, - [481] = {.lex_state = 11}, - [482] = {.lex_state = 11}, - [483] = {.lex_state = 11}, - [484] = {.lex_state = 0}, - [485] = {.lex_state = 9}, - [486] = {.lex_state = 0}, - [487] = {.lex_state = 11}, - [488] = {.lex_state = 0}, - [489] = {.lex_state = 1}, - [490] = {.lex_state = 1}, + [480] = {.lex_state = 0}, + [481] = {.lex_state = 1}, + [482] = {.lex_state = 1}, + [483] = {.lex_state = 1}, + [484] = {.lex_state = 1}, + [485] = {.lex_state = 1}, + [486] = {.lex_state = 1}, + [487] = {.lex_state = 1}, + [488] = {.lex_state = 1}, + [489] = {.lex_state = 11}, + [490] = {.lex_state = 0}, [491] = {.lex_state = 1}, [492] = {.lex_state = 1}, [493] = {.lex_state = 1}, [494] = {.lex_state = 1}, [495] = {.lex_state = 1}, - [496] = {.lex_state = 1}, - [497] = {.lex_state = 11}, - [498] = {.lex_state = 0}, - [499] = {.lex_state = 1}, + [496] = {.lex_state = 12}, + [497] = {.lex_state = 1}, + [498] = {.lex_state = 11}, + [499] = {.lex_state = 9}, [500] = {.lex_state = 1}, [501] = {.lex_state = 1}, [502] = {.lex_state = 1}, [503] = {.lex_state = 1}, - [504] = {.lex_state = 12}, + [504] = {.lex_state = 1}, [505] = {.lex_state = 1}, [506] = {.lex_state = 11}, - [507] = {.lex_state = 9}, + [507] = {.lex_state = 1}, [508] = {.lex_state = 1}, [509] = {.lex_state = 1}, [510] = {.lex_state = 1}, - [511] = {.lex_state = 1}, + [511] = {.lex_state = 11}, [512] = {.lex_state = 1}, [513] = {.lex_state = 1}, - [514] = {.lex_state = 11}, + [514] = {.lex_state = 1}, [515] = {.lex_state = 1}, [516] = {.lex_state = 1}, [517] = {.lex_state = 1}, [518] = {.lex_state = 1}, - [519] = {.lex_state = 11}, + [519] = {.lex_state = 1}, [520] = {.lex_state = 1}, - [521] = {.lex_state = 11}, + [521] = {.lex_state = 1}, [522] = {.lex_state = 1}, [523] = {.lex_state = 1}, [524] = {.lex_state = 1}, @@ -4563,73 +4595,73 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [537] = {.lex_state = 1}, [538] = {.lex_state = 1}, [539] = {.lex_state = 1}, - [540] = {.lex_state = 1}, + [540] = {.lex_state = 11}, [541] = {.lex_state = 1}, [542] = {.lex_state = 1}, - [543] = {.lex_state = 11}, + [543] = {.lex_state = 1}, [544] = {.lex_state = 1}, [545] = {.lex_state = 1}, [546] = {.lex_state = 1}, [547] = {.lex_state = 1}, [548] = {.lex_state = 1}, - [549] = {.lex_state = 1}, - [550] = {.lex_state = 1}, - [551] = {.lex_state = 1}, - [552] = {.lex_state = 1}, - [553] = {.lex_state = 1}, - [554] = {.lex_state = 1}, - [555] = {.lex_state = 1}, - [556] = {.lex_state = 1}, - [557] = {.lex_state = 1}, - [558] = {.lex_state = 11}, - [559] = {.lex_state = 11}, - [560] = {.lex_state = 11}, - [561] = {.lex_state = 11}, - [562] = {.lex_state = 11}, - [563] = {.lex_state = 11}, - [564] = {.lex_state = 11}, - [565] = {.lex_state = 11}, - [566] = {.lex_state = 11}, + [549] = {.lex_state = 11}, + [550] = {.lex_state = 11}, + [551] = {.lex_state = 11}, + [552] = {.lex_state = 11}, + [553] = {.lex_state = 11}, + [554] = {.lex_state = 11}, + [555] = {.lex_state = 11}, + [556] = {.lex_state = 11}, + [557] = {.lex_state = 11}, + [558] = {.lex_state = 1}, + [559] = {.lex_state = 1}, + [560] = {.lex_state = 14}, + [561] = {.lex_state = 14}, + [562] = {.lex_state = 1}, + [563] = {.lex_state = 1}, + [564] = {.lex_state = 1}, + [565] = {.lex_state = 1}, + [566] = {.lex_state = 1}, [567] = {.lex_state = 1}, [568] = {.lex_state = 1}, - [569] = {.lex_state = 14}, - [570] = {.lex_state = 14}, + [569] = {.lex_state = 1}, + [570] = {.lex_state = 1}, [571] = {.lex_state = 1}, [572] = {.lex_state = 1}, - [573] = {.lex_state = 1}, + [573] = {.lex_state = 12}, [574] = {.lex_state = 1}, [575] = {.lex_state = 1}, - [576] = {.lex_state = 1}, - [577] = {.lex_state = 1}, - [578] = {.lex_state = 1}, - [579] = {.lex_state = 1}, + [576] = {.lex_state = 14}, + [577] = {.lex_state = 14}, + [578] = {.lex_state = 14}, + [579] = {.lex_state = 14}, [580] = {.lex_state = 1}, [581] = {.lex_state = 1}, [582] = {.lex_state = 1}, - [583] = {.lex_state = 12}, + [583] = {.lex_state = 1}, [584] = {.lex_state = 1}, [585] = {.lex_state = 1}, - [586] = {.lex_state = 14}, - [587] = {.lex_state = 14}, - [588] = {.lex_state = 14}, - [589] = {.lex_state = 14}, - [590] = {.lex_state = 1}, - [591] = {.lex_state = 1}, - [592] = {.lex_state = 1}, - [593] = {.lex_state = 1}, - [594] = {.lex_state = 1}, - [595] = {.lex_state = 1}, + [586] = {.lex_state = 1}, + [587] = {.lex_state = 1}, + [588] = {.lex_state = 1}, + [589] = {.lex_state = 1}, + [590] = {.lex_state = 11}, + [591] = {.lex_state = 14}, + [592] = {.lex_state = 14}, + [593] = {.lex_state = 14}, + [594] = {.lex_state = 14}, + [595] = {.lex_state = 14}, [596] = {.lex_state = 1}, [597] = {.lex_state = 1}, [598] = {.lex_state = 1}, [599] = {.lex_state = 1}, - [600] = {.lex_state = 11}, - [601] = {.lex_state = 14}, - [602] = {.lex_state = 14}, - [603] = {.lex_state = 14}, + [600] = {.lex_state = 1}, + [601] = {.lex_state = 1}, + [602] = {.lex_state = 1}, + [603] = {.lex_state = 1}, [604] = {.lex_state = 14}, [605] = {.lex_state = 14}, - [606] = {.lex_state = 1}, + [606] = {.lex_state = 14}, [607] = {.lex_state = 1}, [608] = {.lex_state = 1}, [609] = {.lex_state = 1}, @@ -4637,225 +4669,225 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [611] = {.lex_state = 1}, [612] = {.lex_state = 1}, [613] = {.lex_state = 1}, - [614] = {.lex_state = 14}, - [615] = {.lex_state = 14}, - [616] = {.lex_state = 14}, + [614] = {.lex_state = 1}, + [615] = {.lex_state = 1}, + [616] = {.lex_state = 1}, [617] = {.lex_state = 1}, [618] = {.lex_state = 1}, [619] = {.lex_state = 1}, [620] = {.lex_state = 1}, [621] = {.lex_state = 1}, - [622] = {.lex_state = 1}, - [623] = {.lex_state = 1}, - [624] = {.lex_state = 1}, + [622] = {.lex_state = 9}, + [623] = {.lex_state = 9}, + [624] = {.lex_state = 11}, [625] = {.lex_state = 1}, [626] = {.lex_state = 1}, - [627] = {.lex_state = 1}, - [628] = {.lex_state = 1}, + [627] = {.lex_state = 9}, + [628] = {.lex_state = 9}, [629] = {.lex_state = 1}, - [630] = {.lex_state = 1}, + [630] = {.lex_state = 9}, [631] = {.lex_state = 1}, [632] = {.lex_state = 9}, [633] = {.lex_state = 9}, - [634] = {.lex_state = 1}, - [635] = {.lex_state = 11}, - [636] = {.lex_state = 11}, - [637] = {.lex_state = 1}, - [638] = {.lex_state = 9}, + [634] = {.lex_state = 9}, + [635] = {.lex_state = 9}, + [636] = {.lex_state = 9}, + [637] = {.lex_state = 9}, + [638] = {.lex_state = 11}, [639] = {.lex_state = 9}, [640] = {.lex_state = 1}, - [641] = {.lex_state = 9}, - [642] = {.lex_state = 1}, + [641] = {.lex_state = 1}, + [642] = {.lex_state = 9}, [643] = {.lex_state = 9}, [644] = {.lex_state = 9}, [645] = {.lex_state = 9}, [646] = {.lex_state = 9}, [647] = {.lex_state = 9}, [648] = {.lex_state = 9}, - [649] = {.lex_state = 9}, - [650] = {.lex_state = 11}, + [649] = {.lex_state = 11}, + [650] = {.lex_state = 9}, [651] = {.lex_state = 9}, - [652] = {.lex_state = 1}, - [653] = {.lex_state = 1}, + [652] = {.lex_state = 15}, + [653] = {.lex_state = 15}, [654] = {.lex_state = 9}, [655] = {.lex_state = 9}, [656] = {.lex_state = 9}, [657] = {.lex_state = 9}, [658] = {.lex_state = 9}, [659] = {.lex_state = 9}, - [660] = {.lex_state = 11}, - [661] = {.lex_state = 9}, + [660] = {.lex_state = 9}, + [661] = {.lex_state = 1}, [662] = {.lex_state = 9}, - [663] = {.lex_state = 15}, - [664] = {.lex_state = 15}, + [663] = {.lex_state = 11}, + [664] = {.lex_state = 11}, [665] = {.lex_state = 9}, - [666] = {.lex_state = 9}, - [667] = {.lex_state = 9}, - [668] = {.lex_state = 9}, - [669] = {.lex_state = 9}, + [666] = {.lex_state = 15}, + [667] = {.lex_state = 15}, + [668] = {.lex_state = 15}, + [669] = {.lex_state = 15}, [670] = {.lex_state = 9}, [671] = {.lex_state = 9}, - [672] = {.lex_state = 1}, - [673] = {.lex_state = 9}, - [674] = {.lex_state = 11}, - [675] = {.lex_state = 11}, - [676] = {.lex_state = 1}, + [672] = {.lex_state = 9}, + [673] = {.lex_state = 1}, + [674] = {.lex_state = 1}, + [675] = {.lex_state = 9}, + [676] = {.lex_state = 9}, [677] = {.lex_state = 9}, - [678] = {.lex_state = 15}, - [679] = {.lex_state = 15}, + [678] = {.lex_state = 9}, + [679] = {.lex_state = 11}, [680] = {.lex_state = 15}, [681] = {.lex_state = 15}, - [682] = {.lex_state = 9}, - [683] = {.lex_state = 9}, - [684] = {.lex_state = 9}, - [685] = {.lex_state = 1}, - [686] = {.lex_state = 1}, - [687] = {.lex_state = 9}, - [688] = {.lex_state = 9}, - [689] = {.lex_state = 9}, + [682] = {.lex_state = 15}, + [683] = {.lex_state = 15}, + [684] = {.lex_state = 15}, + [685] = {.lex_state = 9}, + [686] = {.lex_state = 9}, + [687] = {.lex_state = 1}, + [688] = {.lex_state = 1}, + [689] = {.lex_state = 1}, [690] = {.lex_state = 9}, - [691] = {.lex_state = 11}, - [692] = {.lex_state = 15}, + [691] = {.lex_state = 1}, + [692] = {.lex_state = 1}, [693] = {.lex_state = 15}, [694] = {.lex_state = 15}, [695] = {.lex_state = 15}, - [696] = {.lex_state = 15}, + [696] = {.lex_state = 9}, [697] = {.lex_state = 9}, - [698] = {.lex_state = 9}, - [699] = {.lex_state = 1}, + [698] = {.lex_state = 1}, + [699] = {.lex_state = 9}, [700] = {.lex_state = 1}, [701] = {.lex_state = 1}, [702] = {.lex_state = 9}, - [703] = {.lex_state = 1}, + [703] = {.lex_state = 9}, [704] = {.lex_state = 1}, - [705] = {.lex_state = 15}, - [706] = {.lex_state = 15}, - [707] = {.lex_state = 15}, - [708] = {.lex_state = 9}, + [705] = {.lex_state = 9}, + [706] = {.lex_state = 9}, + [707] = {.lex_state = 9}, + [708] = {.lex_state = 1}, [709] = {.lex_state = 9}, - [710] = {.lex_state = 1}, - [711] = {.lex_state = 9}, - [712] = {.lex_state = 1}, - [713] = {.lex_state = 1}, + [710] = {.lex_state = 9}, + [711] = {.lex_state = 10}, + [712] = {.lex_state = 10}, + [713] = {.lex_state = 9}, [714] = {.lex_state = 9}, - [715] = {.lex_state = 9}, - [716] = {.lex_state = 1}, - [717] = {.lex_state = 9}, - [718] = {.lex_state = 9}, - [719] = {.lex_state = 9}, + [715] = {.lex_state = 1}, + [716] = {.lex_state = 10}, + [717] = {.lex_state = 10}, + [718] = {.lex_state = 1}, + [719] = {.lex_state = 10}, [720] = {.lex_state = 1}, - [721] = {.lex_state = 9}, - [722] = {.lex_state = 9}, + [721] = {.lex_state = 10}, + [722] = {.lex_state = 10}, [723] = {.lex_state = 10}, [724] = {.lex_state = 10}, - [725] = {.lex_state = 1}, - [726] = {.lex_state = 11}, + [725] = {.lex_state = 10}, + [726] = {.lex_state = 10}, [727] = {.lex_state = 9}, - [728] = {.lex_state = 9}, - [729] = {.lex_state = 10}, - [730] = {.lex_state = 10}, - [731] = {.lex_state = 1}, + [728] = {.lex_state = 10}, + [729] = {.lex_state = 1}, + [730] = {.lex_state = 9}, + [731] = {.lex_state = 10}, [732] = {.lex_state = 10}, - [733] = {.lex_state = 1}, + [733] = {.lex_state = 10}, [734] = {.lex_state = 10}, [735] = {.lex_state = 10}, [736] = {.lex_state = 10}, [737] = {.lex_state = 10}, - [738] = {.lex_state = 10}, + [738] = {.lex_state = 9}, [739] = {.lex_state = 10}, [740] = {.lex_state = 10}, - [741] = {.lex_state = 9}, + [741] = {.lex_state = 10}, [742] = {.lex_state = 10}, - [743] = {.lex_state = 1}, - [744] = {.lex_state = 9}, + [743] = {.lex_state = 10}, + [744] = {.lex_state = 10}, [745] = {.lex_state = 10}, [746] = {.lex_state = 10}, [747] = {.lex_state = 10}, - [748] = {.lex_state = 10}, + [748] = {.lex_state = 1}, [749] = {.lex_state = 10}, - [750] = {.lex_state = 10}, + [750] = {.lex_state = 9}, [751] = {.lex_state = 9}, [752] = {.lex_state = 10}, [753] = {.lex_state = 10}, [754] = {.lex_state = 10}, [755] = {.lex_state = 10}, - [756] = {.lex_state = 10}, - [757] = {.lex_state = 10}, + [756] = {.lex_state = 1}, + [757] = {.lex_state = 1}, [758] = {.lex_state = 10}, [759] = {.lex_state = 10}, [760] = {.lex_state = 10}, - [761] = {.lex_state = 1}, - [762] = {.lex_state = 10}, - [763] = {.lex_state = 9}, - [764] = {.lex_state = 9}, - [765] = {.lex_state = 9}, - [766] = {.lex_state = 10}, - [767] = {.lex_state = 10}, + [761] = {.lex_state = 10}, + [762] = {.lex_state = 9}, + [763] = {.lex_state = 10}, + [764] = {.lex_state = 10}, + [765] = {.lex_state = 1}, + [766] = {.lex_state = 1}, + [767] = {.lex_state = 1}, [768] = {.lex_state = 10}, - [769] = {.lex_state = 10}, + [769] = {.lex_state = 1}, [770] = {.lex_state = 1}, - [771] = {.lex_state = 1}, + [771] = {.lex_state = 10}, [772] = {.lex_state = 10}, - [773] = {.lex_state = 10}, + [773] = {.lex_state = 1}, [774] = {.lex_state = 10}, - [775] = {.lex_state = 10}, - [776] = {.lex_state = 9}, + [775] = {.lex_state = 1}, + [776] = {.lex_state = 1}, [777] = {.lex_state = 10}, [778] = {.lex_state = 10}, [779] = {.lex_state = 1}, - [780] = {.lex_state = 1}, - [781] = {.lex_state = 1}, + [780] = {.lex_state = 10}, + [781] = {.lex_state = 10}, [782] = {.lex_state = 10}, [783] = {.lex_state = 1}, - [784] = {.lex_state = 1}, + [784] = {.lex_state = 10}, [785] = {.lex_state = 10}, - [786] = {.lex_state = 10}, + [786] = {.lex_state = 1}, [787] = {.lex_state = 1}, [788] = {.lex_state = 10}, - [789] = {.lex_state = 1}, + [789] = {.lex_state = 10}, [790] = {.lex_state = 1}, - [791] = {.lex_state = 10}, - [792] = {.lex_state = 10}, + [791] = {.lex_state = 1}, + [792] = {.lex_state = 1}, [793] = {.lex_state = 1}, - [794] = {.lex_state = 10}, - [795] = {.lex_state = 10}, - [796] = {.lex_state = 10}, + [794] = {.lex_state = 1}, + [795] = {.lex_state = 1}, + [796] = {.lex_state = 1}, [797] = {.lex_state = 1}, - [798] = {.lex_state = 10}, + [798] = {.lex_state = 1}, [799] = {.lex_state = 10}, - [800] = {.lex_state = 1}, - [801] = {.lex_state = 1}, + [800] = {.lex_state = 9}, + [801] = {.lex_state = 10}, [802] = {.lex_state = 1}, - [803] = {.lex_state = 10}, - [804] = {.lex_state = 10}, + [803] = {.lex_state = 1}, + [804] = {.lex_state = 1}, [805] = {.lex_state = 1}, [806] = {.lex_state = 1}, - [807] = {.lex_state = 1}, + [807] = {.lex_state = 10}, [808] = {.lex_state = 1}, [809] = {.lex_state = 1}, [810] = {.lex_state = 1}, - [811] = {.lex_state = 1}, - [812] = {.lex_state = 1}, + [811] = {.lex_state = 10}, + [812] = {.lex_state = 10}, [813] = {.lex_state = 1}, - [814] = {.lex_state = 10}, - [815] = {.lex_state = 9}, - [816] = {.lex_state = 10}, - [817] = {.lex_state = 1}, + [814] = {.lex_state = 1}, + [815] = {.lex_state = 1}, + [816] = {.lex_state = 1}, + [817] = {.lex_state = 10}, [818] = {.lex_state = 1}, [819] = {.lex_state = 1}, [820] = {.lex_state = 1}, - [821] = {.lex_state = 10}, + [821] = {.lex_state = 1}, [822] = {.lex_state = 1}, [823] = {.lex_state = 1}, [824] = {.lex_state = 1}, - [825] = {.lex_state = 10}, - [826] = {.lex_state = 10}, - [827] = {.lex_state = 10}, + [825] = {.lex_state = 1}, + [826] = {.lex_state = 1}, + [827] = {.lex_state = 1}, [828] = {.lex_state = 1}, [829] = {.lex_state = 1}, [830] = {.lex_state = 1}, [831] = {.lex_state = 1}, - [832] = {.lex_state = 10}, + [832] = {.lex_state = 1}, [833] = {.lex_state = 1}, [834] = {.lex_state = 1}, [835] = {.lex_state = 1}, @@ -4863,484 +4895,460 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [837] = {.lex_state = 1}, [838] = {.lex_state = 1}, [839] = {.lex_state = 1}, - [840] = {.lex_state = 1}, - [841] = {.lex_state = 1}, - [842] = {.lex_state = 1}, - [843] = {.lex_state = 1}, - [844] = {.lex_state = 1}, - [845] = {.lex_state = 1}, - [846] = {.lex_state = 1}, - [847] = {.lex_state = 1}, - [848] = {.lex_state = 1}, - [849] = {.lex_state = 1}, - [850] = {.lex_state = 1}, - [851] = {.lex_state = 1}, - [852] = {.lex_state = 1}, + [840] = {.lex_state = 14}, + [841] = {.lex_state = 14}, + [842] = {.lex_state = 10}, + [843] = {.lex_state = 14}, + [844] = {.lex_state = 14}, + [845] = {.lex_state = 14}, + [846] = {.lex_state = 14}, + [847] = {.lex_state = 15}, + [848] = {.lex_state = 15}, + [849] = {.lex_state = 15}, + [850] = {.lex_state = 15}, + [851] = {.lex_state = 15}, + [852] = {.lex_state = 15}, [853] = {.lex_state = 1}, - [854] = {.lex_state = 1}, - [855] = {.lex_state = 14}, - [856] = {.lex_state = 14}, - [857] = {.lex_state = 10}, - [858] = {.lex_state = 14}, - [859] = {.lex_state = 14}, - [860] = {.lex_state = 14}, - [861] = {.lex_state = 14}, - [862] = {.lex_state = 15}, - [863] = {.lex_state = 15}, - [864] = {.lex_state = 15}, - [865] = {.lex_state = 15}, - [866] = {.lex_state = 15}, - [867] = {.lex_state = 15}, + [854] = {.lex_state = 6}, + [855] = {.lex_state = 1}, + [856] = {.lex_state = 1}, + [857] = {.lex_state = 3}, + [858] = {.lex_state = 11}, + [859] = {.lex_state = 0}, + [860] = {.lex_state = 1}, + [861] = {.lex_state = 1}, + [862] = {.lex_state = 1}, + [863] = {.lex_state = 1}, + [864] = {.lex_state = 0}, + [865] = {.lex_state = 1}, + [866] = {.lex_state = 11}, + [867] = {.lex_state = 0}, [868] = {.lex_state = 1}, - [869] = {.lex_state = 11}, - [870] = {.lex_state = 8}, - [871] = {.lex_state = 1}, - [872] = {.lex_state = 1}, - [873] = {.lex_state = 4}, + [869] = {.lex_state = 1}, + [870] = {.lex_state = 11}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 8}, + [873] = {.lex_state = 9}, [874] = {.lex_state = 0}, - [875] = {.lex_state = 1}, - [876] = {.lex_state = 1}, - [877] = {.lex_state = 1}, - [878] = {.lex_state = 1}, + [875] = {.lex_state = 11}, + [876] = {.lex_state = 0}, + [877] = {.lex_state = 3}, + [878] = {.lex_state = 9}, [879] = {.lex_state = 0}, [880] = {.lex_state = 1}, - [881] = {.lex_state = 11}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 1}, - [884] = {.lex_state = 1}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 3}, - [887] = {.lex_state = 9}, - [888] = {.lex_state = 0}, - [889] = {.lex_state = 11}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 4}, - [892] = {.lex_state = 9}, - [893] = {.lex_state = 0}, + [881] = {.lex_state = 0}, + [882] = {.lex_state = 11}, + [883] = {.lex_state = 5}, + [884] = {.lex_state = 11}, + [885] = {.lex_state = 1}, + [886] = {.lex_state = 0}, + [887] = {.lex_state = 1}, + [888] = {.lex_state = 1}, + [889] = {.lex_state = 12}, + [890] = {.lex_state = 9}, + [891] = {.lex_state = 1}, + [892] = {.lex_state = 12}, + [893] = {.lex_state = 9}, [894] = {.lex_state = 1}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 11}, - [897] = {.lex_state = 7}, - [898] = {.lex_state = 4}, + [895] = {.lex_state = 1}, + [896] = {.lex_state = 8}, + [897] = {.lex_state = 6}, + [898] = {.lex_state = 0}, [899] = {.lex_state = 11}, - [900] = {.lex_state = 1}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 1}, - [903] = {.lex_state = 1}, - [904] = {.lex_state = 12}, - [905] = {.lex_state = 9}, - [906] = {.lex_state = 1}, - [907] = {.lex_state = 12}, - [908] = {.lex_state = 9}, + [900] = {.lex_state = 0}, + [901] = {.lex_state = 14}, + [902] = {.lex_state = 14}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 1}, + [905] = {.lex_state = 12}, + [906] = {.lex_state = 0}, + [907] = {.lex_state = 1}, + [908] = {.lex_state = 1}, [909] = {.lex_state = 1}, - [910] = {.lex_state = 1}, - [911] = {.lex_state = 3}, - [912] = {.lex_state = 8}, - [913] = {.lex_state = 4}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 11}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 14}, - [918] = {.lex_state = 14}, + [910] = {.lex_state = 12}, + [911] = {.lex_state = 1}, + [912] = {.lex_state = 1}, + [913] = {.lex_state = 8}, + [914] = {.lex_state = 14}, + [915] = {.lex_state = 12}, + [916] = {.lex_state = 14}, + [917] = {.lex_state = 12}, + [918] = {.lex_state = 0}, [919] = {.lex_state = 0}, - [920] = {.lex_state = 1}, - [921] = {.lex_state = 12}, + [920] = {.lex_state = 0}, + [921] = {.lex_state = 11}, [922] = {.lex_state = 0}, [923] = {.lex_state = 1}, [924] = {.lex_state = 1}, - [925] = {.lex_state = 1}, - [926] = {.lex_state = 12}, + [925] = {.lex_state = 11}, + [926] = {.lex_state = 0}, [927] = {.lex_state = 1}, - [928] = {.lex_state = 1}, - [929] = {.lex_state = 3}, - [930] = {.lex_state = 14}, - [931] = {.lex_state = 12}, - [932] = {.lex_state = 14}, - [933] = {.lex_state = 12}, + [928] = {.lex_state = 12}, + [929] = {.lex_state = 12}, + [930] = {.lex_state = 0}, + [931] = {.lex_state = 11}, + [932] = {.lex_state = 0}, + [933] = {.lex_state = 11}, [934] = {.lex_state = 0}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 11}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 1}, + [935] = {.lex_state = 1}, + [936] = {.lex_state = 11}, + [937] = {.lex_state = 0}, + [938] = {.lex_state = 11}, + [939] = {.lex_state = 0}, [940] = {.lex_state = 1}, - [941] = {.lex_state = 11}, - [942] = {.lex_state = 0}, - [943] = {.lex_state = 1}, - [944] = {.lex_state = 12}, - [945] = {.lex_state = 12}, - [946] = {.lex_state = 0}, - [947] = {.lex_state = 11}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 11}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 1}, - [952] = {.lex_state = 11}, - [953] = {.lex_state = 0}, + [941] = {.lex_state = 6}, + [942] = {.lex_state = 3}, + [943] = {.lex_state = 11}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 1}, + [946] = {.lex_state = 1}, + [947] = {.lex_state = 1}, + [948] = {.lex_state = 1}, + [949] = {.lex_state = 0}, + [950] = {.lex_state = 11}, + [951] = {.lex_state = 0}, + [952] = {.lex_state = 1}, + [953] = {.lex_state = 1}, [954] = {.lex_state = 11}, [955] = {.lex_state = 0}, - [956] = {.lex_state = 11}, - [957] = {.lex_state = 1}, + [956] = {.lex_state = 8}, + [957] = {.lex_state = 9}, [958] = {.lex_state = 11}, - [959] = {.lex_state = 8}, - [960] = {.lex_state = 4}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 1}, - [963] = {.lex_state = 1}, - [964] = {.lex_state = 1}, - [965] = {.lex_state = 1}, - [966] = {.lex_state = 0}, - [967] = {.lex_state = 11}, - [968] = {.lex_state = 0}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 3}, + [961] = {.lex_state = 9}, + [962] = {.lex_state = 0}, + [963] = {.lex_state = 0}, + [964] = {.lex_state = 11}, + [965] = {.lex_state = 5}, + [966] = {.lex_state = 1}, + [967] = {.lex_state = 0}, + [968] = {.lex_state = 1}, [969] = {.lex_state = 1}, - [970] = {.lex_state = 1}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 3}, - [973] = {.lex_state = 9}, - [974] = {.lex_state = 11}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 4}, - [977] = {.lex_state = 9}, - [978] = {.lex_state = 0}, + [970] = {.lex_state = 12}, + [971] = {.lex_state = 9}, + [972] = {.lex_state = 1}, + [973] = {.lex_state = 12}, + [974] = {.lex_state = 9}, + [975] = {.lex_state = 1}, + [976] = {.lex_state = 1}, + [977] = {.lex_state = 8}, + [978] = {.lex_state = 6}, [979] = {.lex_state = 0}, - [980] = {.lex_state = 11}, - [981] = {.lex_state = 7}, - [982] = {.lex_state = 4}, + [980] = {.lex_state = 14}, + [981] = {.lex_state = 14}, + [982] = {.lex_state = 0}, [983] = {.lex_state = 1}, - [984] = {.lex_state = 0}, - [985] = {.lex_state = 1}, + [984] = {.lex_state = 12}, + [985] = {.lex_state = 0}, [986] = {.lex_state = 1}, - [987] = {.lex_state = 12}, - [988] = {.lex_state = 9}, - [989] = {.lex_state = 1}, - [990] = {.lex_state = 12}, - [991] = {.lex_state = 9}, - [992] = {.lex_state = 1}, - [993] = {.lex_state = 1}, - [994] = {.lex_state = 3}, - [995] = {.lex_state = 8}, - [996] = {.lex_state = 4}, + [987] = {.lex_state = 1}, + [988] = {.lex_state = 1}, + [989] = {.lex_state = 12}, + [990] = {.lex_state = 1}, + [991] = {.lex_state = 1}, + [992] = {.lex_state = 8}, + [993] = {.lex_state = 14}, + [994] = {.lex_state = 12}, + [995] = {.lex_state = 14}, + [996] = {.lex_state = 12}, [997] = {.lex_state = 0}, - [998] = {.lex_state = 14}, - [999] = {.lex_state = 14}, - [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 1}, - [1002] = {.lex_state = 12}, - [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 1}, - [1005] = {.lex_state = 1}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 11}, + [1001] = {.lex_state = 0}, + [1002] = {.lex_state = 1}, + [1003] = {.lex_state = 1}, + [1004] = {.lex_state = 11}, + [1005] = {.lex_state = 0}, [1006] = {.lex_state = 1}, [1007] = {.lex_state = 12}, - [1008] = {.lex_state = 1}, - [1009] = {.lex_state = 1}, - [1010] = {.lex_state = 3}, - [1011] = {.lex_state = 14}, - [1012] = {.lex_state = 12}, - [1013] = {.lex_state = 14}, - [1014] = {.lex_state = 12}, - [1015] = {.lex_state = 0}, + [1008] = {.lex_state = 12}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 11}, + [1011] = {.lex_state = 0}, + [1012] = {.lex_state = 11}, + [1013] = {.lex_state = 0}, + [1014] = {.lex_state = 1}, + [1015] = {.lex_state = 11}, [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 11}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 1}, - [1021] = {.lex_state = 1}, + [1017] = {.lex_state = 11}, + [1018] = {.lex_state = 0}, + [1019] = {.lex_state = 1}, + [1020] = {.lex_state = 6}, + [1021] = {.lex_state = 3}, [1022] = {.lex_state = 11}, [1023] = {.lex_state = 0}, [1024] = {.lex_state = 1}, - [1025] = {.lex_state = 12}, - [1026] = {.lex_state = 12}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 11}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 11}, - [1031] = {.lex_state = 0}, + [1025] = {.lex_state = 1}, + [1026] = {.lex_state = 1}, + [1027] = {.lex_state = 1}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 11}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 1}, [1032] = {.lex_state = 1}, [1033] = {.lex_state = 11}, [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 11}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 1}, - [1038] = {.lex_state = 11}, - [1039] = {.lex_state = 8}, - [1040] = {.lex_state = 4}, + [1035] = {.lex_state = 8}, + [1036] = {.lex_state = 9}, + [1037] = {.lex_state = 11}, + [1038] = {.lex_state = 0}, + [1039] = {.lex_state = 3}, + [1040] = {.lex_state = 9}, [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 1}, - [1043] = {.lex_state = 1}, - [1044] = {.lex_state = 1}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 11}, + [1044] = {.lex_state = 5}, [1045] = {.lex_state = 1}, [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 11}, - [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 1}, + [1047] = {.lex_state = 1}, + [1048] = {.lex_state = 12}, + [1049] = {.lex_state = 9}, [1050] = {.lex_state = 1}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 3}, - [1053] = {.lex_state = 9}, - [1054] = {.lex_state = 11}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 4}, - [1057] = {.lex_state = 9}, - [1058] = {.lex_state = 0}, + [1051] = {.lex_state = 12}, + [1052] = {.lex_state = 9}, + [1053] = {.lex_state = 1}, + [1054] = {.lex_state = 1}, + [1055] = {.lex_state = 8}, + [1056] = {.lex_state = 6}, + [1057] = {.lex_state = 0}, + [1058] = {.lex_state = 12}, [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 11}, - [1061] = {.lex_state = 7}, - [1062] = {.lex_state = 4}, - [1063] = {.lex_state = 1}, - [1064] = {.lex_state = 0}, + [1060] = {.lex_state = 1}, + [1061] = {.lex_state = 1}, + [1062] = {.lex_state = 1}, + [1063] = {.lex_state = 12}, + [1064] = {.lex_state = 1}, [1065] = {.lex_state = 1}, - [1066] = {.lex_state = 12}, - [1067] = {.lex_state = 9}, - [1068] = {.lex_state = 1}, - [1069] = {.lex_state = 12}, - [1070] = {.lex_state = 9}, + [1066] = {.lex_state = 8}, + [1067] = {.lex_state = 0}, + [1068] = {.lex_state = 11}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 1}, [1071] = {.lex_state = 1}, - [1072] = {.lex_state = 1}, - [1073] = {.lex_state = 3}, - [1074] = {.lex_state = 8}, - [1075] = {.lex_state = 4}, + [1072] = {.lex_state = 11}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 1}, + [1075] = {.lex_state = 11}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 12}, + [1077] = {.lex_state = 11}, [1078] = {.lex_state = 0}, [1079] = {.lex_state = 1}, - [1080] = {.lex_state = 1}, - [1081] = {.lex_state = 1}, - [1082] = {.lex_state = 12}, - [1083] = {.lex_state = 1}, + [1080] = {.lex_state = 11}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 11}, + [1083] = {.lex_state = 0}, [1084] = {.lex_state = 1}, - [1085] = {.lex_state = 3}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 11}, - [1088] = {.lex_state = 0}, + [1085] = {.lex_state = 6}, + [1086] = {.lex_state = 3}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 1}, [1089] = {.lex_state = 1}, [1090] = {.lex_state = 1}, - [1091] = {.lex_state = 11}, - [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 1}, - [1094] = {.lex_state = 11}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 11}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 1}, - [1099] = {.lex_state = 11}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 11}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 1}, - [1104] = {.lex_state = 8}, - [1105] = {.lex_state = 4}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 1}, + [1091] = {.lex_state = 0}, + [1092] = {.lex_state = 11}, + [1093] = {.lex_state = 0}, + [1094] = {.lex_state = 1}, + [1095] = {.lex_state = 11}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 8}, + [1098] = {.lex_state = 11}, + [1099] = {.lex_state = 0}, + [1100] = {.lex_state = 3}, + [1101] = {.lex_state = 0}, + [1102] = {.lex_state = 11}, + [1103] = {.lex_state = 5}, + [1104] = {.lex_state = 1}, + [1105] = {.lex_state = 1}, + [1106] = {.lex_state = 8}, + [1107] = {.lex_state = 6}, [1108] = {.lex_state = 1}, [1109] = {.lex_state = 1}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 11}, - [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 1}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 3}, + [1110] = {.lex_state = 1}, + [1111] = {.lex_state = 8}, + [1112] = {.lex_state = 11}, + [1113] = {.lex_state = 0}, + [1114] = {.lex_state = 1}, + [1115] = {.lex_state = 1}, [1116] = {.lex_state = 11}, [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 4}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 11}, - [1121] = {.lex_state = 7}, - [1122] = {.lex_state = 4}, + [1118] = {.lex_state = 1}, + [1119] = {.lex_state = 11}, + [1120] = {.lex_state = 0}, + [1121] = {.lex_state = 11}, + [1122] = {.lex_state = 0}, [1123] = {.lex_state = 1}, - [1124] = {.lex_state = 1}, - [1125] = {.lex_state = 3}, - [1126] = {.lex_state = 8}, - [1127] = {.lex_state = 4}, - [1128] = {.lex_state = 1}, - [1129] = {.lex_state = 1}, - [1130] = {.lex_state = 1}, - [1131] = {.lex_state = 3}, - [1132] = {.lex_state = 11}, - [1133] = {.lex_state = 0}, - [1134] = {.lex_state = 1}, - [1135] = {.lex_state = 1}, - [1136] = {.lex_state = 11}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 1}, - [1139] = {.lex_state = 11}, - [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 11}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 1}, - [1144] = {.lex_state = 11}, - [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 11}, + [1124] = {.lex_state = 11}, + [1125] = {.lex_state = 0}, + [1126] = {.lex_state = 11}, + [1127] = {.lex_state = 0}, + [1128] = {.lex_state = 6}, + [1129] = {.lex_state = 8}, + [1130] = {.lex_state = 11}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 5}, + [1133] = {.lex_state = 1}, + [1134] = {.lex_state = 8}, + [1135] = {.lex_state = 6}, + [1136] = {.lex_state = 8}, + [1137] = {.lex_state = 6}, + [1138] = {.lex_state = 8}, + [1139] = {.lex_state = 5}, + [1140] = {.lex_state = 8}, + [1141] = {.lex_state = 6}, + [1142] = {.lex_state = 8}, + [1143] = {.lex_state = 0}, + [1144] = {.lex_state = 4}, + [1145] = {.lex_state = 1}, + [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 8}, - [1149] = {.lex_state = 3}, - [1150] = {.lex_state = 11}, + [1148] = {.lex_state = 1}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 1}, [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 7}, + [1152] = {.lex_state = 1}, [1153] = {.lex_state = 1}, - [1154] = {.lex_state = 3}, - [1155] = {.lex_state = 8}, - [1156] = {.lex_state = 3}, - [1157] = {.lex_state = 8}, - [1158] = {.lex_state = 3}, - [1159] = {.lex_state = 7}, - [1160] = {.lex_state = 3}, - [1161] = {.lex_state = 8}, - [1162] = {.lex_state = 3}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 6}, - [1165] = {.lex_state = 1}, - [1166] = {.lex_state = 0}, + [1154] = {.lex_state = 1}, + [1155] = {.lex_state = 1}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 4}, + [1158] = {.lex_state = 1}, + [1159] = {.lex_state = 1}, + [1160] = {.lex_state = 1}, + [1161] = {.lex_state = 11}, + [1162] = {.lex_state = 1}, + [1163] = {.lex_state = 11}, + [1164] = {.lex_state = 11}, + [1165] = {.lex_state = 0}, + [1166] = {.lex_state = 4}, [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 1}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 1}, - [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 1}, - [1173] = {.lex_state = 0}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 1}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 1}, + [1172] = {.lex_state = 0}, + [1173] = {.lex_state = 1}, [1174] = {.lex_state = 1}, - [1175] = {.lex_state = 1}, - [1176] = {.lex_state = 1}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 6}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 4}, + [1177] = {.lex_state = 1}, + [1178] = {.lex_state = 1}, [1179] = {.lex_state = 1}, - [1180] = {.lex_state = 1}, + [1180] = {.lex_state = 11}, [1181] = {.lex_state = 1}, [1182] = {.lex_state = 11}, - [1183] = {.lex_state = 1}, - [1184] = {.lex_state = 11}, - [1185] = {.lex_state = 11}, + [1183] = {.lex_state = 11}, + [1184] = {.lex_state = 0}, + [1185] = {.lex_state = 4}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 6}, - [1188] = {.lex_state = 0}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 1}, [1189] = {.lex_state = 0}, [1190] = {.lex_state = 1}, [1191] = {.lex_state = 0}, [1192] = {.lex_state = 1}, - [1193] = {.lex_state = 0}, + [1193] = {.lex_state = 1}, [1194] = {.lex_state = 1}, - [1195] = {.lex_state = 0}, + [1195] = {.lex_state = 1}, [1196] = {.lex_state = 1}, - [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 6}, - [1199] = {.lex_state = 1}, - [1200] = {.lex_state = 1}, - [1201] = {.lex_state = 1}, - [1202] = {.lex_state = 11}, - [1203] = {.lex_state = 1}, - [1204] = {.lex_state = 11}, - [1205] = {.lex_state = 11}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 6}, - [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 1}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 1}, + [1197] = {.lex_state = 11}, + [1198] = {.lex_state = 1}, + [1199] = {.lex_state = 11}, + [1200] = {.lex_state = 11}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 1}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 1}, + [1206] = {.lex_state = 1}, + [1207] = {.lex_state = 1}, + [1208] = {.lex_state = 11}, + [1209] = {.lex_state = 1}, + [1210] = {.lex_state = 11}, + [1211] = {.lex_state = 11}, + [1212] = {.lex_state = 0}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 1}, - [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 1}, - [1217] = {.lex_state = 1}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 1}, + [1216] = {.lex_state = 0}, + [1217] = {.lex_state = 0}, [1218] = {.lex_state = 1}, [1219] = {.lex_state = 1}, - [1220] = {.lex_state = 11}, + [1220] = {.lex_state = 1}, [1221] = {.lex_state = 1}, [1222] = {.lex_state = 11}, - [1223] = {.lex_state = 11}, - [1224] = {.lex_state = 0}, + [1223] = {.lex_state = 1}, + [1224] = {.lex_state = 1}, [1225] = {.lex_state = 1}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 0}, + [1226] = {.lex_state = 1}, + [1227] = {.lex_state = 1}, + [1228] = {.lex_state = 1}, [1229] = {.lex_state = 1}, [1230] = {.lex_state = 1}, [1231] = {.lex_state = 1}, - [1232] = {.lex_state = 11}, + [1232] = {.lex_state = 1}, [1233] = {.lex_state = 1}, - [1234] = {.lex_state = 11}, - [1235] = {.lex_state = 11}, - [1236] = {.lex_state = 0}, + [1234] = {.lex_state = 1}, + [1235] = {.lex_state = 1}, + [1236] = {.lex_state = 1}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, [1239] = {.lex_state = 1}, - [1240] = {.lex_state = 0}, + [1240] = {.lex_state = 11}, [1241] = {.lex_state = 1}, - [1242] = {.lex_state = 11}, + [1242] = {.lex_state = 0}, [1243] = {.lex_state = 0}, [1244] = {.lex_state = 1}, - [1245] = {.lex_state = 1}, + [1245] = {.lex_state = 11}, [1246] = {.lex_state = 1}, - [1247] = {.lex_state = 11}, - [1248] = {.lex_state = 1}, + [1247] = {.lex_state = 1}, + [1248] = {.lex_state = 11}, [1249] = {.lex_state = 1}, [1250] = {.lex_state = 1}, [1251] = {.lex_state = 1}, [1252] = {.lex_state = 1}, - [1253] = {.lex_state = 1}, - [1254] = {.lex_state = 1}, + [1253] = {.lex_state = 11}, + [1254] = {.lex_state = 0}, [1255] = {.lex_state = 1}, [1256] = {.lex_state = 1}, - [1257] = {.lex_state = 1}, - [1258] = {.lex_state = 1}, + [1257] = {.lex_state = 11}, + [1258] = {.lex_state = 0}, [1259] = {.lex_state = 1}, [1260] = {.lex_state = 1}, - [1261] = {.lex_state = 1}, + [1261] = {.lex_state = 11}, [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 1}, - [1265] = {.lex_state = 11}, - [1266] = {.lex_state = 1}, + [1263] = {.lex_state = 1}, + [1264] = {.lex_state = 11}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 11}, [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 1}, - [1270] = {.lex_state = 11}, - [1271] = {.lex_state = 1}, - [1272] = {.lex_state = 1}, - [1273] = {.lex_state = 11}, + [1268] = {.lex_state = 1}, + [1269] = {.lex_state = 11}, + [1270] = {.lex_state = 0}, + [1271] = {.lex_state = 11}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 1}, [1274] = {.lex_state = 1}, [1275] = {.lex_state = 1}, [1276] = {.lex_state = 1}, [1277] = {.lex_state = 1}, - [1278] = {.lex_state = 0}, + [1278] = {.lex_state = 11}, [1279] = {.lex_state = 1}, - [1280] = {.lex_state = 1}, + [1280] = {.lex_state = 11}, [1281] = {.lex_state = 11}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 1}, + [1282] = {.lex_state = 1}, + [1283] = {.lex_state = 11}, [1284] = {.lex_state = 1}, - [1285] = {.lex_state = 11}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 1}, - [1288] = {.lex_state = 11}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 11}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 1}, - [1293] = {.lex_state = 11}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 11}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 1}, - [1298] = {.lex_state = 1}, - [1299] = {.lex_state = 1}, - [1300] = {.lex_state = 1}, - [1301] = {.lex_state = 1}, - [1302] = {.lex_state = 11}, - [1303] = {.lex_state = 1}, - [1304] = {.lex_state = 11}, - [1305] = {.lex_state = 11}, - [1306] = {.lex_state = 1}, - [1307] = {.lex_state = 11}, - [1308] = {.lex_state = 1}, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_case] = ACTIONS(1), - [sym_false] = ACTIONS(1), + [sym_true] = ACTIONS(1), [anon_sym_restrict] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), + [sym_null] = ACTIONS(1), [anon_sym_PERCENT_EQ] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_goto] = ACTIONS(1), @@ -5356,7 +5364,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1), [anon_sym_default] = ACTIONS(1), [anon_sym__Atomic] = ACTIONS(1), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_LT_LT_EQ] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), @@ -5372,6 +5380,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_struct] = ACTIONS(1), [anon_sym_signed] = ACTIONS(1), + [sym_comment] = ACTIONS(3), [anon_sym_long] = ACTIONS(1), [anon_sym_GT_GT_EQ] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), @@ -5380,14 +5389,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(1), [anon_sym_PIPE_EQ] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_L] = ACTIONS(1), + [anon_sym_L_SQUOTE] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym___attribute__] = ACTIONS(1), [anon_sym_sizeof] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_union] = ACTIONS(1), [anon_sym_unsigned] = ACTIONS(1), - [sym_escape_sequence] = ACTIONS(1), [anon_sym_short] = ACTIONS(1), [anon_sym_AMP_EQ] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), @@ -5398,12 +5406,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_L_DQUOTE] = ACTIONS(1), [anon_sym_LPAREN2] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), [sym_primitive_type] = ACTIONS(1), [anon_sym_STAR_EQ] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), @@ -5413,14 +5422,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_static] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_register] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_switch] = ACTIONS(1), - [sym_true] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), - [sym_null] = ACTIONS(1), + [sym_false] = ACTIONS(1), [anon_sym_SLASH_EQ] = ACTIONS(1), [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), @@ -5437,9229 +5446,9564 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1), }, [1] = { - [sym_if_statement] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(43), - [sym_declaration] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(43), - [sym_translation_unit] = STATE(40), - [sym_return_statement] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym__declaration_specifiers] = STATE(41), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_type_definition] = STATE(43), - [sym_char_literal] = STATE(35), - [sym_break_statement] = STATE(43), - [sym__empty_declaration] = STATE(43), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_labeled_statement] = STATE(43), - [sym_preproc_include] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(43), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(43), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_while_statement] = STATE(43), - [sym_struct_specifier] = STATE(38), - [sym_continue_statement] = STATE(43), - [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(9), - [sym_false] = ACTIONS(11), - [anon_sym_restrict] = ACTIONS(13), + [sym_if_statement] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(37), + [sym_union_specifier] = STATE(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(42), + [sym_translation_unit] = STATE(39), + [sym_return_statement] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym__declaration_specifiers] = STATE(40), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_type_definition] = STATE(42), + [sym_char_literal] = STATE(34), + [sym_break_statement] = STATE(42), + [sym__empty_declaration] = STATE(42), + [sym_sized_type_specifier] = STATE(37), + [sym_enum_specifier] = STATE(37), + [sym_labeled_statement] = STATE(42), + [sym_preproc_include] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(42), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(37), + [aux_sym_translation_unit_repeat1] = STATE(42), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_while_statement] = STATE(42), + [sym_struct_specifier] = STATE(37), + [sym_continue_statement] = STATE(42), + [sym_true] = ACTIONS(5), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(5), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(11), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), [sym_identifier] = ACTIONS(15), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_sizeof] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(31), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [aux_sym_preproc_ifdef_token1] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(55), - [sym_number_literal] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(11), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [ts_builtin_sym_end] = ACTIONS(67), - [sym_null] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), + [aux_sym_preproc_ifdef_token1] = ACTIONS(17), + [sym_number_literal] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [aux_sym_preproc_ifdef_token2] = ACTIONS(17), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(39), + [sym_preproc_directive] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), [aux_sym_preproc_def_token1] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [2] = { - [sym_do_statement] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym__expression] = STATE(881), - [sym_binary_expression] = STATE(881), - [sym_declaration] = STATE(46), - [sym_call_expression] = STATE(37), - [sym__type_specifier] = STATE(883), - [sym_break_statement] = STATE(46), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(46), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym__empty_declaration] = STATE(46), - [sym_sized_type_specifier] = STATE(883), - [sym_preproc_include] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_pointer_expression] = STATE(37), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_macro_type_specifier] = STATE(883), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(883), - [sym_if_statement] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_comma_expression] = STATE(882), - [sym_function_definition] = STATE(46), - [sym_update_expression] = STATE(881), - [sym_type_qualifier] = STATE(44), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(883), - [sym_switch_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_conditional_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_unary_expression] = STATE(881), - [sym_linkage_specification] = STATE(46), - [sym_subscript_expression] = STATE(37), - [sym_string_literal] = STATE(42), - [aux_sym_translation_unit_repeat1] = STATE(46), - [sym_compound_statement] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_expression_statement] = STATE(46), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(97), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(107), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_do_statement] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym__expression] = STATE(866), + [sym_binary_expression] = STATE(866), + [sym_declaration] = STATE(45), + [sym_call_expression] = STATE(36), + [sym__type_specifier] = STATE(868), + [sym_break_statement] = STATE(45), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(45), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym__empty_declaration] = STATE(45), + [sym_sized_type_specifier] = STATE(868), + [sym_preproc_include] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_pointer_expression] = STATE(36), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_macro_type_specifier] = STATE(868), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(868), + [sym_if_statement] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_comma_expression] = STATE(867), + [sym_function_definition] = STATE(45), + [sym_update_expression] = STATE(866), + [sym_type_qualifier] = STATE(43), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(868), + [sym_switch_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_conditional_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym_unary_expression] = STATE(866), + [sym_linkage_specification] = STATE(45), + [sym_subscript_expression] = STATE(36), + [sym_string_literal] = STATE(41), + [aux_sym_translation_unit_repeat1] = STATE(45), + [sym_compound_statement] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_expression_statement] = STATE(45), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(105), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [3] = { - [sym_field_declaration_list] = STATE(49), - [anon_sym_LBRACE] = ACTIONS(129), + [sym_field_declaration_list] = STATE(48), + [anon_sym_LBRACE] = ACTIONS(127), + [sym_identifier] = ACTIONS(129), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(131), }, [4] = { - [anon_sym_L] = ACTIONS(133), + [anon_sym_L_SQUOTE] = ACTIONS(131), [anon_sym_union] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(131), [anon_sym_unsigned] = ACTIONS(133), [anon_sym_restrict] = ACTIONS(133), [anon_sym_short] = ACTIONS(133), - [sym_identifier] = ACTIONS(133), - [sym_false] = ACTIONS(133), + [sym_true] = ACTIONS(133), + [sym_null] = ACTIONS(133), [anon_sym_sizeof] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(131), + [anon_sym_TILDE] = ACTIONS(131), [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_DQUOTE] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_COLON] = ACTIONS(135), + [anon_sym_LPAREN2] = ACTIONS(131), + [anon_sym_L_DQUOTE] = ACTIONS(131), + [anon_sym_DASH_DASH] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(131), [anon_sym__Atomic] = ACTIONS(133), [sym_primitive_type] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(135), + [sym_identifier] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(131), [anon_sym_DASH] = ACTIONS(133), [anon_sym_static] = ACTIONS(133), [anon_sym_volatile] = ACTIONS(133), [anon_sym_register] = ACTIONS(133), [anon_sym_extern] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(135), - [sym_number_literal] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(131), + [sym_number_literal] = ACTIONS(131), [anon_sym_struct] = ACTIONS(133), - [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_SQUOTE] = ACTIONS(131), [anon_sym_signed] = ACTIONS(133), [anon_sym_enum] = ACTIONS(133), [anon_sym_long] = ACTIONS(133), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [sym_true] = ACTIONS(133), - [sym_null] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(3), + [anon_sym_DQUOTE] = ACTIONS(131), + [anon_sym_PLUS_PLUS] = ACTIONS(131), + [sym_false] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), [anon_sym_auto] = ACTIONS(133), [anon_sym_PLUS] = ACTIONS(133), [anon_sym_inline] = ACTIONS(133), [anon_sym___attribute__] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(131), }, [5] = { - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_restrict] = ACTIONS(141), - [sym_identifier] = ACTIONS(141), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_const] = ACTIONS(141), - [anon_sym_LPAREN2] = ACTIONS(145), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(151), - [anon_sym__Atomic] = ACTIONS(141), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_static] = ACTIONS(141), - [anon_sym_volatile] = ACTIONS(141), - [anon_sym_register] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(156), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_auto] = ACTIONS(141), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_inline] = ACTIONS(141), - [anon_sym___attribute__] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), + [sym_if_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [6] = { - [sym_if_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), }, [7] = { - [sym_identifier] = ACTIONS(169), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(149), + [sym_preproc_arg] = ACTIONS(151), }, [8] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(173), - [sym_preproc_arg] = ACTIONS(175), + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [9] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_preproc_arg] = ACTIONS(167), + [sym_comment] = ACTIONS(147), }, [10] = { - [sym_preproc_arg] = ACTIONS(191), - [sym_comment] = ACTIONS(171), + [sym_char_literal] = STATE(56), + [sym__expression] = STATE(56), + [sym_binary_expression] = STATE(56), + [sym_update_expression] = STATE(56), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(56), + [sym_sizeof_expression] = STATE(56), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(56), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(56), + [sym_assignment_expression] = STATE(56), + [sym_cast_expression] = STATE(56), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(56), + [sym_true] = ACTIONS(169), + [sym_null] = ACTIONS(169), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(173), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [11] = { - [sym_char_literal] = STATE(60), - [sym__expression] = STATE(60), - [sym_binary_expression] = STATE(60), - [sym_update_expression] = STATE(60), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(60), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(60), - [sym_false] = ACTIONS(193), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym__expression] = STATE(59), + [sym_comma_expression] = STATE(61), + [sym_binary_expression] = STATE(59), + [sym_update_expression] = STATE(59), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(60), + [sym__type_specifier] = STATE(62), + [aux_sym_sized_type_specifier_repeat1] = STATE(508), + [sym_union_specifier] = STATE(62), + [sym_conditional_expression] = STATE(59), + [sym_assignment_expression] = STATE(59), + [sym_cast_expression] = STATE(59), + [sym_type_descriptor] = STATE(58), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(59), + [sym_char_literal] = STATE(59), + [aux_sym_type_definition_repeat1] = STATE(60), + [sym_sized_type_specifier] = STATE(62), + [sym_enum_specifier] = STATE(62), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(59), + [sym_sizeof_expression] = STATE(59), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(59), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(62), + [sym_struct_specifier] = STATE(62), + [anon_sym_union] = ACTIONS(37), + [sym_true] = ACTIONS(175), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(175), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(179), + [sym_identifier] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(183), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(175), + [anon_sym_long] = ACTIONS(177), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [12] = { - [sym__expression] = STATE(63), - [sym_comma_expression] = STATE(65), - [sym_binary_expression] = STATE(63), - [sym_update_expression] = STATE(63), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(64), - [sym__type_specifier] = STATE(66), - [aux_sym_sized_type_specifier_repeat1] = STATE(516), - [sym_union_specifier] = STATE(66), - [sym_conditional_expression] = STATE(63), - [sym_assignment_expression] = STATE(63), - [sym_cast_expression] = STATE(63), - [sym_type_descriptor] = STATE(62), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(63), - [sym_char_literal] = STATE(63), - [aux_sym_type_definition_repeat1] = STATE(64), - [sym_sized_type_specifier] = STATE(66), - [sym_enum_specifier] = STATE(66), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(63), - [sym_sizeof_expression] = STATE(63), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(63), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(66), - [sym_struct_specifier] = STATE(66), - [anon_sym_union] = ACTIONS(7), - [sym_false] = ACTIONS(199), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(201), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(205), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(207), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [sym_true] = ACTIONS(199), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(199), - [anon_sym_signed] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(64), + [sym__type_specifier] = STATE(64), + [aux_sym_type_definition_repeat1] = STATE(65), + [sym_sized_type_specifier] = STATE(64), + [sym_enum_specifier] = STATE(64), + [sym_macro_type_specifier] = STATE(64), + [sym_struct_specifier] = STATE(64), + [sym_type_qualifier] = STATE(65), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_const] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(185), + [sym_identifier] = ACTIONS(187), }, [13] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(68), - [sym__type_specifier] = STATE(68), - [aux_sym_type_definition_repeat1] = STATE(69), - [sym_sized_type_specifier] = STATE(68), - [sym_enum_specifier] = STATE(68), - [sym_macro_type_specifier] = STATE(68), - [sym_struct_specifier] = STATE(68), - [sym_type_qualifier] = STATE(69), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(211), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(66), + [sym__expression] = STATE(66), + [sym_binary_expression] = STATE(66), + [sym_update_expression] = STATE(66), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(66), + [sym_sizeof_expression] = STATE(66), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(66), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(66), + [sym_assignment_expression] = STATE(66), + [sym_cast_expression] = STATE(66), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(66), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [14] = { - [sym_char_literal] = STATE(70), - [sym__expression] = STATE(70), - [sym_binary_expression] = STATE(70), - [sym_update_expression] = STATE(70), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(70), - [sym_sizeof_expression] = STATE(70), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(70), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(70), - [sym_assignment_expression] = STATE(70), - [sym_cast_expression] = STATE(70), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(70), - [sym_false] = ACTIONS(213), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_string_literal_repeat1] = STATE(68), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(193), + [aux_sym_string_literal_token1] = ACTIONS(193), + [anon_sym_DQUOTE] = ACTIONS(195), }, [15] = { - [aux_sym_string_literal_repeat1] = STATE(72), - [anon_sym_DQUOTE] = ACTIONS(217), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(219), - [aux_sym_string_literal_token1] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_const] = ACTIONS(201), + [anon_sym_LPAREN2] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym__Atomic] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_static] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(203), }, [16] = { [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(219), }, [17] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(221), }, [18] = { - [sym_identifier] = ACTIONS(225), + [sym_identifier] = ACTIONS(223), [sym_comment] = ACTIONS(3), }, [19] = { - [sym_string_literal] = STATE(76), - [sym_system_lib_string] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_L] = ACTIONS(231), + [sym_string_literal] = STATE(75), [sym_comment] = ACTIONS(3), + [anon_sym_L_DQUOTE] = ACTIONS(225), + [sym_system_lib_string] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(225), }, [20] = { - [anon_sym_union] = ACTIONS(233), - [anon_sym_unsigned] = ACTIONS(233), - [anon_sym_restrict] = ACTIONS(233), - [anon_sym_short] = ACTIONS(233), - [sym_identifier] = ACTIONS(233), - [anon_sym_const] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(235), - [anon_sym_COLON] = ACTIONS(235), - [anon_sym__Atomic] = ACTIONS(233), - [sym_primitive_type] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(235), - [anon_sym_static] = ACTIONS(233), - [anon_sym_volatile] = ACTIONS(233), - [anon_sym_register] = ACTIONS(233), - [anon_sym_extern] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_signed] = ACTIONS(233), - [anon_sym_enum] = ACTIONS(233), - [anon_sym_long] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(235), - [anon_sym_RPAREN] = ACTIONS(235), - [anon_sym_auto] = ACTIONS(233), - [anon_sym_inline] = ACTIONS(233), - [anon_sym___attribute__] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_union] = ACTIONS(229), + [anon_sym_unsigned] = ACTIONS(229), + [anon_sym_restrict] = ACTIONS(229), + [anon_sym_short] = ACTIONS(229), + [anon_sym_const] = ACTIONS(229), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym__Atomic] = ACTIONS(229), + [sym_primitive_type] = ACTIONS(229), + [sym_identifier] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_static] = ACTIONS(229), + [anon_sym_volatile] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_signed] = ACTIONS(229), + [anon_sym_enum] = ACTIONS(229), + [anon_sym_long] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(231), + [anon_sym_RPAREN] = ACTIONS(231), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym___attribute__] = ACTIONS(229), + [anon_sym_LBRACK] = ACTIONS(231), }, [21] = { - [sym_string_literal] = STATE(78), - [anon_sym_union] = ACTIONS(233), - [anon_sym_unsigned] = ACTIONS(233), - [anon_sym_restrict] = ACTIONS(233), - [anon_sym_short] = ACTIONS(233), - [anon_sym_static] = ACTIONS(233), - [anon_sym_volatile] = ACTIONS(233), - [anon_sym_register] = ACTIONS(233), - [anon_sym_extern] = ACTIONS(233), - [sym_identifier] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_signed] = ACTIONS(233), - [anon_sym_enum] = ACTIONS(233), - [anon_sym_long] = ACTIONS(233), - [anon_sym_const] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym__Atomic] = ACTIONS(233), - [sym_primitive_type] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(233), - [anon_sym_L] = ACTIONS(237), - [anon_sym_inline] = ACTIONS(233), - [anon_sym___attribute__] = ACTIONS(233), - [sym_comment] = ACTIONS(3), + [sym_string_literal] = STATE(76), + [anon_sym_union] = ACTIONS(229), + [anon_sym_unsigned] = ACTIONS(229), + [anon_sym_restrict] = ACTIONS(229), + [anon_sym_short] = ACTIONS(229), + [anon_sym_static] = ACTIONS(229), + [anon_sym_volatile] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_signed] = ACTIONS(229), + [anon_sym_enum] = ACTIONS(229), + [anon_sym_long] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(229), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(229), + [sym_primitive_type] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [sym_identifier] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym___attribute__] = ACTIONS(229), }, [22] = { - [sym_parenthesized_expression] = STATE(80), + [sym_parenthesized_expression] = STATE(78), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(233), }, [23] = { - [sym_field_declaration_list] = STATE(82), - [anon_sym_LBRACE] = ACTIONS(129), + [sym_field_declaration_list] = STATE(80), + [anon_sym_LBRACE] = ACTIONS(127), + [sym_identifier] = ACTIONS(235), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(241), }, [24] = { - [sym_parenthesized_expression] = STATE(83), + [sym_parenthesized_expression] = STATE(81), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(237), }, [25] = { - [sym_enumerator_list] = STATE(86), - [anon_sym_LBRACE] = ACTIONS(245), + [sym_enumerator_list] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(239), + [sym_identifier] = ACTIONS(241), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(247), }, [26] = { - [sym_char_literal] = STATE(88), - [sym__expression] = STATE(88), - [sym_binary_expression] = STATE(88), - [sym_update_expression] = STATE(88), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(88), - [sym_sizeof_expression] = STATE(88), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(88), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(88), - [sym_assignment_expression] = STATE(88), - [sym_cast_expression] = STATE(88), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(88), - [sym_false] = ACTIONS(249), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(251), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(249), - [sym_null] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_escape_sequence] = ACTIONS(243), + [aux_sym_char_literal_token1] = ACTIONS(245), + [sym_comment] = ACTIONS(147), }, [27] = { - [sym_parenthesized_expression] = STATE(89), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [sym_char_literal] = STATE(87), + [sym__expression] = STATE(87), + [sym_binary_expression] = STATE(87), + [sym_update_expression] = STATE(87), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(87), + [sym_sizeof_expression] = STATE(87), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(87), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(87), + [sym_assignment_expression] = STATE(87), + [sym_cast_expression] = STATE(87), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(87), + [sym_true] = ACTIONS(247), + [sym_null] = ACTIONS(247), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [28] = { + [sym_parenthesized_expression] = STATE(88), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LPAREN2] = ACTIONS(233), }, [29] = { - [anon_sym_case] = ACTIONS(257), - [sym_false] = ACTIONS(257), - [anon_sym_restrict] = ACTIONS(257), - [sym_identifier] = ACTIONS(257), - [anon_sym_goto] = ACTIONS(257), - [anon_sym_const] = ACTIONS(257), - [anon_sym_typedef] = ACTIONS(257), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_default] = ACTIONS(257), - [anon_sym__Atomic] = ACTIONS(257), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(257), - [sym_number_literal] = ACTIONS(259), - [anon_sym_volatile] = ACTIONS(257), - [anon_sym_SQUOTE] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_struct] = ACTIONS(257), - [anon_sym_signed] = ACTIONS(257), - [anon_sym_long] = ACTIONS(257), - [anon_sym_while] = ACTIONS(257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(257), - [anon_sym_L] = ACTIONS(257), - [anon_sym___attribute__] = ACTIONS(257), - [anon_sym_sizeof] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_union] = ACTIONS(257), - [anon_sym_unsigned] = ACTIONS(257), - [anon_sym_short] = ACTIONS(257), - [anon_sym_do] = ACTIONS(257), - [sym_preproc_directive] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(259), - [aux_sym_preproc_if_token1] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(259), - [anon_sym_LPAREN2] = ACTIONS(259), - [anon_sym_RBRACE] = ACTIONS(259), - [anon_sym_else] = ACTIONS(257), - [sym_primitive_type] = ACTIONS(257), - [anon_sym_for] = ACTIONS(257), - [anon_sym_break] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(259), - [aux_sym_preproc_include_token1] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_static] = ACTIONS(257), - [anon_sym_register] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(259), - [anon_sym_if] = ACTIONS(257), - [anon_sym_switch] = ACTIONS(257), - [sym_true] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(257), - [sym_null] = ACTIONS(257), - [ts_builtin_sym_end] = ACTIONS(259), - [anon_sym_return] = ACTIONS(257), - [anon_sym_continue] = ACTIONS(257), - [anon_sym_SEMI] = ACTIONS(259), - [aux_sym_preproc_def_token1] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_auto] = ACTIONS(257), - [anon_sym_inline] = ACTIONS(257), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(253), }, [30] = { - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(261), - [aux_sym_char_literal_token1] = ACTIONS(263), + [anon_sym_case] = ACTIONS(255), + [sym_true] = ACTIONS(255), + [anon_sym_restrict] = ACTIONS(255), + [sym_null] = ACTIONS(255), + [anon_sym_goto] = ACTIONS(255), + [anon_sym_const] = ACTIONS(255), + [anon_sym_typedef] = ACTIONS(255), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_default] = ACTIONS(255), + [anon_sym__Atomic] = ACTIONS(255), + [sym_identifier] = ACTIONS(255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(255), + [sym_number_literal] = ACTIONS(257), + [anon_sym_volatile] = ACTIONS(255), + [anon_sym_SQUOTE] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_struct] = ACTIONS(255), + [anon_sym_signed] = ACTIONS(255), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(255), + [anon_sym_L_SQUOTE] = ACTIONS(257), + [anon_sym___attribute__] = ACTIONS(255), + [anon_sym_sizeof] = ACTIONS(255), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_union] = ACTIONS(255), + [anon_sym_unsigned] = ACTIONS(255), + [anon_sym_short] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [sym_preproc_directive] = ACTIONS(255), + [anon_sym_AMP] = ACTIONS(257), + [aux_sym_preproc_if_token1] = ACTIONS(255), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_L_DQUOTE] = ACTIONS(257), + [anon_sym_LPAREN2] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_else] = ACTIONS(255), + [sym_primitive_type] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(257), + [aux_sym_preproc_include_token1] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_static] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [anon_sym_register] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_enum] = ACTIONS(255), + [sym_false] = ACTIONS(255), + [ts_builtin_sym_end] = ACTIONS(257), + [anon_sym_return] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(257), + [aux_sym_preproc_def_token1] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_auto] = ACTIONS(255), + [anon_sym_inline] = ACTIONS(255), }, [31] = { - [sym_identifier] = ACTIONS(265), + [sym_identifier] = ACTIONS(259), [sym_comment] = ACTIONS(3), }, [32] = { - [anon_sym_SQUOTE] = ACTIONS(267), - [anon_sym_DQUOTE] = ACTIONS(269), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(261), }, [33] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(271), + [sym_char_literal] = STATE(93), + [sym__expression] = STATE(93), + [sym_binary_expression] = STATE(93), + [sym_update_expression] = STATE(93), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(93), + [sym_sizeof_expression] = STATE(93), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(93), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(93), + [sym_assignment_expression] = STATE(93), + [sym_cast_expression] = STATE(93), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(93), + [sym_true] = ACTIONS(263), + [sym_null] = ACTIONS(263), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(265), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(267), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [34] = { - [sym_char_literal] = STATE(97), - [sym__expression] = STATE(97), - [sym_binary_expression] = STATE(97), - [sym_update_expression] = STATE(97), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(97), - [sym_sizeof_expression] = STATE(97), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(97), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(97), - [sym_assignment_expression] = STATE(97), - [sym_cast_expression] = STATE(97), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(97), - [sym_false] = ACTIONS(273), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(273), - [sym_null] = ACTIONS(273), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [35] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(309), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(299), }, [36] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_RPAREN] = ACTIONS(203), + [anon_sym_RBRACK] = ACTIONS(203), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_LPAREN2] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_RBRACE] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LBRACK] = ACTIONS(203), }, [37] = { - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(143), + [aux_sym__declaration_specifiers_repeat1] = STATE(113), + [sym_attribute_specifier] = STATE(113), + [sym_storage_class_specifier] = STATE(113), + [sym_type_qualifier] = STATE(113), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(311), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [38] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(117), - [sym_attribute_specifier] = STATE(117), - [sym_storage_class_specifier] = STATE(117), - [sym_type_qualifier] = STATE(117), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(317), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [aux_sym_sized_type_specifier_repeat1] = STATE(116), + [anon_sym_unsigned] = ACTIONS(313), + [anon_sym_restrict] = ACTIONS(315), + [anon_sym_short] = ACTIONS(313), + [anon_sym_const] = ACTIONS(315), + [anon_sym_LPAREN2] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(317), + [anon_sym__Atomic] = ACTIONS(315), + [sym_identifier] = ACTIONS(319), + [sym_primitive_type] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(317), + [anon_sym_static] = ACTIONS(315), + [anon_sym_volatile] = ACTIONS(315), + [anon_sym_register] = ACTIONS(315), + [anon_sym_extern] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_signed] = ACTIONS(313), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(317), + [anon_sym_RPAREN] = ACTIONS(317), + [anon_sym_auto] = ACTIONS(315), + [anon_sym_inline] = ACTIONS(315), + [anon_sym___attribute__] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(317), }, [39] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(120), - [anon_sym_unsigned] = ACTIONS(323), - [anon_sym_restrict] = ACTIONS(325), - [sym_identifier] = ACTIONS(327), - [anon_sym_short] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [anon_sym_LPAREN2] = ACTIONS(330), - [anon_sym_COLON] = ACTIONS(330), - [anon_sym__Atomic] = ACTIONS(325), - [sym_primitive_type] = ACTIONS(332), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(330), - [anon_sym_static] = ACTIONS(325), - [anon_sym_volatile] = ACTIONS(325), - [anon_sym_register] = ACTIONS(325), - [anon_sym_extern] = ACTIONS(325), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_signed] = ACTIONS(323), - [anon_sym_long] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(330), - [anon_sym_RPAREN] = ACTIONS(330), - [anon_sym_auto] = ACTIONS(325), - [anon_sym_inline] = ACTIONS(325), - [anon_sym___attribute__] = ACTIONS(325), - [anon_sym_LBRACK] = ACTIONS(330), + [ts_builtin_sym_end] = ACTIONS(324), + [sym_comment] = ACTIONS(3), }, [40] = { - [ts_builtin_sym_end] = ACTIONS(334), + [sym_pointer_declarator] = STATE(119), + [sym_array_declarator] = STATE(119), + [sym__declarator] = STATE(119), + [sym_parenthesized_declarator] = STATE(119), + [sym_function_declarator] = STATE(119), + [sym_init_declarator] = STATE(120), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(328), + [sym_identifier] = ACTIONS(330), [sym_comment] = ACTIONS(3), }, [41] = { - [sym_pointer_declarator] = STATE(123), - [sym_array_declarator] = STATE(123), - [sym__declarator] = STATE(123), - [sym_parenthesized_declarator] = STATE(123), - [sym_function_declarator] = STATE(123), - [sym_init_declarator] = STATE(124), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_LPAREN2] = ACTIONS(338), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(340), + [aux_sym_concatenated_string_repeat1] = STATE(121), + [sym_string_literal] = STATE(121), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PERCENT_EQ] = ACTIONS(203), + [anon_sym_DASH_EQ] = ACTIONS(203), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_PLUS_EQ] = ACTIONS(203), + [anon_sym_LT_LT_EQ] = ACTIONS(203), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(203), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(203), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(203), + [anon_sym_RPAREN] = ACTIONS(203), + [anon_sym_RBRACK] = ACTIONS(203), + [anon_sym_AMP_EQ] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(197), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_RBRACE] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(203), + [anon_sym_STAR_EQ] = ACTIONS(203), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_SLASH_EQ] = ACTIONS(203), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LBRACK] = ACTIONS(203), }, [42] = { - [aux_sym_concatenated_string_repeat1] = STATE(125), - [sym_string_literal] = STATE(125), - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PERCENT_EQ] = ACTIONS(143), - [anon_sym_DASH_EQ] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(143), - [anon_sym_LT_LT_EQ] = ACTIONS(143), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(143), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(143), - [anon_sym_RPAREN] = ACTIONS(143), - [anon_sym_L] = ACTIONS(342), - [anon_sym_RBRACK] = ACTIONS(143), - [anon_sym_AMP_EQ] = ACTIONS(143), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(143), - [anon_sym_STAR_EQ] = ACTIONS(143), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH_EQ] = ACTIONS(143), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(143), - }, - [43] = { - [sym_if_statement] = STATE(126), - [sym_preproc_def] = STATE(126), - [sym_preproc_function_def] = STATE(126), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(126), - [sym_declaration] = STATE(126), - [sym_do_statement] = STATE(126), - [sym_for_statement] = STATE(126), - [aux_sym_translation_unit_repeat1] = STATE(126), - [sym_expression_statement] = STATE(126), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(126), - [sym_return_statement] = STATE(126), - [sym_preproc_call] = STATE(126), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_type_definition] = STATE(126), - [sym_cast_expression] = STATE(35), - [sym__declaration_specifiers] = STATE(41), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_break_statement] = STATE(126), - [sym__empty_declaration] = STATE(126), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_labeled_statement] = STATE(126), - [sym_preproc_include] = STATE(126), - [sym_preproc_if] = STATE(126), - [sym_preproc_ifdef] = STATE(126), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(126), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(38), - [sym_while_statement] = STATE(126), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(126), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(126), - [sym_struct_specifier] = STATE(38), - [sym_goto_statement] = STATE(126), - [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(9), - [sym_false] = ACTIONS(11), - [anon_sym_restrict] = ACTIONS(13), + [sym_if_statement] = STATE(122), + [sym_preproc_def] = STATE(122), + [sym_preproc_function_def] = STATE(122), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(122), + [sym_declaration] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [aux_sym_translation_unit_repeat1] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(37), + [sym_union_specifier] = STATE(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_preproc_call] = STATE(122), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_type_definition] = STATE(122), + [sym_cast_expression] = STATE(34), + [sym__declaration_specifiers] = STATE(40), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_break_statement] = STATE(122), + [sym__empty_declaration] = STATE(122), + [sym_sized_type_specifier] = STATE(37), + [sym_enum_specifier] = STATE(37), + [sym_labeled_statement] = STATE(122), + [sym_preproc_include] = STATE(122), + [sym_preproc_if] = STATE(122), + [sym_preproc_ifdef] = STATE(122), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(122), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(37), + [sym_while_statement] = STATE(122), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(122), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(122), + [sym_struct_specifier] = STATE(37), + [sym_goto_statement] = STATE(122), + [sym_true] = ACTIONS(5), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(5), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(11), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), [sym_identifier] = ACTIONS(15), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_sizeof] = ACTIONS(25), - [sym_preproc_directive] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(31), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(43), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [aux_sym_preproc_ifdef_token1] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(55), - [sym_number_literal] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(11), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [ts_builtin_sym_end] = ACTIONS(344), - [sym_null] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), + [aux_sym_preproc_ifdef_token1] = ACTIONS(17), + [sym_number_literal] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [aux_sym_preproc_ifdef_token2] = ACTIONS(17), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(39), + [sym_preproc_directive] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(332), + [anon_sym_return] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), [aux_sym_preproc_def_token1] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + }, + [43] = { + [sym_sized_type_specifier] = STATE(123), + [sym_enum_specifier] = STATE(123), + [sym_type_qualifier] = STATE(124), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(123), + [sym_attribute_specifier] = STATE(124), + [sym__type_specifier] = STATE(123), + [sym_macro_type_specifier] = STATE(123), + [sym_storage_class_specifier] = STATE(124), + [aux_sym__declaration_specifiers_repeat1] = STATE(124), + [sym_struct_specifier] = STATE(123), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(334), + [sym_identifier] = ACTIONS(187), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [44] = { - [sym_sized_type_specifier] = STATE(127), - [sym_enum_specifier] = STATE(127), - [sym_type_qualifier] = STATE(128), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(127), - [sym_attribute_specifier] = STATE(128), - [sym__type_specifier] = STATE(127), - [sym_macro_type_specifier] = STATE(127), - [sym_storage_class_specifier] = STATE(128), - [aux_sym__declaration_specifiers_repeat1] = STATE(128), - [sym_struct_specifier] = STATE(127), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(346), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_case] = ACTIONS(336), + [sym_true] = ACTIONS(336), + [anon_sym_restrict] = ACTIONS(336), + [sym_null] = ACTIONS(336), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_const] = ACTIONS(336), + [anon_sym_typedef] = ACTIONS(336), + [anon_sym_DASH_DASH] = ACTIONS(338), + [anon_sym_default] = ACTIONS(336), + [anon_sym__Atomic] = ACTIONS(336), + [sym_identifier] = ACTIONS(336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(336), + [sym_number_literal] = ACTIONS(338), + [anon_sym_volatile] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(338), + [anon_sym_extern] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(338), + [anon_sym_struct] = ACTIONS(336), + [anon_sym_signed] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(336), + [anon_sym_while] = ACTIONS(336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(336), + [anon_sym_L_SQUOTE] = ACTIONS(338), + [anon_sym___attribute__] = ACTIONS(336), + [anon_sym_sizeof] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_union] = ACTIONS(336), + [anon_sym_unsigned] = ACTIONS(336), + [anon_sym_short] = ACTIONS(336), + [anon_sym_do] = ACTIONS(336), + [sym_preproc_directive] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(338), + [aux_sym_preproc_if_token1] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_L_DQUOTE] = ACTIONS(338), + [anon_sym_LPAREN2] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_else] = ACTIONS(336), + [sym_primitive_type] = ACTIONS(336), + [anon_sym_for] = ACTIONS(336), + [anon_sym_break] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [aux_sym_preproc_include_token1] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_static] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_register] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_if] = ACTIONS(336), + [anon_sym_switch] = ACTIONS(336), + [anon_sym_enum] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [ts_builtin_sym_end] = ACTIONS(338), + [anon_sym_return] = ACTIONS(336), + [anon_sym_continue] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(338), + [aux_sym_preproc_def_token1] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_auto] = ACTIONS(336), + [anon_sym_inline] = ACTIONS(336), }, [45] = { - [anon_sym_case] = ACTIONS(348), - [sym_false] = ACTIONS(348), - [anon_sym_restrict] = ACTIONS(348), - [sym_identifier] = ACTIONS(348), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_const] = ACTIONS(348), - [anon_sym_typedef] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_default] = ACTIONS(348), - [anon_sym__Atomic] = ACTIONS(348), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(348), - [sym_number_literal] = ACTIONS(350), - [anon_sym_volatile] = ACTIONS(348), - [anon_sym_SQUOTE] = ACTIONS(350), - [anon_sym_extern] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_struct] = ACTIONS(348), - [anon_sym_signed] = ACTIONS(348), - [anon_sym_long] = ACTIONS(348), - [anon_sym_while] = ACTIONS(348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(348), - [anon_sym_L] = ACTIONS(348), - [anon_sym___attribute__] = ACTIONS(348), - [anon_sym_sizeof] = ACTIONS(348), - [anon_sym_LBRACE] = ACTIONS(350), - [anon_sym_union] = ACTIONS(348), - [anon_sym_unsigned] = ACTIONS(348), - [anon_sym_short] = ACTIONS(348), - [anon_sym_do] = ACTIONS(348), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(350), - [aux_sym_preproc_if_token1] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(350), - [anon_sym_LPAREN2] = ACTIONS(350), - [anon_sym_RBRACE] = ACTIONS(350), - [anon_sym_else] = ACTIONS(348), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_for] = ACTIONS(348), - [anon_sym_break] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(350), - [aux_sym_preproc_include_token1] = ACTIONS(348), - [anon_sym_DASH] = ACTIONS(348), - [anon_sym_static] = ACTIONS(348), - [anon_sym_register] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_if] = ACTIONS(348), - [anon_sym_switch] = ACTIONS(348), - [sym_true] = ACTIONS(348), - [anon_sym_enum] = ACTIONS(348), - [sym_null] = ACTIONS(348), - [ts_builtin_sym_end] = ACTIONS(350), - [anon_sym_return] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [aux_sym_preproc_def_token1] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(348), - [anon_sym_auto] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(348), + [sym_do_statement] = STATE(532), + [sym_preproc_function_def] = STATE(532), + [sym__expression] = STATE(866), + [sym_binary_expression] = STATE(866), + [sym_declaration] = STATE(532), + [sym_call_expression] = STATE(36), + [sym__type_specifier] = STATE(868), + [sym_break_statement] = STATE(532), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(532), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym__empty_declaration] = STATE(532), + [sym_sized_type_specifier] = STATE(868), + [sym_preproc_include] = STATE(532), + [sym_continue_statement] = STATE(532), + [sym_preproc_ifdef] = STATE(532), + [sym_pointer_expression] = STATE(36), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_macro_type_specifier] = STATE(868), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(868), + [sym_if_statement] = STATE(532), + [sym_preproc_def] = STATE(532), + [sym_for_statement] = STATE(532), + [sym_comma_expression] = STATE(867), + [sym_function_definition] = STATE(532), + [sym_update_expression] = STATE(866), + [sym_type_qualifier] = STATE(43), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(868), + [sym_switch_statement] = STATE(532), + [sym_return_statement] = STATE(532), + [sym_preproc_call] = STATE(532), + [sym_conditional_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(532), + [sym_while_statement] = STATE(532), + [sym_preproc_if] = STATE(532), + [sym_goto_statement] = STATE(532), + [sym_unary_expression] = STATE(866), + [sym_linkage_specification] = STATE(532), + [sym_subscript_expression] = STATE(36), + [sym_string_literal] = STATE(41), + [aux_sym_translation_unit_repeat1] = STATE(532), + [sym_compound_statement] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_expression_statement] = STATE(532), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(340), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [46] = { - [sym_do_statement] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym__expression] = STATE(881), - [sym_binary_expression] = STATE(881), - [sym_declaration] = STATE(541), - [sym_call_expression] = STATE(37), - [sym__type_specifier] = STATE(883), - [sym_break_statement] = STATE(541), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(541), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym__empty_declaration] = STATE(541), - [sym_sized_type_specifier] = STATE(883), - [sym_preproc_include] = STATE(541), - [sym_continue_statement] = STATE(541), - [sym_preproc_ifdef] = STATE(541), - [sym_pointer_expression] = STATE(37), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_macro_type_specifier] = STATE(883), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(883), - [sym_if_statement] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_for_statement] = STATE(541), - [sym_comma_expression] = STATE(882), - [sym_function_definition] = STATE(541), - [sym_update_expression] = STATE(881), - [sym_type_qualifier] = STATE(44), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(883), - [sym_switch_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_conditional_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_preproc_if] = STATE(541), - [sym_goto_statement] = STATE(541), - [sym_unary_expression] = STATE(881), - [sym_linkage_specification] = STATE(541), - [sym_subscript_expression] = STATE(37), - [sym_string_literal] = STATE(42), - [aux_sym_translation_unit_repeat1] = STATE(541), - [sym_compound_statement] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_expression_statement] = STATE(541), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(97), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(352), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_preproc_def] = STATE(129), + [sym_preproc_function_def] = STATE(129), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(129), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_preproc_call] = STATE(129), + [sym_preproc_if_in_field_declaration_list] = STATE(129), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(129), + [sym__declaration_specifiers] = STATE(131), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(129), + [sym_field_declaration] = STATE(129), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(342), + [aux_sym_preproc_if_token1] = ACTIONS(344), + [anon_sym_const] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(346), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(348), + [sym_identifier] = ACTIONS(187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(350), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(350), + [aux_sym_preproc_def_token1] = ACTIONS(352), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [47] = { - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_field_declaration_list] = STATE(133), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym__declaration_specifiers] = STATE(135), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(133), - [sym_field_declaration] = STATE(133), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [sym_preproc_directive] = ACTIONS(354), - [aux_sym_preproc_if_token1] = ACTIONS(356), - [anon_sym_const] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(358), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(362), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [aux_sym_preproc_ifdef_token2] = ACTIONS(362), - [aux_sym_preproc_def_token1] = ACTIONS(364), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_field_declaration_list] = STATE(132), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_restrict] = ACTIONS(354), + [anon_sym_COMMA] = ACTIONS(356), + [anon_sym_static] = ACTIONS(354), + [anon_sym_volatile] = ACTIONS(354), + [anon_sym_register] = ACTIONS(354), + [anon_sym_extern] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(354), + [anon_sym_LPAREN2] = ACTIONS(356), + [anon_sym_COLON] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(356), + [anon_sym__Atomic] = ACTIONS(354), + [sym_identifier] = ACTIONS(354), + [anon_sym_auto] = ACTIONS(354), + [anon_sym_RPAREN] = ACTIONS(356), + [anon_sym_inline] = ACTIONS(354), + [anon_sym___attribute__] = ACTIONS(354), + [anon_sym_LBRACK] = ACTIONS(356), }, [48] = { - [sym_field_declaration_list] = STATE(136), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_restrict] = ACTIONS(366), - [sym_identifier] = ACTIONS(366), - [anon_sym_static] = ACTIONS(366), - [anon_sym_volatile] = ACTIONS(366), - [anon_sym_register] = ACTIONS(366), - [anon_sym_extern] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_const] = ACTIONS(366), - [anon_sym_LPAREN2] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym__Atomic] = ACTIONS(366), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_inline] = ACTIONS(366), - [anon_sym___attribute__] = ACTIONS(366), - [anon_sym_LBRACK] = ACTIONS(368), + [anon_sym_restrict] = ACTIONS(358), + [anon_sym_COMMA] = ACTIONS(360), + [anon_sym_static] = ACTIONS(358), + [anon_sym_volatile] = ACTIONS(358), + [anon_sym_register] = ACTIONS(358), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_STAR] = ACTIONS(360), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(358), + [anon_sym_LPAREN2] = ACTIONS(360), + [anon_sym_COLON] = ACTIONS(360), + [anon_sym_SEMI] = ACTIONS(360), + [anon_sym__Atomic] = ACTIONS(358), + [sym_identifier] = ACTIONS(358), + [anon_sym_auto] = ACTIONS(358), + [anon_sym_RPAREN] = ACTIONS(360), + [anon_sym_inline] = ACTIONS(358), + [anon_sym___attribute__] = ACTIONS(358), + [anon_sym_LBRACK] = ACTIONS(360), }, [49] = { - [anon_sym_restrict] = ACTIONS(370), - [sym_identifier] = ACTIONS(370), - [anon_sym_static] = ACTIONS(370), - [anon_sym_volatile] = ACTIONS(370), - [anon_sym_register] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_const] = ACTIONS(370), - [anon_sym_LPAREN2] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym__Atomic] = ACTIONS(370), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(370), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_inline] = ACTIONS(370), - [anon_sym___attribute__] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(372), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_LPAREN2] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(362), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LBRACK] = ACTIONS(203), }, [50] = { - [sym_char_literal] = STATE(137), - [sym__expression] = STATE(137), - [sym_binary_expression] = STATE(137), - [sym_update_expression] = STATE(137), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(137), - [sym_sizeof_expression] = STATE(137), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(137), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(137), - [sym_assignment_expression] = STATE(137), - [sym_cast_expression] = STATE(137), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(137), - [sym_false] = ACTIONS(374), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(376), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(374), - [sym_null] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_while] = ACTIONS(364), + [sym_comment] = ACTIONS(3), }, [51] = { - [aux_sym_type_definition_repeat1] = STATE(64), - [sym_sized_type_specifier] = STATE(66), - [sym_enum_specifier] = STATE(66), - [sym_type_qualifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(516), - [sym_union_specifier] = STATE(66), - [sym__type_specifier] = STATE(66), - [sym_macro_type_specifier] = STATE(66), - [sym_struct_specifier] = STATE(66), - [sym_type_descriptor] = STATE(138), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(203), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(203), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(203), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(205), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(366), }, [52] = { - [sym_if_statement] = STATE(139), - [sym_do_statement] = STATE(139), - [sym_for_statement] = STATE(139), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(139), - [sym_return_statement] = STATE(139), - [sym_break_statement] = STATE(139), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(139), - [sym_while_statement] = STATE(139), - [sym_continue_statement] = STATE(139), - [sym_goto_statement] = STATE(139), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(139), - [sym_expression_statement] = STATE(139), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(368), + [anon_sym_restrict] = ACTIONS(368), + [sym_null] = ACTIONS(368), + [anon_sym_goto] = ACTIONS(368), + [anon_sym_const] = ACTIONS(368), + [anon_sym_typedef] = ACTIONS(368), + [anon_sym_DASH_DASH] = ACTIONS(370), + [anon_sym__Atomic] = ACTIONS(368), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(368), + [sym_number_literal] = ACTIONS(370), + [anon_sym_volatile] = ACTIONS(368), + [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_extern] = ACTIONS(368), + [anon_sym_PLUS_PLUS] = ACTIONS(370), + [anon_sym_struct] = ACTIONS(368), + [anon_sym_signed] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(368), + [anon_sym_while] = ACTIONS(368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(370), + [anon_sym___attribute__] = ACTIONS(368), + [anon_sym_sizeof] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_union] = ACTIONS(368), + [anon_sym_unsigned] = ACTIONS(368), + [anon_sym_short] = ACTIONS(368), + [anon_sym_do] = ACTIONS(368), + [sym_preproc_directive] = ACTIONS(368), + [anon_sym_AMP] = ACTIONS(370), + [aux_sym_preproc_if_token1] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_L_DQUOTE] = ACTIONS(370), + [anon_sym_LPAREN2] = ACTIONS(370), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_for] = ACTIONS(368), + [anon_sym_break] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [aux_sym_preproc_include_token1] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_static] = ACTIONS(368), + [anon_sym_DQUOTE] = ACTIONS(370), + [anon_sym_register] = ACTIONS(368), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_if] = ACTIONS(368), + [anon_sym_switch] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(368), + [sym_false] = ACTIONS(368), + [ts_builtin_sym_end] = ACTIONS(370), + [anon_sym_return] = ACTIONS(368), + [anon_sym_continue] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_auto] = ACTIONS(368), + [anon_sym_inline] = ACTIONS(368), }, [53] = { - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(380), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LF] = ACTIONS(372), + [sym_comment] = ACTIONS(147), }, [54] = { - [anon_sym_while] = ACTIONS(382), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(374), + [anon_sym_PERCENT_EQ] = ACTIONS(376), + [anon_sym_DASH_EQ] = ACTIONS(376), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_EQ_EQ] = ACTIONS(376), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(374), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(376), + [anon_sym_LT_LT_EQ] = ACTIONS(376), + [anon_sym_QMARK] = ACTIONS(376), + [anon_sym_BANG_EQ] = ACTIONS(376), + [anon_sym_CARET_EQ] = ACTIONS(376), + [anon_sym_COMMA] = ACTIONS(376), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(376), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_PIPE_EQ] = ACTIONS(376), + [anon_sym_RPAREN] = ACTIONS(376), + [anon_sym_RBRACK] = ACTIONS(376), + [anon_sym_AMP_EQ] = ACTIONS(376), + [anon_sym_PERCENT] = ACTIONS(374), + [anon_sym_AMP] = ACTIONS(374), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(376), + [anon_sym_COLON] = ACTIONS(376), + [anon_sym_STAR_EQ] = ACTIONS(376), + [anon_sym_PIPE_PIPE] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(374), + [anon_sym_LT_EQ] = ACTIONS(376), + [anon_sym_STAR] = ACTIONS(374), + [anon_sym_SLASH_EQ] = ACTIONS(376), + [anon_sym_AMP_AMP] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(376), + [anon_sym_CARET] = ACTIONS(374), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(305), }, [55] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(384), - }, - [56] = { - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_union] = ACTIONS(388), - [sym_true] = ACTIONS(388), - [anon_sym_unsigned] = ACTIONS(388), - [anon_sym_restrict] = ACTIONS(388), - [anon_sym_short] = ACTIONS(388), - [sym_false] = ACTIONS(388), - [sym_null] = ACTIONS(388), - [sym_identifier] = ACTIONS(388), - [anon_sym_do] = ACTIONS(388), - [anon_sym_goto] = ACTIONS(388), - [ts_builtin_sym_end] = ACTIONS(386), - [sym_preproc_directive] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(386), - [aux_sym_preproc_if_token1] = ACTIONS(388), - [anon_sym_TILDE] = ACTIONS(386), - [anon_sym_const] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(386), - [anon_sym_typedef] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(386), - [anon_sym_DQUOTE] = ACTIONS(386), - [anon_sym__Atomic] = ACTIONS(388), - [sym_primitive_type] = ACTIONS(388), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(388), - [anon_sym_break] = ACTIONS(388), + [sym_if_statement] = STATE(140), + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(140), + [sym_declaration] = STATE(140), + [sym_do_statement] = STATE(140), + [sym_for_statement] = STATE(140), + [sym_preproc_else] = STATE(139), + [sym_preproc_elif] = STATE(139), + [aux_sym_translation_unit_repeat1] = STATE(140), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(140), + [sym_switch_statement] = STATE(140), + [sym_return_statement] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(140), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(140), + [sym__empty_declaration] = STATE(140), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(140), + [sym_preproc_include] = STATE(140), + [sym_preproc_if] = STATE(140), + [sym_preproc_ifdef] = STATE(140), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(140), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(140), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(140), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(140), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(140), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(382), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [anon_sym_BANG] = ACTIONS(386), - [aux_sym_preproc_include_token1] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_static] = ACTIONS(388), - [anon_sym_volatile] = ACTIONS(388), - [anon_sym_register] = ACTIONS(388), - [anon_sym_extern] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_if] = ACTIONS(388), - [anon_sym_struct] = ACTIONS(388), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_signed] = ACTIONS(388), - [anon_sym_enum] = ACTIONS(388), - [anon_sym_long] = ACTIONS(388), - [anon_sym_PLUS_PLUS] = ACTIONS(386), - [sym_number_literal] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_while] = ACTIONS(388), - [anon_sym_continue] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [anon_sym_SEMI] = ACTIONS(386), - [anon_sym_SQUOTE] = ACTIONS(386), - [aux_sym_preproc_def_token1] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_auto] = ACTIONS(388), - [anon_sym_L] = ACTIONS(388), - [anon_sym_inline] = ACTIONS(388), - [anon_sym___attribute__] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + }, + [56] = { + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_PERCENT_EQ] = ACTIONS(430), + [anon_sym_DASH_EQ] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_EQ_EQ] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(428), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(428), + [anon_sym_DASH_DASH] = ACTIONS(430), + [anon_sym_PLUS_EQ] = ACTIONS(430), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_BANG_EQ] = ACTIONS(430), + [anon_sym_CARET_EQ] = ACTIONS(430), + [anon_sym_COMMA] = ACTIONS(430), + [anon_sym_PLUS_PLUS] = ACTIONS(430), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_PIPE_EQ] = ACTIONS(430), + [anon_sym_RPAREN] = ACTIONS(430), + [anon_sym_RBRACK] = ACTIONS(430), + [anon_sym_AMP_EQ] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(428), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_RBRACE] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_STAR_EQ] = ACTIONS(430), + [anon_sym_PIPE_PIPE] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(428), + [anon_sym_SLASH_EQ] = ACTIONS(430), + [anon_sym_AMP_AMP] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(305), }, [57] = { - [anon_sym_LF] = ACTIONS(390), - [sym_comment] = ACTIONS(171), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_restrict] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_const] = ACTIONS(432), + [anon_sym_LPAREN2] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym__Atomic] = ACTIONS(432), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LBRACK] = ACTIONS(216), }, [58] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(392), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(434), + [sym_comment] = ACTIONS(3), }, [59] = { - [sym_if_statement] = STATE(147), - [sym_preproc_def] = STATE(147), - [sym_preproc_function_def] = STATE(147), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(147), - [sym_declaration] = STATE(147), - [sym_do_statement] = STATE(147), - [sym_for_statement] = STATE(147), - [sym_preproc_else] = STATE(146), - [sym_preproc_elif] = STATE(146), - [aux_sym_translation_unit_repeat1] = STATE(147), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(147), - [sym_switch_statement] = STATE(147), - [sym_return_statement] = STATE(147), - [sym_preproc_call] = STATE(147), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(147), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(147), - [sym__empty_declaration] = STATE(147), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(147), - [sym_preproc_include] = STATE(147), - [sym_preproc_if] = STATE(147), - [sym_preproc_ifdef] = STATE(147), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(147), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(147), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(147), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(147), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(147), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(402), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(436), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [60] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(446), - [anon_sym_PERCENT_EQ] = ACTIONS(448), - [anon_sym_DASH_EQ] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(446), - [anon_sym_EQ_EQ] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(446), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(448), - [anon_sym_LT_LT_EQ] = ACTIONS(448), - [anon_sym_QMARK] = ACTIONS(448), - [anon_sym_BANG_EQ] = ACTIONS(448), - [anon_sym_CARET_EQ] = ACTIONS(448), - [anon_sym_COMMA] = ACTIONS(448), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_GT_GT_EQ] = ACTIONS(448), - [anon_sym_GT] = ACTIONS(446), - [anon_sym_PIPE_EQ] = ACTIONS(448), - [anon_sym_RPAREN] = ACTIONS(448), - [anon_sym_RBRACK] = ACTIONS(448), - [anon_sym_AMP_EQ] = ACTIONS(448), - [anon_sym_PERCENT] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(446), - [anon_sym_EQ] = ACTIONS(446), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(448), - [anon_sym_RBRACE] = ACTIONS(448), - [anon_sym_COLON] = ACTIONS(448), - [anon_sym_STAR_EQ] = ACTIONS(448), - [anon_sym_PIPE_PIPE] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_SLASH_EQ] = ACTIONS(448), - [anon_sym_AMP_AMP] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(446), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_sized_type_specifier_repeat1] = STATE(508), + [sym_union_specifier] = STATE(143), + [sym__type_specifier] = STATE(143), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_sized_type_specifier] = STATE(143), + [sym_enum_specifier] = STATE(143), + [sym_macro_type_specifier] = STATE(143), + [sym_struct_specifier] = STATE(143), + [sym_type_qualifier] = STATE(144), + [anon_sym_long] = ACTIONS(177), + [anon_sym_union] = ACTIONS(37), + [anon_sym_const] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(177), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(438), + [sym_identifier] = ACTIONS(187), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(69), }, [61] = { - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_restrict] = ACTIONS(450), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_const] = ACTIONS(450), - [anon_sym_LPAREN2] = ACTIONS(145), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym__Atomic] = ACTIONS(450), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_volatile] = ACTIONS(450), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(156), + [anon_sym_RPAREN] = ACTIONS(436), + [sym_comment] = ACTIONS(3), }, [62] = { - [anon_sym_RPAREN] = ACTIONS(452), - [sym_comment] = ACTIONS(3), + [sym_abstract_parenthesized_declarator] = STATE(149), + [sym_abstract_array_declarator] = STATE(149), + [sym_parameter_list] = STATE(148), + [sym__abstract_declarator] = STATE(149), + [aux_sym_type_definition_repeat1] = STATE(150), + [sym_abstract_function_declarator] = STATE(149), + [sym_abstract_pointer_declarator] = STATE(149), + [sym_type_qualifier] = STATE(150), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(440), + [anon_sym_LPAREN2] = ACTIONS(442), + [anon_sym_restrict] = ACTIONS(440), + [anon_sym_volatile] = ACTIONS(440), + [anon_sym__Atomic] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(448), }, [63] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_COMMA] = ACTIONS(432), + [anon_sym_static] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(432), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(201), + [anon_sym_LPAREN2] = ACTIONS(450), + [anon_sym_COLON] = ACTIONS(432), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym__Atomic] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_RPAREN] = ACTIONS(432), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(432), }, [64] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(516), - [sym_union_specifier] = STATE(150), - [sym__type_specifier] = STATE(150), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_sized_type_specifier] = STATE(150), - [sym_enum_specifier] = STATE(150), - [sym_macro_type_specifier] = STATE(150), - [sym_struct_specifier] = STATE(150), - [sym_type_qualifier] = STATE(151), - [anon_sym_long] = ACTIONS(203), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(203), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(456), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(203), - [anon_sym_enum] = ACTIONS(65), + [sym_function_type_declarator] = STATE(154), + [sym_pointer_type_declarator] = STATE(154), + [sym_parenthesized_type_declarator] = STATE(154), + [sym_array_type_declarator] = STATE(154), + [sym__type_declarator] = STATE(154), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LPAREN2] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), + [sym_comment] = ACTIONS(3), }, [65] = { - [anon_sym_RPAREN] = ACTIONS(454), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(155), + [sym__type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_sized_type_specifier] = STATE(155), + [sym_enum_specifier] = STATE(155), + [sym_macro_type_specifier] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_type_qualifier] = STATE(144), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_const] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(459), + [sym_identifier] = ACTIONS(187), }, [66] = { - [sym_abstract_parenthesized_declarator] = STATE(156), - [sym_abstract_array_declarator] = STATE(156), - [sym_parameter_list] = STATE(155), - [sym__abstract_declarator] = STATE(156), - [aux_sym_type_definition_repeat1] = STATE(157), - [sym_abstract_function_declarator] = STATE(156), - [sym_abstract_pointer_declarator] = STATE(156), - [sym_type_qualifier] = STATE(157), - [anon_sym_const] = ACTIONS(458), - [anon_sym_LPAREN2] = ACTIONS(460), - [anon_sym_restrict] = ACTIONS(458), - [anon_sym_volatile] = ACTIONS(458), - [anon_sym__Atomic] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(466), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(461), + [anon_sym_PERCENT_EQ] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(461), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(463), + [anon_sym_LT_LT_EQ] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(463), + [anon_sym_BANG_EQ] = ACTIONS(463), + [anon_sym_CARET_EQ] = ACTIONS(463), + [anon_sym_COMMA] = ACTIONS(463), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_PIPE_EQ] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(463), + [anon_sym_AMP_EQ] = ACTIONS(463), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(463), + [anon_sym_RBRACE] = ACTIONS(463), + [anon_sym_COLON] = ACTIONS(463), + [anon_sym_STAR_EQ] = ACTIONS(463), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_SLASH_EQ] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_SEMI] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(305), }, [67] = { - [anon_sym_restrict] = ACTIONS(141), - [sym_identifier] = ACTIONS(141), - [anon_sym_static] = ACTIONS(141), - [anon_sym_volatile] = ACTIONS(141), - [anon_sym_register] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(450), - [anon_sym_COMMA] = ACTIONS(450), - [anon_sym_const] = ACTIONS(141), - [anon_sym_LPAREN2] = ACTIONS(468), - [anon_sym_COLON] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(450), - [anon_sym__Atomic] = ACTIONS(141), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_inline] = ACTIONS(141), - [anon_sym___attribute__] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_GT_GT] = ACTIONS(465), + [anon_sym_restrict] = ACTIONS(465), + [anon_sym_PERCENT_EQ] = ACTIONS(467), + [anon_sym_DASH_EQ] = ACTIONS(467), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_SLASH] = ACTIONS(465), + [anon_sym_DASH_GT] = ACTIONS(467), + [anon_sym_const] = ACTIONS(465), + [anon_sym_LT_LT] = ACTIONS(465), + [anon_sym_DASH_DASH] = ACTIONS(467), + [anon_sym__Atomic] = ACTIONS(465), + [sym_identifier] = ACTIONS(465), + [anon_sym_PLUS_EQ] = ACTIONS(467), + [anon_sym_LT_LT_EQ] = ACTIONS(467), + [anon_sym_QMARK] = ACTIONS(467), + [anon_sym_BANG_EQ] = ACTIONS(467), + [anon_sym_CARET_EQ] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(467), + [anon_sym_volatile] = ACTIONS(465), + [anon_sym_extern] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(467), + [anon_sym_struct] = ACTIONS(465), + [anon_sym_signed] = ACTIONS(465), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(465), + [anon_sym_GT_GT_EQ] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(465), + [anon_sym_PIPE_EQ] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(467), + [anon_sym___attribute__] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_union] = ACTIONS(465), + [anon_sym_unsigned] = ACTIONS(465), + [anon_sym_short] = ACTIONS(465), + [anon_sym_AMP_EQ] = ACTIONS(467), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(465), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_L_DQUOTE] = ACTIONS(467), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_GT_EQ] = ACTIONS(467), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(467), + [sym_primitive_type] = ACTIONS(465), + [anon_sym_STAR_EQ] = ACTIONS(467), + [anon_sym_PIPE_PIPE] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_static] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_register] = ACTIONS(465), + [anon_sym_LT_EQ] = ACTIONS(467), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_SLASH_EQ] = ACTIONS(467), + [anon_sym_AMP_AMP] = ACTIONS(467), + [anon_sym_SEMI] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_auto] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(467), + [anon_sym_inline] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(467), }, [68] = { - [sym_function_type_declarator] = STATE(161), - [sym_pointer_type_declarator] = STATE(161), - [sym_parenthesized_type_declarator] = STATE(161), - [sym_array_type_declarator] = STATE(161), - [sym__type_declarator] = STATE(161), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(475), + [aux_sym_string_literal_repeat1] = STATE(157), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(469), + [aux_sym_string_literal_token1] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(471), }, [69] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(162), - [sym__type_specifier] = STATE(162), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_sized_type_specifier] = STATE(162), - [sym_enum_specifier] = STATE(162), - [sym_macro_type_specifier] = STATE(162), - [sym_struct_specifier] = STATE(162), - [sym_type_qualifier] = STATE(151), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(477), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(158), + [sym__expression] = STATE(158), + [sym_binary_expression] = STATE(158), + [sym_update_expression] = STATE(158), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(158), + [sym_sizeof_expression] = STATE(158), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(158), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(158), + [sym_assignment_expression] = STATE(158), + [sym_cast_expression] = STATE(158), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(158), + [sym_true] = ACTIONS(473), + [sym_null] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(475), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [70] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(479), - [anon_sym_PERCENT_EQ] = ACTIONS(481), - [anon_sym_DASH_EQ] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(479), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(479), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(479), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(481), - [anon_sym_LT_LT_EQ] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_CARET_EQ] = ACTIONS(481), - [anon_sym_COMMA] = ACTIONS(481), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_PIPE_EQ] = ACTIONS(481), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_AMP_EQ] = ACTIONS(481), - [anon_sym_PERCENT] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(479), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_COLON] = ACTIONS(481), - [anon_sym_STAR_EQ] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_LT_EQ] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(479), - [anon_sym_SLASH_EQ] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_type_definition_repeat1] = STATE(60), + [sym_sized_type_specifier] = STATE(62), + [sym_enum_specifier] = STATE(62), + [sym_type_qualifier] = STATE(60), + [aux_sym_sized_type_specifier_repeat1] = STATE(508), + [sym_union_specifier] = STATE(62), + [sym__type_specifier] = STATE(62), + [sym_macro_type_specifier] = STATE(62), + [sym_struct_specifier] = STATE(62), + [sym_type_descriptor] = STATE(159), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(177), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(177), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_const] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(179), + [sym_identifier] = ACTIONS(187), }, [71] = { - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_restrict] = ACTIONS(483), - [sym_identifier] = ACTIONS(483), - [anon_sym_PERCENT_EQ] = ACTIONS(485), - [anon_sym_DASH_EQ] = ACTIONS(485), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_EQ_EQ] = ACTIONS(485), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_DASH_GT] = ACTIONS(485), - [anon_sym_const] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym__Atomic] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(485), - [anon_sym_LT_LT_EQ] = ACTIONS(485), - [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_BANG_EQ] = ACTIONS(485), - [anon_sym_CARET_EQ] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(485), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_signed] = ACTIONS(483), - [anon_sym_long] = ACTIONS(483), - [anon_sym_GT_GT_EQ] = ACTIONS(485), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_PIPE_EQ] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_L] = ACTIONS(483), - [anon_sym_RBRACK] = ACTIONS(485), - [anon_sym___attribute__] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_union] = ACTIONS(483), - [anon_sym_unsigned] = ACTIONS(483), - [anon_sym_short] = ACTIONS(483), - [anon_sym_AMP_EQ] = ACTIONS(485), - [anon_sym_PERCENT] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_EQ] = ACTIONS(483), - [anon_sym_DQUOTE] = ACTIONS(485), - [anon_sym_LPAREN2] = ACTIONS(485), - [anon_sym_GT_EQ] = ACTIONS(485), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_COLON] = ACTIONS(485), - [sym_primitive_type] = ACTIONS(483), - [anon_sym_STAR_EQ] = ACTIONS(485), - [anon_sym_PIPE_PIPE] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_register] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [anon_sym_SLASH_EQ] = ACTIONS(485), - [anon_sym_AMP_AMP] = ACTIONS(485), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_CARET] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_auto] = ACTIONS(483), - [anon_sym_DOT] = ACTIONS(485), - [anon_sym_inline] = ACTIONS(483), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), + [sym_if_statement] = STATE(160), + [sym_do_statement] = STATE(160), + [sym_for_statement] = STATE(160), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(160), + [sym_return_statement] = STATE(160), + [sym_break_statement] = STATE(160), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(160), + [sym_while_statement] = STATE(160), + [sym_continue_statement] = STATE(160), + [sym_goto_statement] = STATE(160), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(160), + [sym_expression_statement] = STATE(160), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [72] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(487), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), + [sym__expression] = STATE(162), + [sym_binary_expression] = STATE(162), + [sym_declaration] = STATE(163), + [sym_update_expression] = STATE(162), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_conditional_expression] = STATE(162), + [sym_assignment_expression] = STATE(162), + [sym_cast_expression] = STATE(162), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(162), + [sym_char_literal] = STATE(162), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(162), + [sym_sizeof_expression] = STATE(162), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(162), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), + [sym_storage_class_specifier] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym_true] = ACTIONS(479), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(479), + [anon_sym_const] = ACTIONS(7), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(481), + [sym_number_literal] = ACTIONS(483), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [73] = { - [sym__expression] = STATE(166), - [sym_binary_expression] = STATE(166), + [anon_sym_case] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [anon_sym_restrict] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [anon_sym_goto] = ACTIONS(487), + [anon_sym_const] = ACTIONS(487), + [anon_sym_typedef] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym_default] = ACTIONS(487), + [anon_sym__Atomic] = ACTIONS(487), + [sym_identifier] = ACTIONS(487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [sym_number_literal] = ACTIONS(489), + [anon_sym_volatile] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [anon_sym_extern] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_signed] = ACTIONS(487), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [anon_sym_L_SQUOTE] = ACTIONS(489), + [anon_sym___attribute__] = ACTIONS(487), + [anon_sym_sizeof] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_union] = ACTIONS(487), + [anon_sym_unsigned] = ACTIONS(487), + [anon_sym_short] = ACTIONS(487), + [anon_sym_do] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(489), + [aux_sym_preproc_if_token1] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_L_DQUOTE] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_else] = ACTIONS(487), + [sym_primitive_type] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(489), + [aux_sym_preproc_include_token1] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_DQUOTE] = ACTIONS(489), + [anon_sym_register] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_if] = ACTIONS(487), + [anon_sym_switch] = ACTIONS(487), + [anon_sym_enum] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [ts_builtin_sym_end] = ACTIONS(489), + [anon_sym_return] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [aux_sym_preproc_def_token1] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_auto] = ACTIONS(487), + [anon_sym_inline] = ACTIONS(487), + }, + [74] = { + [sym_if_statement] = STATE(167), + [sym_preproc_def] = STATE(167), + [sym_preproc_function_def] = STATE(167), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(167), [sym_declaration] = STATE(167), - [sym_update_expression] = STATE(166), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_conditional_expression] = STATE(166), - [sym_assignment_expression] = STATE(166), - [sym_cast_expression] = STATE(166), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(166), - [sym_char_literal] = STATE(166), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(166), - [sym_sizeof_expression] = STATE(166), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(166), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_storage_class_specifier] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_false] = ACTIONS(491), - [anon_sym_restrict] = ACTIONS(13), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_preproc_else] = STATE(166), + [sym_preproc_elif] = STATE(166), + [aux_sym_translation_unit_repeat1] = STATE(167), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_preproc_call] = STATE(167), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(167), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(167), + [sym__empty_declaration] = STATE(167), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(167), + [sym_preproc_include] = STATE(167), + [sym_preproc_if] = STATE(167), + [sym_preproc_ifdef] = STATE(167), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(167), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(167), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(167), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(167), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(167), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(491), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + }, + [75] = { + [sym_true] = ACTIONS(493), + [anon_sym_restrict] = ACTIONS(493), + [sym_null] = ACTIONS(493), + [anon_sym_goto] = ACTIONS(493), + [anon_sym_const] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(495), + [anon_sym__Atomic] = ACTIONS(493), [sym_identifier] = ACTIONS(493), - [anon_sym_const] = ACTIONS(13), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(493), [sym_number_literal] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [sym_true] = ACTIONS(491), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(497), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [anon_sym_volatile] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(495), + [anon_sym_struct] = ACTIONS(493), + [anon_sym_signed] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(493), + [anon_sym_while] = ACTIONS(493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(493), + [anon_sym_L_SQUOTE] = ACTIONS(495), + [anon_sym___attribute__] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(495), + [anon_sym_union] = ACTIONS(493), + [anon_sym_unsigned] = ACTIONS(493), + [anon_sym_short] = ACTIONS(493), + [anon_sym_do] = ACTIONS(493), + [sym_preproc_directive] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(495), + [aux_sym_preproc_if_token1] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_L_DQUOTE] = ACTIONS(495), + [anon_sym_LPAREN2] = ACTIONS(495), + [sym_primitive_type] = ACTIONS(493), + [anon_sym_for] = ACTIONS(493), + [anon_sym_break] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(495), + [aux_sym_preproc_include_token1] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_static] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [anon_sym_register] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_if] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(493), + [anon_sym_enum] = ACTIONS(493), + [sym_false] = ACTIONS(493), + [ts_builtin_sym_end] = ACTIONS(495), + [anon_sym_return] = ACTIONS(493), + [anon_sym_continue] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(495), + [aux_sym_preproc_def_token1] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_auto] = ACTIONS(493), + [anon_sym_inline] = ACTIONS(493), }, - [74] = { - [anon_sym_case] = ACTIONS(499), - [sym_false] = ACTIONS(499), - [anon_sym_restrict] = ACTIONS(499), - [sym_identifier] = ACTIONS(499), - [anon_sym_goto] = ACTIONS(499), - [anon_sym_const] = ACTIONS(499), - [anon_sym_typedef] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym_default] = ACTIONS(499), - [anon_sym__Atomic] = ACTIONS(499), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(499), - [sym_number_literal] = ACTIONS(501), - [anon_sym_volatile] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(501), - [anon_sym_extern] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_struct] = ACTIONS(499), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_while] = ACTIONS(499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(499), - [anon_sym_L] = ACTIONS(499), - [anon_sym___attribute__] = ACTIONS(499), - [anon_sym_sizeof] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_union] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [anon_sym_do] = ACTIONS(499), - [sym_preproc_directive] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [aux_sym_preproc_if_token1] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_LPAREN2] = ACTIONS(501), - [anon_sym_RBRACE] = ACTIONS(501), - [anon_sym_else] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(499), - [anon_sym_for] = ACTIONS(499), - [anon_sym_break] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(501), - [aux_sym_preproc_include_token1] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_static] = ACTIONS(499), - [anon_sym_register] = ACTIONS(499), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_if] = ACTIONS(499), - [anon_sym_switch] = ACTIONS(499), + [76] = { + [sym_sized_type_specifier] = STATE(130), + [sym_declaration] = STATE(169), + [sym_declaration_list] = STATE(169), + [sym_enum_specifier] = STATE(130), + [sym_function_definition] = STATE(169), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym__declaration_specifiers] = STATE(40), + [sym_struct_specifier] = STATE(130), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_auto] = ACTIONS(63), + [sym_identifier] = ACTIONS(187), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + }, + [77] = { + [sym_char_literal] = STATE(875), + [sym__expression] = STATE(875), + [sym_comma_expression] = STATE(876), + [sym_binary_expression] = STATE(875), + [sym_update_expression] = STATE(875), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(875), + [sym_sizeof_expression] = STATE(875), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(875), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(875), + [sym_assignment_expression] = STATE(875), + [sym_cast_expression] = STATE(875), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(875), [sym_true] = ACTIONS(499), - [anon_sym_enum] = ACTIONS(499), [sym_null] = ACTIONS(499), - [ts_builtin_sym_end] = ACTIONS(501), - [anon_sym_return] = ACTIONS(499), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(501), - [aux_sym_preproc_def_token1] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_auto] = ACTIONS(499), - [anon_sym_inline] = ACTIONS(499), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(501), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [75] = { - [sym_if_statement] = STATE(171), - [sym_preproc_def] = STATE(171), - [sym_preproc_function_def] = STATE(171), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(171), - [sym_declaration] = STATE(171), - [sym_do_statement] = STATE(171), - [sym_for_statement] = STATE(171), - [sym_preproc_else] = STATE(170), - [sym_preproc_elif] = STATE(170), - [aux_sym_translation_unit_repeat1] = STATE(171), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(171), - [sym_switch_statement] = STATE(171), - [sym_return_statement] = STATE(171), - [sym_preproc_call] = STATE(171), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(171), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(171), - [sym__empty_declaration] = STATE(171), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(171), - [sym_preproc_include] = STATE(171), - [sym_preproc_if] = STATE(171), - [sym_preproc_ifdef] = STATE(171), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(171), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(171), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(171), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(171), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(171), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(503), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [78] = { + [sym_if_statement] = STATE(170), + [sym_do_statement] = STATE(170), + [sym_for_statement] = STATE(170), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(170), + [sym_return_statement] = STATE(170), + [sym_break_statement] = STATE(170), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(170), + [sym_while_statement] = STATE(170), + [sym_continue_statement] = STATE(170), + [sym_goto_statement] = STATE(170), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(170), + [sym_expression_statement] = STATE(170), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [76] = { - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_union] = ACTIONS(507), - [sym_true] = ACTIONS(507), - [anon_sym_unsigned] = ACTIONS(507), - [anon_sym_restrict] = ACTIONS(507), - [anon_sym_short] = ACTIONS(507), - [sym_false] = ACTIONS(507), - [sym_null] = ACTIONS(507), - [sym_identifier] = ACTIONS(507), - [anon_sym_do] = ACTIONS(507), - [anon_sym_goto] = ACTIONS(507), - [ts_builtin_sym_end] = ACTIONS(505), - [sym_preproc_directive] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(505), - [aux_sym_preproc_if_token1] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_const] = ACTIONS(507), + [79] = { + [sym_field_declaration_list] = STATE(171), + [anon_sym_LBRACE] = ACTIONS(127), + [anon_sym_restrict] = ACTIONS(503), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_static] = ACTIONS(503), + [anon_sym_volatile] = ACTIONS(503), + [anon_sym_register] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(503), + [anon_sym_STAR] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(503), [anon_sym_LPAREN2] = ACTIONS(505), - [anon_sym_typedef] = ACTIONS(507), - [anon_sym_DASH_DASH] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym__Atomic] = ACTIONS(507), - [sym_primitive_type] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(507), - [anon_sym_break] = ACTIONS(507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(505), - [aux_sym_preproc_include_token1] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym__Atomic] = ACTIONS(503), + [sym_identifier] = ACTIONS(503), + [anon_sym_auto] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_inline] = ACTIONS(503), + [anon_sym___attribute__] = ACTIONS(503), + [anon_sym_LBRACK] = ACTIONS(505), + }, + [80] = { + [anon_sym_restrict] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(509), [anon_sym_static] = ACTIONS(507), [anon_sym_volatile] = ACTIONS(507), [anon_sym_register] = ACTIONS(507), [anon_sym_extern] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_struct] = ACTIONS(507), - [anon_sym_switch] = ACTIONS(507), - [anon_sym_signed] = ACTIONS(507), - [anon_sym_enum] = ACTIONS(507), - [anon_sym_long] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(505), - [sym_number_literal] = ACTIONS(505), - [anon_sym_return] = ACTIONS(507), - [anon_sym_while] = ACTIONS(507), - [anon_sym_continue] = ACTIONS(507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(505), - [aux_sym_preproc_def_token1] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(509), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(507), + [anon_sym_LPAREN2] = ACTIONS(509), + [anon_sym_COLON] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym__Atomic] = ACTIONS(507), + [sym_identifier] = ACTIONS(507), [anon_sym_auto] = ACTIONS(507), - [anon_sym_L] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(509), [anon_sym_inline] = ACTIONS(507), [anon_sym___attribute__] = ACTIONS(507), - [anon_sym_sizeof] = ACTIONS(507), - }, - [77] = { - [anon_sym_DQUOTE] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - }, - [78] = { - [sym_sized_type_specifier] = STATE(134), - [sym_declaration] = STATE(173), - [sym_declaration_list] = STATE(173), - [sym_enum_specifier] = STATE(134), - [sym_function_definition] = STATE(173), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(41), - [sym_struct_specifier] = STATE(134), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_auto] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - }, - [79] = { - [sym_char_literal] = STATE(889), - [sym__expression] = STATE(889), - [sym_comma_expression] = STATE(890), - [sym_binary_expression] = STATE(889), - [sym_update_expression] = STATE(889), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(889), - [sym_sizeof_expression] = STATE(889), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(889), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(889), - [sym_assignment_expression] = STATE(889), - [sym_cast_expression] = STATE(889), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(889), - [sym_false] = ACTIONS(513), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(515), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(513), - [sym_null] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [80] = { - [sym_if_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(509), }, [81] = { - [sym_field_declaration_list] = STATE(175), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_restrict] = ACTIONS(517), - [sym_identifier] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_volatile] = ACTIONS(517), - [anon_sym_register] = ACTIONS(517), - [anon_sym_extern] = ACTIONS(517), - [anon_sym_STAR] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(519), - [anon_sym_const] = ACTIONS(517), - [anon_sym_LPAREN2] = ACTIONS(519), - [anon_sym_COLON] = ACTIONS(519), - [anon_sym_SEMI] = ACTIONS(519), - [anon_sym__Atomic] = ACTIONS(517), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(517), - [anon_sym_RPAREN] = ACTIONS(519), - [anon_sym_inline] = ACTIONS(517), - [anon_sym___attribute__] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(519), + [sym_switch_body] = STATE(173), + [anon_sym_LBRACE] = ACTIONS(511), + [sym_comment] = ACTIONS(3), }, [82] = { - [anon_sym_restrict] = ACTIONS(521), - [sym_identifier] = ACTIONS(521), - [anon_sym_static] = ACTIONS(521), - [anon_sym_volatile] = ACTIONS(521), - [anon_sym_register] = ACTIONS(521), - [anon_sym_extern] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_const] = ACTIONS(521), - [anon_sym_LPAREN2] = ACTIONS(523), - [anon_sym_COLON] = ACTIONS(523), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym__Atomic] = ACTIONS(521), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(521), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_inline] = ACTIONS(521), - [anon_sym___attribute__] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(523), + [sym_enumerator] = STATE(177), + [sym_identifier] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(517), + [sym_comment] = ACTIONS(3), }, [83] = { - [sym_switch_body] = STATE(177), - [anon_sym_LBRACE] = ACTIONS(525), - [sym_comment] = ACTIONS(3), + [sym_enumerator_list] = STATE(178), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_restrict] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_static] = ACTIONS(519), + [anon_sym_volatile] = ACTIONS(519), + [anon_sym_register] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(519), + [anon_sym_STAR] = ACTIONS(521), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(519), + [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_COLON] = ACTIONS(521), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym__Atomic] = ACTIONS(519), + [sym_identifier] = ACTIONS(519), + [anon_sym_auto] = ACTIONS(519), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_inline] = ACTIONS(519), + [anon_sym___attribute__] = ACTIONS(519), + [anon_sym_LBRACK] = ACTIONS(521), }, [84] = { - [sym_enumerator] = STATE(181), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(531), + [anon_sym_restrict] = ACTIONS(523), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_static] = ACTIONS(523), + [anon_sym_volatile] = ACTIONS(523), + [anon_sym_register] = ACTIONS(523), + [anon_sym_extern] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(525), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(523), + [anon_sym_LPAREN2] = ACTIONS(525), + [anon_sym_COLON] = ACTIONS(525), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym__Atomic] = ACTIONS(523), + [sym_identifier] = ACTIONS(523), + [anon_sym_auto] = ACTIONS(523), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_inline] = ACTIONS(523), + [anon_sym___attribute__] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), }, [85] = { - [sym_enumerator_list] = STATE(182), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_restrict] = ACTIONS(533), - [sym_identifier] = ACTIONS(533), - [anon_sym_static] = ACTIONS(533), - [anon_sym_volatile] = ACTIONS(533), - [anon_sym_register] = ACTIONS(533), - [anon_sym_extern] = ACTIONS(533), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_const] = ACTIONS(533), - [anon_sym_LPAREN2] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(535), - [anon_sym__Atomic] = ACTIONS(533), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(533), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_inline] = ACTIONS(533), - [anon_sym___attribute__] = ACTIONS(533), - [anon_sym_LBRACK] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(527), + [sym_comment] = ACTIONS(3), }, [86] = { - [anon_sym_restrict] = ACTIONS(537), - [sym_identifier] = ACTIONS(537), - [anon_sym_static] = ACTIONS(537), - [anon_sym_volatile] = ACTIONS(537), - [anon_sym_register] = ACTIONS(537), - [anon_sym_extern] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_const] = ACTIONS(537), - [anon_sym_LPAREN2] = ACTIONS(539), - [anon_sym_COLON] = ACTIONS(539), - [anon_sym_SEMI] = ACTIONS(539), - [anon_sym__Atomic] = ACTIONS(537), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(537), - [anon_sym_RPAREN] = ACTIONS(539), - [anon_sym_inline] = ACTIONS(537), - [anon_sym___attribute__] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_case] = ACTIONS(529), + [sym_true] = ACTIONS(529), + [anon_sym_restrict] = ACTIONS(529), + [sym_null] = ACTIONS(529), + [anon_sym_goto] = ACTIONS(529), + [anon_sym_const] = ACTIONS(529), + [anon_sym_typedef] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(531), + [anon_sym_default] = ACTIONS(529), + [anon_sym__Atomic] = ACTIONS(529), + [sym_identifier] = ACTIONS(529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(529), + [sym_number_literal] = ACTIONS(531), + [anon_sym_volatile] = ACTIONS(529), + [anon_sym_SQUOTE] = ACTIONS(531), + [anon_sym_extern] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(531), + [anon_sym_struct] = ACTIONS(529), + [anon_sym_signed] = ACTIONS(529), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(529), + [anon_sym_while] = ACTIONS(529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(529), + [anon_sym_L_SQUOTE] = ACTIONS(531), + [anon_sym___attribute__] = ACTIONS(529), + [anon_sym_sizeof] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(531), + [anon_sym_union] = ACTIONS(529), + [anon_sym_unsigned] = ACTIONS(529), + [anon_sym_short] = ACTIONS(529), + [anon_sym_do] = ACTIONS(529), + [sym_preproc_directive] = ACTIONS(529), + [anon_sym_AMP] = ACTIONS(531), + [aux_sym_preproc_if_token1] = ACTIONS(529), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_L_DQUOTE] = ACTIONS(531), + [anon_sym_LPAREN2] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_else] = ACTIONS(529), + [sym_primitive_type] = ACTIONS(529), + [anon_sym_for] = ACTIONS(529), + [anon_sym_break] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(531), + [aux_sym_preproc_include_token1] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_static] = ACTIONS(529), + [anon_sym_DQUOTE] = ACTIONS(531), + [anon_sym_register] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_if] = ACTIONS(529), + [anon_sym_switch] = ACTIONS(529), + [anon_sym_enum] = ACTIONS(529), + [sym_false] = ACTIONS(529), + [ts_builtin_sym_end] = ACTIONS(531), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(529), + [anon_sym_SEMI] = ACTIONS(531), + [aux_sym_preproc_def_token1] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_auto] = ACTIONS(529), + [anon_sym_inline] = ACTIONS(529), }, [87] = { - [anon_sym_case] = ACTIONS(541), - [sym_false] = ACTIONS(541), - [anon_sym_restrict] = ACTIONS(541), - [sym_identifier] = ACTIONS(541), - [anon_sym_goto] = ACTIONS(541), - [anon_sym_const] = ACTIONS(541), - [anon_sym_typedef] = ACTIONS(541), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_default] = ACTIONS(541), - [anon_sym__Atomic] = ACTIONS(541), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_volatile] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_struct] = ACTIONS(541), - [anon_sym_signed] = ACTIONS(541), - [anon_sym_long] = ACTIONS(541), - [anon_sym_while] = ACTIONS(541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(541), - [anon_sym_L] = ACTIONS(541), - [anon_sym___attribute__] = ACTIONS(541), - [anon_sym_sizeof] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_union] = ACTIONS(541), - [anon_sym_unsigned] = ACTIONS(541), - [anon_sym_short] = ACTIONS(541), - [anon_sym_do] = ACTIONS(541), - [sym_preproc_directive] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [aux_sym_preproc_if_token1] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [anon_sym_LPAREN2] = ACTIONS(543), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_else] = ACTIONS(541), - [sym_primitive_type] = ACTIONS(541), - [anon_sym_for] = ACTIONS(541), - [anon_sym_break] = ACTIONS(541), - [anon_sym_BANG] = ACTIONS(543), - [aux_sym_preproc_include_token1] = ACTIONS(541), - [anon_sym_DASH] = ACTIONS(541), - [anon_sym_static] = ACTIONS(541), - [anon_sym_register] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_if] = ACTIONS(541), - [anon_sym_switch] = ACTIONS(541), - [sym_true] = ACTIONS(541), - [anon_sym_enum] = ACTIONS(541), - [sym_null] = ACTIONS(541), - [ts_builtin_sym_end] = ACTIONS(543), - [anon_sym_return] = ACTIONS(541), - [anon_sym_continue] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(543), - [aux_sym_preproc_def_token1] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(541), - [anon_sym_auto] = ACTIONS(541), - [anon_sym_inline] = ACTIONS(541), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(533), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [88] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(181), + [sym_do_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(181), + [sym_return_statement] = STATE(181), + [sym_break_statement] = STATE(181), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(181), + [sym_while_statement] = STATE(181), + [sym_continue_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [89] = { - [sym_if_statement] = STATE(184), - [sym_do_statement] = STATE(184), - [sym_for_statement] = STATE(184), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(184), - [sym_return_statement] = STATE(184), - [sym_break_statement] = STATE(184), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(184), - [sym_while_statement] = STATE(184), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(184), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(184), - [sym_expression_statement] = STATE(184), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_case] = ACTIONS(535), + [sym_true] = ACTIONS(535), + [anon_sym_restrict] = ACTIONS(535), + [sym_null] = ACTIONS(535), + [anon_sym_goto] = ACTIONS(535), + [anon_sym_const] = ACTIONS(535), + [anon_sym_typedef] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_default] = ACTIONS(535), + [anon_sym__Atomic] = ACTIONS(535), + [sym_identifier] = ACTIONS(535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(535), + [sym_number_literal] = ACTIONS(537), + [anon_sym_volatile] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [anon_sym_extern] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_struct] = ACTIONS(535), + [anon_sym_signed] = ACTIONS(535), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(535), + [anon_sym_L_SQUOTE] = ACTIONS(537), + [anon_sym___attribute__] = ACTIONS(535), + [anon_sym_sizeof] = ACTIONS(535), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_union] = ACTIONS(535), + [anon_sym_unsigned] = ACTIONS(535), + [anon_sym_short] = ACTIONS(535), + [anon_sym_do] = ACTIONS(535), + [sym_preproc_directive] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(537), + [aux_sym_preproc_if_token1] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_L_DQUOTE] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_else] = ACTIONS(535), + [sym_primitive_type] = ACTIONS(535), + [anon_sym_for] = ACTIONS(535), + [anon_sym_break] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(537), + [aux_sym_preproc_include_token1] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_static] = ACTIONS(535), + [anon_sym_DQUOTE] = ACTIONS(537), + [anon_sym_register] = ACTIONS(535), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(535), + [anon_sym_enum] = ACTIONS(535), + [sym_false] = ACTIONS(535), + [ts_builtin_sym_end] = ACTIONS(537), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(535), + [anon_sym_SEMI] = ACTIONS(537), + [aux_sym_preproc_def_token1] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(535), + [anon_sym_auto] = ACTIONS(535), + [anon_sym_inline] = ACTIONS(535), }, [90] = { - [anon_sym_case] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_goto] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym_default] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(547), - [sym_number_literal] = ACTIONS(549), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_SQUOTE] = ACTIONS(549), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_struct] = ACTIONS(547), - [anon_sym_signed] = ACTIONS(547), - [anon_sym_long] = ACTIONS(547), - [anon_sym_while] = ACTIONS(547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(547), - [anon_sym_L] = ACTIONS(547), - [anon_sym___attribute__] = ACTIONS(547), - [anon_sym_sizeof] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_union] = ACTIONS(547), - [anon_sym_unsigned] = ACTIONS(547), - [anon_sym_short] = ACTIONS(547), - [anon_sym_do] = ACTIONS(547), - [sym_preproc_directive] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(549), - [aux_sym_preproc_if_token1] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_LPAREN2] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_else] = ACTIONS(547), - [sym_primitive_type] = ACTIONS(547), - [anon_sym_for] = ACTIONS(547), - [anon_sym_break] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(549), - [aux_sym_preproc_include_token1] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_if] = ACTIONS(547), - [anon_sym_switch] = ACTIONS(547), - [sym_true] = ACTIONS(547), - [anon_sym_enum] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [ts_builtin_sym_end] = ACTIONS(549), - [anon_sym_return] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(549), - [aux_sym_preproc_def_token1] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_auto] = ACTIONS(547), - [anon_sym_inline] = ACTIONS(547), + [sym_preproc_params] = STATE(185), + [sym_preproc_arg] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_LF] = ACTIONS(543), + [sym_comment] = ACTIONS(147), }, [91] = { - [anon_sym_SQUOTE] = ACTIONS(551), + [sym_argument_list] = STATE(186), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(283), }, [92] = { - [sym_preproc_params] = STATE(189), - [sym_preproc_arg] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(555), - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(557), + [sym__expression] = STATE(59), + [sym_comma_expression] = STATE(61), + [sym_binary_expression] = STATE(59), + [sym_update_expression] = STATE(59), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(60), + [sym__type_specifier] = STATE(62), + [aux_sym_sized_type_specifier_repeat1] = STATE(508), + [sym_union_specifier] = STATE(62), + [sym_conditional_expression] = STATE(59), + [sym_assignment_expression] = STATE(59), + [sym_cast_expression] = STATE(59), + [sym_type_descriptor] = STATE(187), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(59), + [sym_char_literal] = STATE(59), + [aux_sym_type_definition_repeat1] = STATE(60), + [sym_sized_type_specifier] = STATE(62), + [sym_enum_specifier] = STATE(62), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(59), + [sym_sizeof_expression] = STATE(59), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(59), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(62), + [sym_struct_specifier] = STATE(62), + [anon_sym_union] = ACTIONS(37), + [sym_true] = ACTIONS(175), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(175), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(179), + [sym_identifier] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(183), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(175), + [anon_sym_long] = ACTIONS(177), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [93] = { - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(559), - [aux_sym_char_literal_token1] = ACTIONS(561), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(305), }, [94] = { - [aux_sym_string_literal_repeat1] = STATE(191), - [anon_sym_DQUOTE] = ACTIONS(487), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(563), - [aux_sym_string_literal_token1] = ACTIONS(563), + [sym_char_literal] = STATE(188), + [sym__expression] = STATE(188), + [sym_binary_expression] = STATE(188), + [sym_update_expression] = STATE(188), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(188), + [sym_sizeof_expression] = STATE(188), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(188), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(188), + [sym_assignment_expression] = STATE(188), + [sym_cast_expression] = STATE(188), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(188), + [sym_true] = ACTIONS(549), + [sym_null] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(551), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [95] = { - [sym_argument_list] = STATE(192), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(293), + [sym_char_literal] = STATE(189), + [sym__expression] = STATE(189), + [sym_binary_expression] = STATE(189), + [sym_update_expression] = STATE(189), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(189), + [sym_sizeof_expression] = STATE(189), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(189), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(189), + [sym_assignment_expression] = STATE(189), + [sym_cast_expression] = STATE(189), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(189), + [sym_true] = ACTIONS(553), + [sym_null] = ACTIONS(553), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(555), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [96] = { - [sym__expression] = STATE(63), - [sym_comma_expression] = STATE(65), - [sym_binary_expression] = STATE(63), - [sym_update_expression] = STATE(63), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(64), - [sym__type_specifier] = STATE(66), - [aux_sym_sized_type_specifier_repeat1] = STATE(516), - [sym_union_specifier] = STATE(66), - [sym_conditional_expression] = STATE(63), - [sym_assignment_expression] = STATE(63), - [sym_cast_expression] = STATE(63), - [sym_type_descriptor] = STATE(193), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(63), - [sym_char_literal] = STATE(63), - [aux_sym_type_definition_repeat1] = STATE(64), - [sym_sized_type_specifier] = STATE(66), - [sym_enum_specifier] = STATE(66), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(63), - [sym_sizeof_expression] = STATE(63), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(63), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(66), - [sym_struct_specifier] = STATE(66), - [anon_sym_union] = ACTIONS(7), - [sym_false] = ACTIONS(199), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(201), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(205), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(207), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [sym_true] = ACTIONS(199), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(199), - [anon_sym_signed] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(190), + [sym__expression] = STATE(190), + [sym_binary_expression] = STATE(190), + [sym_update_expression] = STATE(190), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(190), + [sym_sizeof_expression] = STATE(190), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(190), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(190), + [sym_assignment_expression] = STATE(190), + [sym_cast_expression] = STATE(190), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(190), + [sym_true] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(559), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(557), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [97] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_char_literal] = STATE(191), + [sym__expression] = STATE(191), + [sym_binary_expression] = STATE(191), + [sym_update_expression] = STATE(191), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(191), + [sym_sizeof_expression] = STATE(191), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(191), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(191), + [sym_assignment_expression] = STATE(191), + [sym_cast_expression] = STATE(191), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(191), + [sym_true] = ACTIONS(561), + [sym_null] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(563), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [98] = { + [sym_char_literal] = STATE(192), + [sym__expression] = STATE(192), + [sym_comma_expression] = STATE(193), + [sym_binary_expression] = STATE(192), + [sym_update_expression] = STATE(192), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(192), + [sym_sizeof_expression] = STATE(192), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(192), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(192), + [sym_assignment_expression] = STATE(192), + [sym_cast_expression] = STATE(192), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(192), + [sym_true] = ACTIONS(565), + [sym_null] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [99] = { [sym_char_literal] = STATE(194), [sym__expression] = STATE(194), [sym_binary_expression] = STATE(194), [sym_update_expression] = STATE(194), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(194), [sym_sizeof_expression] = STATE(194), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(194), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(194), [sym_assignment_expression] = STATE(194), [sym_cast_expression] = STATE(194), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(194), - [sym_false] = ACTIONS(569), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(571), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), [sym_true] = ACTIONS(569), [sym_null] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(569), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [99] = { + [100] = { [sym_char_literal] = STATE(195), [sym__expression] = STATE(195), [sym_binary_expression] = STATE(195), [sym_update_expression] = STATE(195), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(195), [sym_sizeof_expression] = STATE(195), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(195), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(195), [sym_assignment_expression] = STATE(195), [sym_cast_expression] = STATE(195), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(195), - [sym_false] = ACTIONS(573), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(575), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), [sym_true] = ACTIONS(573), [sym_null] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [100] = { + [101] = { [sym_char_literal] = STATE(196), [sym__expression] = STATE(196), [sym_binary_expression] = STATE(196), [sym_update_expression] = STATE(196), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(196), [sym_sizeof_expression] = STATE(196), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(196), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(196), [sym_assignment_expression] = STATE(196), [sym_cast_expression] = STATE(196), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(196), - [sym_false] = ACTIONS(577), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(579), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), [sym_true] = ACTIONS(577), [sym_null] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(579), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [101] = { + [102] = { [sym_char_literal] = STATE(197), [sym__expression] = STATE(197), [sym_binary_expression] = STATE(197), [sym_update_expression] = STATE(197), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(197), [sym_sizeof_expression] = STATE(197), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(197), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(197), [sym_assignment_expression] = STATE(197), [sym_cast_expression] = STATE(197), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(197), - [sym_false] = ACTIONS(581), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), [sym_true] = ACTIONS(581), [sym_null] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [102] = { + [103] = { [sym_char_literal] = STATE(198), [sym__expression] = STATE(198), - [sym_comma_expression] = STATE(199), [sym_binary_expression] = STATE(198), [sym_update_expression] = STATE(198), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(198), [sym_sizeof_expression] = STATE(198), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(198), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(198), [sym_assignment_expression] = STATE(198), [sym_cast_expression] = STATE(198), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(198), - [sym_false] = ACTIONS(585), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(587), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), [sym_true] = ACTIONS(585), [sym_null] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [103] = { - [sym_char_literal] = STATE(200), - [sym__expression] = STATE(200), - [sym_binary_expression] = STATE(200), - [sym_update_expression] = STATE(200), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(200), - [sym_sizeof_expression] = STATE(200), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(200), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(200), - [sym_assignment_expression] = STATE(200), - [sym_cast_expression] = STATE(200), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(200), - [sym_false] = ACTIONS(589), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(589), - [sym_null] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(585), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [104] = { + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_PERCENT_EQ] = ACTIONS(591), + [anon_sym_DASH_EQ] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_DASH_GT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(591), + [anon_sym_PLUS_EQ] = ACTIONS(591), + [anon_sym_LT_LT_EQ] = ACTIONS(591), + [anon_sym_QMARK] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_CARET_EQ] = ACTIONS(591), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_PIPE_EQ] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_RBRACK] = ACTIONS(591), + [anon_sym_AMP_EQ] = ACTIONS(591), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), + [anon_sym_EQ] = ACTIONS(589), + [anon_sym_LPAREN2] = ACTIONS(591), + [anon_sym_GT_EQ] = ACTIONS(591), + [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_COLON] = ACTIONS(591), + [anon_sym_STAR_EQ] = ACTIONS(591), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_SLASH_EQ] = ACTIONS(591), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(591), + }, + [105] = { + [sym_identifier] = ACTIONS(593), + [sym_comment] = ACTIONS(3), + }, + [106] = { [sym_char_literal] = STATE(201), [sym__expression] = STATE(201), [sym_binary_expression] = STATE(201), [sym_update_expression] = STATE(201), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(201), [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(201), [sym_assignment_expression] = STATE(201), [sym_cast_expression] = STATE(201), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(201), - [sym_false] = ACTIONS(593), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(595), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(593), - [sym_null] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(595), + [sym_null] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_sizeof] = ACTIONS(33), }, - [105] = { + [107] = { [sym_char_literal] = STATE(202), [sym__expression] = STATE(202), [sym_binary_expression] = STATE(202), [sym_update_expression] = STATE(202), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(202), [sym_sizeof_expression] = STATE(202), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(202), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(202), [sym_assignment_expression] = STATE(202), [sym_cast_expression] = STATE(202), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(202), - [sym_false] = ACTIONS(597), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(599), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(597), - [sym_null] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(601), + [sym_null] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [106] = { + [108] = { + [anon_sym_case] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [anon_sym_restrict] = ACTIONS(605), + [sym_null] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_typedef] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_default] = ACTIONS(605), + [anon_sym__Atomic] = ACTIONS(605), + [sym_identifier] = ACTIONS(605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(605), + [sym_number_literal] = ACTIONS(607), + [anon_sym_volatile] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(605), + [anon_sym_signed] = ACTIONS(605), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(605), + [anon_sym_while] = ACTIONS(605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(605), + [anon_sym_L_SQUOTE] = ACTIONS(607), + [anon_sym___attribute__] = ACTIONS(605), + [anon_sym_sizeof] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_union] = ACTIONS(605), + [anon_sym_unsigned] = ACTIONS(605), + [anon_sym_short] = ACTIONS(605), + [anon_sym_do] = ACTIONS(605), + [sym_preproc_directive] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(607), + [aux_sym_preproc_if_token1] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_L_DQUOTE] = ACTIONS(607), + [anon_sym_LPAREN2] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_else] = ACTIONS(605), + [sym_primitive_type] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(607), + [aux_sym_preproc_include_token1] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_static] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_register] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_if] = ACTIONS(605), + [anon_sym_switch] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [ts_builtin_sym_end] = ACTIONS(607), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_SEMI] = ACTIONS(607), + [aux_sym_preproc_def_token1] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_auto] = ACTIONS(605), + [anon_sym_inline] = ACTIONS(605), + }, + [109] = { [sym_char_literal] = STATE(203), [sym__expression] = STATE(203), [sym_binary_expression] = STATE(203), [sym_update_expression] = STATE(203), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(203), [sym_sizeof_expression] = STATE(203), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(203), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(203), [sym_assignment_expression] = STATE(203), [sym_cast_expression] = STATE(203), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(203), - [sym_false] = ACTIONS(601), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(603), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(601), - [sym_null] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(609), + [sym_null] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [107] = { + [110] = { [sym_char_literal] = STATE(204), [sym__expression] = STATE(204), [sym_binary_expression] = STATE(204), [sym_update_expression] = STATE(204), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(204), [sym_sizeof_expression] = STATE(204), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(204), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(204), [sym_assignment_expression] = STATE(204), [sym_cast_expression] = STATE(204), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(204), - [sym_false] = ACTIONS(605), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(607), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [108] = { - [anon_sym_GT_GT] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(611), - [anon_sym_DASH_EQ] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(609), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(609), - [anon_sym_DASH_GT] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(611), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [anon_sym_LT_LT_EQ] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_CARET_EQ] = ACTIONS(611), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(611), - [anon_sym_GT_GT_EQ] = ACTIONS(611), - [anon_sym_GT] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(611), - [anon_sym_RPAREN] = ACTIONS(611), - [anon_sym_RBRACK] = ACTIONS(611), - [anon_sym_AMP_EQ] = ACTIONS(611), - [anon_sym_PERCENT] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(609), - [anon_sym_LPAREN2] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(611), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_STAR_EQ] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(609), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_STAR] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_LBRACK] = ACTIONS(611), - }, - [109] = { - [sym_identifier] = ACTIONS(613), - [sym_comment] = ACTIONS(3), - }, - [110] = { - [sym_char_literal] = STATE(207), - [sym__expression] = STATE(207), - [sym_binary_expression] = STATE(207), - [sym_update_expression] = STATE(207), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(207), - [sym_sizeof_expression] = STATE(207), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(207), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(207), - [sym_assignment_expression] = STATE(207), - [sym_cast_expression] = STATE(207), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(207), - [sym_false] = ACTIONS(615), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(617), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(615), - [sym_null] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), + [111] = { + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_DASH_GT] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_PIPE_EQ] = ACTIONS(619), [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_LPAREN2] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(619), }, - [111] = { - [sym_char_literal] = STATE(208), - [sym__expression] = STATE(208), - [sym_binary_expression] = STATE(208), - [sym_update_expression] = STATE(208), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(208), - [sym_sizeof_expression] = STATE(208), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(208), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(208), - [sym_assignment_expression] = STATE(208), - [sym_cast_expression] = STATE(208), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(208), - [sym_false] = ACTIONS(621), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(623), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [112] = { [sym_true] = ACTIONS(621), + [anon_sym_restrict] = ACTIONS(621), [sym_null] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [112] = { - [anon_sym_case] = ACTIONS(625), - [sym_false] = ACTIONS(625), - [anon_sym_restrict] = ACTIONS(625), - [sym_identifier] = ACTIONS(625), - [anon_sym_goto] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_typedef] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_default] = ACTIONS(625), - [anon_sym__Atomic] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(625), - [sym_number_literal] = ACTIONS(627), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_SQUOTE] = ACTIONS(627), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_struct] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(625), - [anon_sym_long] = ACTIONS(625), - [anon_sym_while] = ACTIONS(625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(625), - [anon_sym_L] = ACTIONS(625), - [anon_sym___attribute__] = ACTIONS(625), - [anon_sym_sizeof] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_union] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(625), - [anon_sym_short] = ACTIONS(625), - [anon_sym_do] = ACTIONS(625), - [sym_preproc_directive] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(625), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_LPAREN2] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_else] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(625), - [anon_sym_for] = ACTIONS(625), - [anon_sym_break] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(627), - [aux_sym_preproc_include_token1] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_register] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_if] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(625), - [sym_true] = ACTIONS(625), - [anon_sym_enum] = ACTIONS(625), - [sym_null] = ACTIONS(625), - [ts_builtin_sym_end] = ACTIONS(627), - [anon_sym_return] = ACTIONS(625), - [anon_sym_continue] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_auto] = ACTIONS(625), - [anon_sym_inline] = ACTIONS(625), + [anon_sym_goto] = ACTIONS(621), + [anon_sym_const] = ACTIONS(621), + [anon_sym_typedef] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym__Atomic] = ACTIONS(621), + [sym_identifier] = ACTIONS(621), + [aux_sym_preproc_ifdef_token1] = ACTIONS(621), + [sym_number_literal] = ACTIONS(623), + [anon_sym_volatile] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_extern] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_struct] = ACTIONS(621), + [anon_sym_signed] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(621), + [anon_sym_while] = ACTIONS(621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(621), + [anon_sym_L_SQUOTE] = ACTIONS(623), + [anon_sym___attribute__] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_union] = ACTIONS(621), + [anon_sym_unsigned] = ACTIONS(621), + [anon_sym_short] = ACTIONS(621), + [anon_sym_do] = ACTIONS(621), + [sym_preproc_directive] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(623), + [aux_sym_preproc_if_token1] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_L_DQUOTE] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(623), + [sym_primitive_type] = ACTIONS(621), + [anon_sym_for] = ACTIONS(621), + [anon_sym_break] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [aux_sym_preproc_include_token1] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_static] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_register] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_if] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(621), + [anon_sym_enum] = ACTIONS(621), + [sym_false] = ACTIONS(621), + [ts_builtin_sym_end] = ACTIONS(623), + [anon_sym_return] = ACTIONS(621), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_auto] = ACTIONS(621), + [anon_sym_inline] = ACTIONS(621), }, [113] = { - [sym_char_literal] = STATE(209), - [sym__expression] = STATE(209), - [sym_binary_expression] = STATE(209), - [sym_update_expression] = STATE(209), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(209), - [sym_sizeof_expression] = STATE(209), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(209), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(209), - [sym_assignment_expression] = STATE(209), - [sym_cast_expression] = STATE(209), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(209), - [sym_false] = ACTIONS(629), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(631), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(629), - [sym_null] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(124), + [sym_attribute_specifier] = STATE(124), + [sym_storage_class_specifier] = STATE(124), + [sym_type_qualifier] = STATE(124), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(625), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(627), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(625), }, [114] = { - [sym_char_literal] = STATE(210), - [sym__expression] = STATE(210), - [sym_binary_expression] = STATE(210), - [sym_update_expression] = STATE(210), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(210), - [sym_sizeof_expression] = STATE(210), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(210), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(210), - [sym_assignment_expression] = STATE(210), - [sym_cast_expression] = STATE(210), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(210), - [sym_false] = ACTIONS(633), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(635), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(633), - [sym_null] = ACTIONS(633), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_static] = ACTIONS(629), + [anon_sym_volatile] = ACTIONS(629), + [anon_sym_register] = ACTIONS(629), + [anon_sym_extern] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(631), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(631), + [anon_sym_COLON] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym__Atomic] = ACTIONS(629), + [sym_identifier] = ACTIONS(629), + [anon_sym_auto] = ACTIONS(629), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_inline] = ACTIONS(629), + [anon_sym___attribute__] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), }, [115] = { - [anon_sym_GT_GT] = ACTIONS(637), - [anon_sym_PERCENT_EQ] = ACTIONS(639), - [anon_sym_DASH_EQ] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(637), - [anon_sym_EQ_EQ] = ACTIONS(639), - [anon_sym_SLASH] = ACTIONS(637), - [anon_sym_DASH_GT] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(639), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(639), - [anon_sym_LT_LT_EQ] = ACTIONS(639), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_CARET_EQ] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(639), - [anon_sym_PLUS_PLUS] = ACTIONS(639), - [anon_sym_GT_GT_EQ] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_PIPE_EQ] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(639), - [anon_sym_RBRACK] = ACTIONS(639), - [anon_sym_AMP_EQ] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(637), - [anon_sym_EQ] = ACTIONS(637), - [anon_sym_LPAREN2] = ACTIONS(639), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_RBRACE] = ACTIONS(639), - [anon_sym_COLON] = ACTIONS(639), - [anon_sym_STAR_EQ] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(637), - [anon_sym_SLASH_EQ] = ACTIONS(639), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_SEMI] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_LBRACK] = ACTIONS(639), + [anon_sym_restrict] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_static] = ACTIONS(633), + [anon_sym_volatile] = ACTIONS(633), + [anon_sym_register] = ACTIONS(633), + [anon_sym_extern] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(635), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(633), + [anon_sym_LPAREN2] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(635), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym__Atomic] = ACTIONS(633), + [sym_identifier] = ACTIONS(633), + [anon_sym_auto] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_inline] = ACTIONS(633), + [anon_sym___attribute__] = ACTIONS(633), + [anon_sym_LBRACK] = ACTIONS(635), }, [116] = { - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_union] = ACTIONS(643), - [sym_true] = ACTIONS(643), - [anon_sym_unsigned] = ACTIONS(643), - [anon_sym_restrict] = ACTIONS(643), - [anon_sym_short] = ACTIONS(643), - [sym_false] = ACTIONS(643), - [sym_null] = ACTIONS(643), - [sym_identifier] = ACTIONS(643), - [anon_sym_do] = ACTIONS(643), - [anon_sym_goto] = ACTIONS(643), - [ts_builtin_sym_end] = ACTIONS(641), - [sym_preproc_directive] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(641), - [aux_sym_preproc_if_token1] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_const] = ACTIONS(643), - [anon_sym_LPAREN2] = ACTIONS(641), - [anon_sym_typedef] = ACTIONS(643), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(641), - [anon_sym__Atomic] = ACTIONS(643), - [sym_primitive_type] = ACTIONS(643), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(641), - [aux_sym_preproc_include_token1] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_static] = ACTIONS(643), - [anon_sym_volatile] = ACTIONS(643), - [anon_sym_register] = ACTIONS(643), - [anon_sym_extern] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_if] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_switch] = ACTIONS(643), - [anon_sym_signed] = ACTIONS(643), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_long] = ACTIONS(643), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [sym_number_literal] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(643), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_SQUOTE] = ACTIONS(641), - [aux_sym_preproc_def_token1] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_auto] = ACTIONS(643), - [anon_sym_L] = ACTIONS(643), - [anon_sym_inline] = ACTIONS(643), - [anon_sym___attribute__] = ACTIONS(643), - [anon_sym_sizeof] = ACTIONS(643), + [aux_sym_sized_type_specifier_repeat1] = STATE(116), + [anon_sym_unsigned] = ACTIONS(637), + [anon_sym_restrict] = ACTIONS(640), + [anon_sym_short] = ACTIONS(637), + [anon_sym_const] = ACTIONS(640), + [anon_sym_LPAREN2] = ACTIONS(642), + [anon_sym_COLON] = ACTIONS(642), + [anon_sym__Atomic] = ACTIONS(640), + [sym_primitive_type] = ACTIONS(640), + [sym_identifier] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_static] = ACTIONS(640), + [anon_sym_volatile] = ACTIONS(640), + [anon_sym_register] = ACTIONS(640), + [anon_sym_extern] = ACTIONS(640), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_signed] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_auto] = ACTIONS(640), + [anon_sym_inline] = ACTIONS(640), + [anon_sym___attribute__] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(642), }, [117] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(128), - [sym_attribute_specifier] = STATE(128), - [sym_storage_class_specifier] = STATE(128), - [sym_type_qualifier] = STATE(128), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(645), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_COMMA] = ACTIONS(647), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(647), - [anon_sym_COLON] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(647), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(647), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(647), + [sym_pointer_declarator] = STATE(205), + [sym_parenthesized_declarator] = STATE(205), + [aux_sym_type_definition_repeat1] = STATE(206), + [sym_array_declarator] = STATE(205), + [sym__declarator] = STATE(205), + [sym_function_declarator] = STATE(205), + [sym_type_qualifier] = STATE(206), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(328), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(326), + [sym_identifier] = ACTIONS(644), + [sym_comment] = ACTIONS(3), }, [118] = { - [anon_sym_restrict] = ACTIONS(649), - [sym_identifier] = ACTIONS(649), - [anon_sym_static] = ACTIONS(649), - [anon_sym_volatile] = ACTIONS(649), - [anon_sym_register] = ACTIONS(649), - [anon_sym_extern] = ACTIONS(649), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_const] = ACTIONS(649), - [anon_sym_LPAREN2] = ACTIONS(651), - [anon_sym_COLON] = ACTIONS(651), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym__Atomic] = ACTIONS(649), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(649), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_inline] = ACTIONS(649), - [anon_sym___attribute__] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(651), + [sym_pointer_declarator] = STATE(207), + [sym_parenthesized_declarator] = STATE(207), + [sym_array_declarator] = STATE(207), + [sym__declarator] = STATE(207), + [sym_function_declarator] = STATE(207), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(328), + [sym_identifier] = ACTIONS(646), + [sym_comment] = ACTIONS(3), }, [119] = { - [anon_sym_restrict] = ACTIONS(653), - [sym_identifier] = ACTIONS(653), - [anon_sym_static] = ACTIONS(653), - [anon_sym_volatile] = ACTIONS(653), - [anon_sym_register] = ACTIONS(653), - [anon_sym_extern] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(655), - [anon_sym_const] = ACTIONS(653), - [anon_sym_LPAREN2] = ACTIONS(655), - [anon_sym_COLON] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(655), - [anon_sym__Atomic] = ACTIONS(653), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(653), - [anon_sym_RPAREN] = ACTIONS(655), - [anon_sym_inline] = ACTIONS(653), - [anon_sym___attribute__] = ACTIONS(653), - [anon_sym_LBRACK] = ACTIONS(655), + [aux_sym_declaration_repeat1] = STATE(215), + [sym_compound_statement] = STATE(214), + [sym_parameter_list] = STATE(213), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LPAREN2] = ACTIONS(652), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(656), }, [120] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(120), - [anon_sym_unsigned] = ACTIONS(657), - [anon_sym_restrict] = ACTIONS(660), - [anon_sym_short] = ACTIONS(657), - [sym_identifier] = ACTIONS(660), - [anon_sym_const] = ACTIONS(660), - [anon_sym_LPAREN2] = ACTIONS(662), - [anon_sym_COLON] = ACTIONS(662), - [anon_sym__Atomic] = ACTIONS(660), - [sym_primitive_type] = ACTIONS(660), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(662), - [anon_sym_static] = ACTIONS(660), - [anon_sym_volatile] = ACTIONS(660), - [anon_sym_register] = ACTIONS(660), - [anon_sym_extern] = ACTIONS(660), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_signed] = ACTIONS(657), - [anon_sym_long] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(662), - [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_auto] = ACTIONS(660), - [anon_sym_inline] = ACTIONS(660), - [anon_sym___attribute__] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(662), + [aux_sym_declaration_repeat1] = STATE(215), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(654), + [sym_comment] = ACTIONS(3), }, [121] = { - [sym_pointer_declarator] = STATE(211), - [sym_parenthesized_declarator] = STATE(211), - [aux_sym_type_definition_repeat1] = STATE(212), - [sym_array_declarator] = STATE(211), - [sym__declarator] = STATE(211), - [sym_function_declarator] = STATE(211), - [sym_type_qualifier] = STATE(212), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(338), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(664), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(336), - [sym_comment] = ACTIONS(3), + [aux_sym_concatenated_string_repeat1] = STATE(216), + [sym_string_literal] = STATE(216), + [anon_sym_GT_GT] = ACTIONS(658), + [anon_sym_PERCENT_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(658), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_DASH_GT] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_DASH_DASH] = ACTIONS(660), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_LT_LT_EQ] = ACTIONS(660), + [anon_sym_QMARK] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_CARET_EQ] = ACTIONS(660), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_PIPE_EQ] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_RBRACK] = ACTIONS(660), + [anon_sym_AMP_EQ] = ACTIONS(660), + [anon_sym_PERCENT] = ACTIONS(658), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_COLON] = ACTIONS(660), + [anon_sym_STAR_EQ] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_SLASH_EQ] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(660), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(660), }, [122] = { - [sym_pointer_declarator] = STATE(213), - [sym_parenthesized_declarator] = STATE(213), - [sym_array_declarator] = STATE(213), - [sym__declarator] = STATE(213), - [sym_function_declarator] = STATE(213), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_LPAREN2] = ACTIONS(338), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(666), + [sym_if_statement] = STATE(122), + [sym_preproc_def] = STATE(122), + [sym_preproc_function_def] = STATE(122), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(122), + [sym_declaration] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [aux_sym_translation_unit_repeat1] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(37), + [sym_union_specifier] = STATE(37), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_preproc_call] = STATE(122), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_type_definition] = STATE(122), + [sym_cast_expression] = STATE(34), + [sym__declaration_specifiers] = STATE(40), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_break_statement] = STATE(122), + [sym__empty_declaration] = STATE(122), + [sym_sized_type_specifier] = STATE(37), + [sym_enum_specifier] = STATE(37), + [sym_labeled_statement] = STATE(122), + [sym_preproc_include] = STATE(122), + [sym_preproc_if] = STATE(122), + [sym_preproc_ifdef] = STATE(122), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(122), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(37), + [sym_while_statement] = STATE(122), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(122), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(122), + [sym_struct_specifier] = STATE(37), + [sym_goto_statement] = STATE(122), + [sym_true] = ACTIONS(662), + [anon_sym_restrict] = ACTIONS(665), + [sym_null] = ACTIONS(662), + [anon_sym_goto] = ACTIONS(668), + [anon_sym_const] = ACTIONS(665), + [anon_sym_typedef] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym__Atomic] = ACTIONS(665), + [sym_identifier] = ACTIONS(677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(680), + [sym_number_literal] = ACTIONS(683), + [anon_sym_volatile] = ACTIONS(665), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(692), + [anon_sym_signed] = ACTIONS(695), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(695), + [anon_sym_while] = ACTIONS(698), + [aux_sym_preproc_ifdef_token2] = ACTIONS(680), + [anon_sym_L_SQUOTE] = ACTIONS(686), + [anon_sym___attribute__] = ACTIONS(701), + [anon_sym_sizeof] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_union] = ACTIONS(710), + [anon_sym_unsigned] = ACTIONS(695), + [anon_sym_short] = ACTIONS(695), + [anon_sym_do] = ACTIONS(713), + [sym_preproc_directive] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(719), + [aux_sym_preproc_if_token1] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_L_DQUOTE] = ACTIONS(728), + [anon_sym_LPAREN2] = ACTIONS(731), + [sym_primitive_type] = ACTIONS(734), + [anon_sym_for] = ACTIONS(737), + [anon_sym_break] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(725), + [aux_sym_preproc_include_token1] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_static] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_register] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_if] = ACTIONS(752), + [anon_sym_switch] = ACTIONS(755), + [anon_sym_enum] = ACTIONS(758), + [sym_false] = ACTIONS(662), + [ts_builtin_sym_end] = ACTIONS(761), + [anon_sym_return] = ACTIONS(763), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_SEMI] = ACTIONS(769), + [aux_sym_preproc_def_token1] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(746), + [anon_sym_auto] = ACTIONS(749), + [anon_sym_inline] = ACTIONS(749), }, [123] = { - [aux_sym_declaration_repeat1] = STATE(221), - [sym_compound_statement] = STATE(220), - [sym_parameter_list] = STATE(219), - [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_LPAREN2] = ACTIONS(672), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), + [aux_sym__declaration_specifiers_repeat1] = STATE(217), + [sym_attribute_specifier] = STATE(217), + [sym_storage_class_specifier] = STATE(217), + [sym_type_qualifier] = STATE(217), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(775), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(775), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(775), + [anon_sym_COLON] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(777), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(775), }, [124] = { - [aux_sym_declaration_repeat1] = STATE(221), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), + [aux_sym__declaration_specifiers_repeat1] = STATE(124), + [sym_attribute_specifier] = STATE(124), + [sym_storage_class_specifier] = STATE(124), + [sym_type_qualifier] = STATE(124), + [anon_sym_union] = ACTIONS(779), + [anon_sym_unsigned] = ACTIONS(779), + [anon_sym_restrict] = ACTIONS(781), + [anon_sym_short] = ACTIONS(779), + [anon_sym_const] = ACTIONS(781), + [anon_sym_LPAREN2] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(784), + [anon_sym__Atomic] = ACTIONS(781), + [sym_primitive_type] = ACTIONS(779), + [sym_identifier] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_static] = ACTIONS(786), + [anon_sym_volatile] = ACTIONS(781), + [anon_sym_register] = ACTIONS(786), + [anon_sym_extern] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_struct] = ACTIONS(779), + [anon_sym_signed] = ACTIONS(779), + [anon_sym_enum] = ACTIONS(779), + [anon_sym_long] = ACTIONS(779), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_auto] = ACTIONS(786), + [anon_sym_inline] = ACTIONS(786), + [anon_sym___attribute__] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(784), }, [125] = { - [aux_sym_concatenated_string_repeat1] = STATE(222), - [sym_string_literal] = STATE(222), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_PERCENT_EQ] = ACTIONS(680), - [anon_sym_DASH_EQ] = ACTIONS(680), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_DASH_GT] = ACTIONS(680), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_DASH_DASH] = ACTIONS(680), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(680), - [anon_sym_LT_LT_EQ] = ACTIONS(680), - [anon_sym_QMARK] = ACTIONS(680), - [anon_sym_BANG_EQ] = ACTIONS(680), - [anon_sym_CARET_EQ] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_PLUS_PLUS] = ACTIONS(680), - [anon_sym_GT_GT_EQ] = ACTIONS(680), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_PIPE_EQ] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_L] = ACTIONS(342), - [anon_sym_RBRACK] = ACTIONS(680), - [anon_sym_AMP_EQ] = ACTIONS(680), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(680), - [anon_sym_GT_EQ] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(680), - [anon_sym_COLON] = ACTIONS(680), - [anon_sym_STAR_EQ] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_LT_EQ] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_SLASH_EQ] = ACTIONS(680), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(680), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_case] = ACTIONS(792), + [sym_true] = ACTIONS(792), + [anon_sym_restrict] = ACTIONS(792), + [sym_null] = ACTIONS(792), + [anon_sym_goto] = ACTIONS(792), + [anon_sym_const] = ACTIONS(792), + [anon_sym_typedef] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_default] = ACTIONS(792), + [anon_sym__Atomic] = ACTIONS(792), + [sym_identifier] = ACTIONS(792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(792), + [sym_number_literal] = ACTIONS(794), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(792), + [anon_sym_signed] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(792), + [anon_sym_while] = ACTIONS(792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(792), + [anon_sym_L_SQUOTE] = ACTIONS(794), + [anon_sym___attribute__] = ACTIONS(792), + [anon_sym_sizeof] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(794), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsigned] = ACTIONS(792), + [anon_sym_short] = ACTIONS(792), + [anon_sym_do] = ACTIONS(792), + [sym_preproc_directive] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [aux_sym_preproc_if_token1] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(794), + [anon_sym_L_DQUOTE] = ACTIONS(794), + [anon_sym_LPAREN2] = ACTIONS(794), + [anon_sym_RBRACE] = ACTIONS(794), + [anon_sym_else] = ACTIONS(792), + [sym_primitive_type] = ACTIONS(792), + [anon_sym_for] = ACTIONS(792), + [anon_sym_break] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(794), + [aux_sym_preproc_include_token1] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_static] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_register] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_if] = ACTIONS(792), + [anon_sym_switch] = ACTIONS(792), + [anon_sym_enum] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [ts_builtin_sym_end] = ACTIONS(794), + [anon_sym_return] = ACTIONS(792), + [anon_sym_continue] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(794), + [aux_sym_preproc_def_token1] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_auto] = ACTIONS(792), + [anon_sym_inline] = ACTIONS(792), }, [126] = { - [sym_if_statement] = STATE(126), - [sym_preproc_def] = STATE(126), - [sym_preproc_function_def] = STATE(126), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(126), - [sym_declaration] = STATE(126), - [sym_do_statement] = STATE(126), - [sym_for_statement] = STATE(126), - [aux_sym_translation_unit_repeat1] = STATE(126), - [sym_expression_statement] = STATE(126), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(126), - [sym_return_statement] = STATE(126), - [sym_preproc_call] = STATE(126), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_type_definition] = STATE(126), - [sym_cast_expression] = STATE(35), - [sym__declaration_specifiers] = STATE(41), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_break_statement] = STATE(126), - [sym__empty_declaration] = STATE(126), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_labeled_statement] = STATE(126), - [sym_preproc_include] = STATE(126), - [sym_preproc_if] = STATE(126), - [sym_preproc_ifdef] = STATE(126), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(126), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(38), - [sym_while_statement] = STATE(126), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(126), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(126), - [sym_struct_specifier] = STATE(38), - [sym_goto_statement] = STATE(126), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_union] = ACTIONS(685), - [sym_true] = ACTIONS(688), - [anon_sym_unsigned] = ACTIONS(691), - [anon_sym_restrict] = ACTIONS(694), - [anon_sym_short] = ACTIONS(691), - [sym_false] = ACTIONS(688), - [sym_null] = ACTIONS(688), - [sym_identifier] = ACTIONS(697), - [anon_sym_do] = ACTIONS(700), - [anon_sym_goto] = ACTIONS(703), - [ts_builtin_sym_end] = ACTIONS(706), - [sym_preproc_directive] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(711), - [aux_sym_preproc_if_token1] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_const] = ACTIONS(694), - [anon_sym_LPAREN2] = ACTIONS(720), - [anon_sym_typedef] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym__Atomic] = ACTIONS(694), - [sym_primitive_type] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(735), - [anon_sym_break] = ACTIONS(738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(717), - [aux_sym_preproc_include_token1] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_static] = ACTIONS(750), - [anon_sym_volatile] = ACTIONS(694), - [anon_sym_register] = ACTIONS(750), - [anon_sym_extern] = ACTIONS(753), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_if] = ACTIONS(756), - [anon_sym_struct] = ACTIONS(759), - [anon_sym_switch] = ACTIONS(762), - [anon_sym_signed] = ACTIONS(691), - [anon_sym_enum] = ACTIONS(765), - [anon_sym_long] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(726), - [sym_number_literal] = ACTIONS(768), - [anon_sym_return] = ACTIONS(771), - [anon_sym_while] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_SQUOTE] = ACTIONS(783), - [aux_sym_preproc_def_token1] = ACTIONS(786), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_auto] = ACTIONS(750), - [anon_sym_L] = ACTIONS(789), - [anon_sym_inline] = ACTIONS(750), - [anon_sym___attribute__] = ACTIONS(792), - [anon_sym_sizeof] = ACTIONS(795), + [sym_identifier] = ACTIONS(796), + [sym_comment] = ACTIONS(3), }, [127] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(223), - [sym_attribute_specifier] = STATE(223), - [sym_storage_class_specifier] = STATE(223), - [sym_type_qualifier] = STATE(223), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(798), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_COMMA] = ACTIONS(800), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SEMI] = ACTIONS(800), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(800), + [sym_preproc_arg] = ACTIONS(798), + [sym_comment] = ACTIONS(147), }, [128] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(128), - [sym_attribute_specifier] = STATE(128), - [sym_storage_class_specifier] = STATE(128), - [sym_type_qualifier] = STATE(128), - [anon_sym_union] = ACTIONS(802), - [anon_sym_unsigned] = ACTIONS(802), - [anon_sym_restrict] = ACTIONS(804), - [anon_sym_short] = ACTIONS(802), - [sym_identifier] = ACTIONS(802), - [anon_sym_const] = ACTIONS(804), - [anon_sym_LPAREN2] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(807), - [anon_sym__Atomic] = ACTIONS(804), - [sym_primitive_type] = ACTIONS(802), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_static] = ACTIONS(809), - [anon_sym_volatile] = ACTIONS(804), - [anon_sym_register] = ACTIONS(809), - [anon_sym_extern] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(802), - [anon_sym_signed] = ACTIONS(802), - [anon_sym_enum] = ACTIONS(802), - [anon_sym_long] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_auto] = ACTIONS(809), - [anon_sym_inline] = ACTIONS(809), - [anon_sym___attribute__] = ACTIONS(812), - [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_restrict] = ACTIONS(800), + [anon_sym_COMMA] = ACTIONS(802), + [anon_sym_static] = ACTIONS(800), + [anon_sym_volatile] = ACTIONS(800), + [anon_sym_register] = ACTIONS(800), + [anon_sym_extern] = ACTIONS(800), + [anon_sym_STAR] = ACTIONS(802), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(800), + [anon_sym_LPAREN2] = ACTIONS(802), + [anon_sym_COLON] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(802), + [anon_sym__Atomic] = ACTIONS(800), + [sym_identifier] = ACTIONS(800), + [anon_sym_auto] = ACTIONS(800), + [anon_sym_RPAREN] = ACTIONS(802), + [anon_sym_inline] = ACTIONS(800), + [anon_sym___attribute__] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(802), }, [129] = { - [anon_sym_case] = ACTIONS(815), - [sym_false] = ACTIONS(815), - [anon_sym_restrict] = ACTIONS(815), - [sym_identifier] = ACTIONS(815), - [anon_sym_goto] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_typedef] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_default] = ACTIONS(815), - [anon_sym__Atomic] = ACTIONS(815), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(815), - [sym_number_literal] = ACTIONS(817), - [anon_sym_volatile] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(815), - [anon_sym_signed] = ACTIONS(815), - [anon_sym_long] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(815), - [anon_sym_L] = ACTIONS(815), - [anon_sym___attribute__] = ACTIONS(815), - [anon_sym_sizeof] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_union] = ACTIONS(815), - [anon_sym_unsigned] = ACTIONS(815), - [anon_sym_short] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [sym_preproc_directive] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(817), - [aux_sym_preproc_if_token1] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_LPAREN2] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_else] = ACTIONS(815), - [sym_primitive_type] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [aux_sym_preproc_include_token1] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_static] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_if] = ACTIONS(815), - [anon_sym_switch] = ACTIONS(815), - [sym_true] = ACTIONS(815), - [anon_sym_enum] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [ts_builtin_sym_end] = ACTIONS(817), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(817), - [aux_sym_preproc_def_token1] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_auto] = ACTIONS(815), - [anon_sym_inline] = ACTIONS(815), + [sym_preproc_def] = STATE(221), + [sym_preproc_function_def] = STATE(221), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(221), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_preproc_call] = STATE(221), + [sym_preproc_if_in_field_declaration_list] = STATE(221), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(221), + [sym__declaration_specifiers] = STATE(131), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(221), + [sym_field_declaration] = STATE(221), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(342), + [aux_sym_preproc_if_token1] = ACTIONS(344), + [anon_sym_const] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(348), + [sym_identifier] = ACTIONS(187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(350), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(350), + [aux_sym_preproc_def_token1] = ACTIONS(352), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [130] = { - [sym_identifier] = ACTIONS(819), - [sym_comment] = ACTIONS(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(113), + [sym_attribute_specifier] = STATE(113), + [sym_storage_class_specifier] = STATE(113), + [sym_type_qualifier] = STATE(113), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(307), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(307), + [anon_sym_COLON] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(307), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(311), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_RPAREN] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(307), }, [131] = { - [sym_preproc_arg] = ACTIONS(821), - [sym_comment] = ACTIONS(171), + [sym__field_declarator] = STATE(228), + [sym_parenthesized_field_declarator] = STATE(228), + [sym_function_field_declarator] = STATE(228), + [sym_bitfield_clause] = STATE(227), + [sym_pointer_field_declarator] = STATE(228), + [sym_array_field_declarator] = STATE(228), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_LPAREN2] = ACTIONS(808), + [sym_identifier] = ACTIONS(810), + [anon_sym_COLON] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(814), }, [132] = { - [anon_sym_restrict] = ACTIONS(823), - [sym_identifier] = ACTIONS(823), - [anon_sym_static] = ACTIONS(823), - [anon_sym_volatile] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(825), - [anon_sym_const] = ACTIONS(823), - [anon_sym_LPAREN2] = ACTIONS(825), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym__Atomic] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(825), + [anon_sym_restrict] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_static] = ACTIONS(816), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_register] = ACTIONS(816), + [anon_sym_extern] = ACTIONS(816), + [anon_sym_STAR] = ACTIONS(818), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(816), + [anon_sym_LPAREN2] = ACTIONS(818), + [anon_sym_COLON] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym__Atomic] = ACTIONS(816), + [sym_identifier] = ACTIONS(816), + [anon_sym_auto] = ACTIONS(816), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_inline] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(818), }, [133] = { - [sym_preproc_def] = STATE(227), - [sym_preproc_function_def] = STATE(227), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(227), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_preproc_call] = STATE(227), - [sym_preproc_if_in_field_declaration_list] = STATE(227), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(227), - [sym__declaration_specifiers] = STATE(135), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(227), - [sym_field_declaration] = STATE(227), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [sym_preproc_directive] = ACTIONS(354), - [aux_sym_preproc_if_token1] = ACTIONS(356), - [anon_sym_const] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(362), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [aux_sym_preproc_ifdef_token2] = ACTIONS(362), - [aux_sym_preproc_def_token1] = ACTIONS(364), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_parenthesized_expression] = STATE(229), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(820), }, [134] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(117), - [sym_attribute_specifier] = STATE(117), - [sym_storage_class_specifier] = STATE(117), - [sym_type_qualifier] = STATE(117), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(317), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_COMMA] = ACTIONS(319), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_COLON] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(319), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(319), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(319), + [anon_sym_case] = ACTIONS(822), + [sym_true] = ACTIONS(822), + [anon_sym_restrict] = ACTIONS(822), + [sym_null] = ACTIONS(822), + [anon_sym_goto] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_typedef] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(824), + [anon_sym_default] = ACTIONS(822), + [anon_sym__Atomic] = ACTIONS(822), + [sym_identifier] = ACTIONS(822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [sym_number_literal] = ACTIONS(824), + [anon_sym_volatile] = ACTIONS(822), + [anon_sym_SQUOTE] = ACTIONS(824), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_struct] = ACTIONS(822), + [anon_sym_signed] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(822), + [anon_sym_L_SQUOTE] = ACTIONS(824), + [anon_sym___attribute__] = ACTIONS(822), + [anon_sym_sizeof] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_union] = ACTIONS(822), + [anon_sym_unsigned] = ACTIONS(822), + [anon_sym_short] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [sym_preproc_directive] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [aux_sym_preproc_if_token1] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_L_DQUOTE] = ACTIONS(824), + [anon_sym_LPAREN2] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_else] = ACTIONS(822), + [sym_primitive_type] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(824), + [aux_sym_preproc_include_token1] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_register] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [sym_false] = ACTIONS(822), + [ts_builtin_sym_end] = ACTIONS(824), + [anon_sym_return] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(824), + [aux_sym_preproc_def_token1] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_auto] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(822), }, [135] = { - [sym__field_declarator] = STATE(234), - [sym_parenthesized_field_declarator] = STATE(234), - [sym_function_field_declarator] = STATE(234), - [sym_bitfield_clause] = STATE(233), - [sym_pointer_field_declarator] = STATE(234), - [sym_array_field_declarator] = STATE(234), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_LPAREN2] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(833), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(837), + [sym_true] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [sym_null] = ACTIONS(826), + [anon_sym_goto] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_typedef] = ACTIONS(826), + [anon_sym_DASH_DASH] = ACTIONS(828), + [anon_sym__Atomic] = ACTIONS(826), + [sym_identifier] = ACTIONS(826), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), + [sym_number_literal] = ACTIONS(828), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_struct] = ACTIONS(826), + [anon_sym_signed] = ACTIONS(826), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [anon_sym_L_SQUOTE] = ACTIONS(828), + [anon_sym___attribute__] = ACTIONS(826), + [anon_sym_sizeof] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsigned] = ACTIONS(826), + [anon_sym_short] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [sym_preproc_directive] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(828), + [aux_sym_preproc_if_token1] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(828), + [anon_sym_L_DQUOTE] = ACTIONS(828), + [anon_sym_LPAREN2] = ACTIONS(828), + [sym_primitive_type] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(828), + [aux_sym_preproc_include_token1] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_register] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_if] = ACTIONS(826), + [anon_sym_switch] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [sym_false] = ACTIONS(826), + [ts_builtin_sym_end] = ACTIONS(828), + [anon_sym_return] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(828), + [aux_sym_preproc_def_token1] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_auto] = ACTIONS(826), + [anon_sym_inline] = ACTIONS(826), }, [136] = { - [anon_sym_restrict] = ACTIONS(839), - [sym_identifier] = ACTIONS(839), - [anon_sym_static] = ACTIONS(839), - [anon_sym_volatile] = ACTIONS(839), - [anon_sym_register] = ACTIONS(839), - [anon_sym_extern] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_const] = ACTIONS(839), - [anon_sym_LPAREN2] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(839), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(841), - [anon_sym_inline] = ACTIONS(839), - [anon_sym___attribute__] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(841), + [sym_true] = ACTIONS(830), + [anon_sym_restrict] = ACTIONS(830), + [sym_null] = ACTIONS(830), + [anon_sym_goto] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_typedef] = ACTIONS(830), + [anon_sym_DASH_DASH] = ACTIONS(832), + [anon_sym__Atomic] = ACTIONS(830), + [sym_identifier] = ACTIONS(830), + [aux_sym_preproc_ifdef_token1] = ACTIONS(830), + [sym_number_literal] = ACTIONS(832), + [anon_sym_volatile] = ACTIONS(830), + [anon_sym_SQUOTE] = ACTIONS(832), + [anon_sym_extern] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(832), + [anon_sym_struct] = ACTIONS(830), + [anon_sym_signed] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(830), + [anon_sym_L_SQUOTE] = ACTIONS(832), + [anon_sym___attribute__] = ACTIONS(830), + [anon_sym_sizeof] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_union] = ACTIONS(830), + [anon_sym_unsigned] = ACTIONS(830), + [anon_sym_short] = ACTIONS(830), + [anon_sym_do] = ACTIONS(830), + [sym_preproc_directive] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [aux_sym_preproc_if_token1] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(832), + [anon_sym_L_DQUOTE] = ACTIONS(832), + [anon_sym_LPAREN2] = ACTIONS(832), + [sym_primitive_type] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(832), + [aux_sym_preproc_include_token1] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_register] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(832), + [anon_sym_if] = ACTIONS(830), + [anon_sym_switch] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [sym_false] = ACTIONS(830), + [ts_builtin_sym_end] = ACTIONS(832), + [anon_sym_return] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(832), + [aux_sym_preproc_def_token1] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_auto] = ACTIONS(830), + [anon_sym_inline] = ACTIONS(830), }, [137] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(843), - [anon_sym_RBRACE] = ACTIONS(843), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(843), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(843), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(843), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(843), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_preproc_arg] = ACTIONS(834), + [sym_comment] = ACTIONS(147), }, [138] = { - [anon_sym_RPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(231), + [sym_preproc_def] = STATE(231), + [sym_preproc_function_def] = STATE(231), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(231), + [sym_declaration] = STATE(231), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(231), + [aux_sym_translation_unit_repeat1] = STATE(231), + [sym_expression_statement] = STATE(231), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(1031), + [sym_union_specifier] = STATE(1031), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(231), + [sym_return_statement] = STATE(231), + [sym_preproc_call] = STATE(231), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_type_definition] = STATE(231), + [sym_cast_expression] = STATE(1029), + [sym__declaration_specifiers] = STATE(1190), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_break_statement] = STATE(231), + [sym__empty_declaration] = STATE(231), + [sym_sized_type_specifier] = STATE(1031), + [sym_enum_specifier] = STATE(1031), + [sym_labeled_statement] = STATE(231), + [sym_preproc_include] = STATE(231), + [sym_preproc_if] = STATE(231), + [sym_preproc_ifdef] = STATE(231), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(231), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(1031), + [sym_while_statement] = STATE(231), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(231), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(231), + [sym_struct_specifier] = STATE(1031), + [sym_goto_statement] = STATE(231), + [sym_true] = ACTIONS(836), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(836), + [anon_sym_goto] = ACTIONS(838), + [aux_sym_preproc_if_token2] = ACTIONS(840), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(846), + [sym_number_literal] = ACTIONS(848), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(846), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(856), + [sym_preproc_directive] = ACTIONS(858), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(868), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_switch] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [139] = { - [anon_sym_case] = ACTIONS(847), - [sym_false] = ACTIONS(847), - [anon_sym_restrict] = ACTIONS(847), - [sym_identifier] = ACTIONS(847), - [anon_sym_goto] = ACTIONS(847), - [anon_sym_const] = ACTIONS(847), - [anon_sym_typedef] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_default] = ACTIONS(847), - [anon_sym__Atomic] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(847), - [sym_number_literal] = ACTIONS(849), - [anon_sym_volatile] = ACTIONS(847), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_extern] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(847), - [anon_sym_signed] = ACTIONS(847), - [anon_sym_long] = ACTIONS(847), - [anon_sym_while] = ACTIONS(847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(847), - [anon_sym_L] = ACTIONS(847), - [anon_sym___attribute__] = ACTIONS(847), - [anon_sym_sizeof] = ACTIONS(847), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_union] = ACTIONS(847), - [anon_sym_unsigned] = ACTIONS(847), - [anon_sym_short] = ACTIONS(847), - [anon_sym_do] = ACTIONS(847), - [sym_preproc_directive] = ACTIONS(847), - [anon_sym_AMP] = ACTIONS(849), - [aux_sym_preproc_if_token1] = ACTIONS(847), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_else] = ACTIONS(847), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_for] = ACTIONS(847), - [anon_sym_break] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(849), - [aux_sym_preproc_include_token1] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_static] = ACTIONS(847), - [anon_sym_register] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_if] = ACTIONS(847), - [anon_sym_switch] = ACTIONS(847), - [sym_true] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(847), - [sym_null] = ACTIONS(847), - [ts_builtin_sym_end] = ACTIONS(849), - [anon_sym_return] = ACTIONS(847), - [anon_sym_continue] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(849), - [aux_sym_preproc_def_token1] = ACTIONS(847), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_auto] = ACTIONS(847), - [anon_sym_inline] = ACTIONS(847), + [aux_sym_preproc_if_token2] = ACTIONS(882), + [sym_comment] = ACTIONS(3), }, [140] = { - [sym_parenthesized_expression] = STATE(236), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(851), + [sym_if_statement] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(635), + [sym_declaration] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_preproc_else] = STATE(234), + [sym_preproc_elif] = STATE(234), + [aux_sym_translation_unit_repeat1] = STATE(635), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(635), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(635), + [sym__empty_declaration] = STATE(635), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(635), + [sym_preproc_include] = STATE(635), + [sym_preproc_if] = STATE(635), + [sym_preproc_ifdef] = STATE(635), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(635), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(635), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(635), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(635), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(884), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [141] = { - [anon_sym_case] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [anon_sym_restrict] = ACTIONS(853), - [sym_identifier] = ACTIONS(853), - [anon_sym_goto] = ACTIONS(853), - [anon_sym_const] = ACTIONS(853), - [anon_sym_typedef] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(855), - [anon_sym_default] = ACTIONS(853), - [anon_sym__Atomic] = ACTIONS(853), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(853), - [sym_number_literal] = ACTIONS(855), - [anon_sym_volatile] = ACTIONS(853), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_extern] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(855), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_signed] = ACTIONS(853), - [anon_sym_long] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(853), - [anon_sym_L] = ACTIONS(853), - [anon_sym___attribute__] = ACTIONS(853), - [anon_sym_sizeof] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_union] = ACTIONS(853), - [anon_sym_unsigned] = ACTIONS(853), - [anon_sym_short] = ACTIONS(853), - [anon_sym_do] = ACTIONS(853), - [sym_preproc_directive] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), - [aux_sym_preproc_if_token1] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [anon_sym_LPAREN2] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_else] = ACTIONS(853), - [sym_primitive_type] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(855), - [aux_sym_preproc_include_token1] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_static] = ACTIONS(853), - [anon_sym_register] = ACTIONS(853), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_if] = ACTIONS(853), - [anon_sym_switch] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [ts_builtin_sym_end] = ACTIONS(855), - [anon_sym_return] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [aux_sym_preproc_def_token1] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_auto] = ACTIONS(853), - [anon_sym_inline] = ACTIONS(853), + [sym_char_literal] = STATE(236), + [sym__expression] = STATE(236), + [sym_binary_expression] = STATE(236), + [sym_update_expression] = STATE(236), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(236), + [sym_sizeof_expression] = STATE(236), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_initializer_list] = STATE(237), + [sym_concatenated_string] = STATE(236), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(236), + [sym_assignment_expression] = STATE(236), + [sym_cast_expression] = STATE(236), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(236), + [anon_sym_LBRACE] = ACTIONS(886), + [sym_true] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(890), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [142] = { - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_union] = ACTIONS(859), - [sym_true] = ACTIONS(859), - [anon_sym_unsigned] = ACTIONS(859), - [anon_sym_restrict] = ACTIONS(859), - [anon_sym_short] = ACTIONS(859), - [sym_false] = ACTIONS(859), - [sym_null] = ACTIONS(859), - [sym_identifier] = ACTIONS(859), - [anon_sym_do] = ACTIONS(859), - [anon_sym_goto] = ACTIONS(859), - [ts_builtin_sym_end] = ACTIONS(857), - [sym_preproc_directive] = ACTIONS(859), - [anon_sym_AMP] = ACTIONS(857), - [aux_sym_preproc_if_token1] = ACTIONS(859), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_const] = ACTIONS(859), - [anon_sym_LPAREN2] = ACTIONS(857), - [anon_sym_typedef] = ACTIONS(859), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym__Atomic] = ACTIONS(859), - [sym_primitive_type] = ACTIONS(859), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(859), - [anon_sym_break] = ACTIONS(859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(859), - [anon_sym_BANG] = ACTIONS(857), - [aux_sym_preproc_include_token1] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_static] = ACTIONS(859), - [anon_sym_volatile] = ACTIONS(859), - [anon_sym_register] = ACTIONS(859), - [anon_sym_extern] = ACTIONS(859), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_if] = ACTIONS(859), - [anon_sym_struct] = ACTIONS(859), - [anon_sym_switch] = ACTIONS(859), - [anon_sym_signed] = ACTIONS(859), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_long] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [sym_number_literal] = ACTIONS(857), - [anon_sym_return] = ACTIONS(859), - [anon_sym_while] = ACTIONS(859), - [anon_sym_continue] = ACTIONS(859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(857), - [aux_sym_preproc_def_token1] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_auto] = ACTIONS(859), - [anon_sym_L] = ACTIONS(859), - [anon_sym_inline] = ACTIONS(859), - [anon_sym___attribute__] = ACTIONS(859), - [anon_sym_sizeof] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(892), + [anon_sym_PERCENT_EQ] = ACTIONS(894), + [anon_sym_DASH_EQ] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_EQ_EQ] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(892), + [anon_sym_DASH_GT] = ACTIONS(894), + [anon_sym_LT_LT] = ACTIONS(892), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(894), + [anon_sym_LT_LT_EQ] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(894), + [anon_sym_BANG_EQ] = ACTIONS(894), + [anon_sym_CARET_EQ] = ACTIONS(894), + [anon_sym_COMMA] = ACTIONS(894), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_PIPE_EQ] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_RBRACK] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_AMP_EQ] = ACTIONS(894), + [anon_sym_PERCENT] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(892), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_STAR_EQ] = ACTIONS(894), + [anon_sym_PIPE_PIPE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_LT_EQ] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(892), + [anon_sym_SLASH_EQ] = ACTIONS(894), + [anon_sym_AMP_AMP] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(892), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(894), }, [143] = { - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_union] = ACTIONS(863), - [sym_true] = ACTIONS(863), - [anon_sym_unsigned] = ACTIONS(863), - [anon_sym_restrict] = ACTIONS(863), - [anon_sym_short] = ACTIONS(863), - [sym_false] = ACTIONS(863), - [sym_null] = ACTIONS(863), - [sym_identifier] = ACTIONS(863), - [anon_sym_do] = ACTIONS(863), - [anon_sym_goto] = ACTIONS(863), - [ts_builtin_sym_end] = ACTIONS(861), - [sym_preproc_directive] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(861), - [aux_sym_preproc_if_token1] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(861), - [anon_sym_const] = ACTIONS(863), - [anon_sym_LPAREN2] = ACTIONS(861), - [anon_sym_typedef] = ACTIONS(863), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym__Atomic] = ACTIONS(863), - [sym_primitive_type] = ACTIONS(863), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(861), - [aux_sym_preproc_include_token1] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_static] = ACTIONS(863), - [anon_sym_volatile] = ACTIONS(863), - [anon_sym_register] = ACTIONS(863), - [anon_sym_extern] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_if] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_switch] = ACTIONS(863), - [anon_sym_signed] = ACTIONS(863), - [anon_sym_enum] = ACTIONS(863), - [anon_sym_long] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_number_literal] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_SQUOTE] = ACTIONS(861), - [aux_sym_preproc_def_token1] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_auto] = ACTIONS(863), - [anon_sym_L] = ACTIONS(863), - [anon_sym_inline] = ACTIONS(863), - [anon_sym___attribute__] = ACTIONS(863), - [anon_sym_sizeof] = ACTIONS(863), + [sym_abstract_parenthesized_declarator] = STATE(238), + [sym_abstract_array_declarator] = STATE(238), + [sym_parameter_list] = STATE(148), + [sym__abstract_declarator] = STATE(238), + [aux_sym_type_definition_repeat1] = STATE(239), + [sym_abstract_function_declarator] = STATE(238), + [sym_abstract_pointer_declarator] = STATE(238), + [sym_type_qualifier] = STATE(239), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(440), + [anon_sym_LPAREN2] = ACTIONS(442), + [anon_sym_restrict] = ACTIONS(440), + [anon_sym_volatile] = ACTIONS(440), + [anon_sym__Atomic] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(448), }, [144] = { - [sym_preproc_arg] = ACTIONS(865), - [sym_comment] = ACTIONS(171), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_type_qualifier] = STATE(144), + [anon_sym_sizeof] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_restrict] = ACTIONS(900), + [anon_sym_short] = ACTIONS(898), + [sym_true] = ACTIONS(898), + [sym_null] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_const] = ACTIONS(900), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_L_DQUOTE] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym__Atomic] = ACTIONS(900), + [sym_primitive_type] = ACTIONS(898), + [sym_identifier] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(898), + [sym_number_literal] = ACTIONS(903), + [anon_sym_volatile] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_signed] = ACTIONS(898), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_L_SQUOTE] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), }, [145] = { - [sym_if_statement] = STATE(238), - [sym_preproc_def] = STATE(238), - [sym_preproc_function_def] = STATE(238), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(238), - [sym_declaration] = STATE(238), - [sym_do_statement] = STATE(238), - [sym_for_statement] = STATE(238), - [aux_sym_translation_unit_repeat1] = STATE(238), - [sym_expression_statement] = STATE(238), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(1049), - [sym_union_specifier] = STATE(1049), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(238), - [sym_return_statement] = STATE(238), - [sym_preproc_call] = STATE(238), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_type_definition] = STATE(238), - [sym_cast_expression] = STATE(1047), - [sym__declaration_specifiers] = STATE(1212), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_break_statement] = STATE(238), - [sym__empty_declaration] = STATE(238), - [sym_sized_type_specifier] = STATE(1049), - [sym_enum_specifier] = STATE(1049), - [sym_labeled_statement] = STATE(238), - [sym_preproc_include] = STATE(238), - [sym_preproc_if] = STATE(238), - [sym_preproc_ifdef] = STATE(238), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(238), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(1049), - [sym_while_statement] = STATE(238), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(238), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(238), - [sym_struct_specifier] = STATE(1049), - [sym_goto_statement] = STATE(238), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_union] = ACTIONS(7), - [anon_sym___attribute__] = ACTIONS(19), - [sym_false] = ACTIONS(869), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(871), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [aux_sym_preproc_if_token2] = ACTIONS(877), - [sym_preproc_directive] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(885), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [aux_sym_preproc_ifdef_token1] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(895), - [sym_number_literal] = ACTIONS(897), - [anon_sym_if] = ACTIONS(899), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(901), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(869), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), - [anon_sym_inline] = ACTIONS(9), + [sym_abstract_parenthesized_declarator] = STATE(240), + [sym_abstract_array_declarator] = STATE(240), + [sym_parameter_list] = STATE(148), + [sym__abstract_declarator] = STATE(240), + [aux_sym_type_definition_repeat1] = STATE(241), + [sym_abstract_function_declarator] = STATE(240), + [sym_abstract_pointer_declarator] = STATE(240), + [sym_type_qualifier] = STATE(241), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(440), + [anon_sym_LPAREN2] = ACTIONS(442), + [anon_sym_restrict] = ACTIONS(440), + [anon_sym_volatile] = ACTIONS(440), + [anon_sym__Atomic] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(448), }, [146] = { - [aux_sym_preproc_if_token2] = ACTIONS(913), - [sym_comment] = ACTIONS(3), + [sym_abstract_array_declarator] = STATE(244), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_abstract_pointer_declarator] = STATE(244), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_parameter_list] = STATE(148), + [sym__abstract_declarator] = STATE(244), + [sym_attribute_specifier] = STATE(43), + [sym_parameter_declaration] = STATE(243), + [sym_abstract_function_declarator] = STATE(244), + [sym_macro_type_specifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(245), + [sym_abstract_parenthesized_declarator] = STATE(244), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_DOT_DOT_DOT] = ACTIONS(907), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(442), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(909), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_auto] = ACTIONS(63), + [sym_identifier] = ACTIONS(187), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [147] = { - [sym_if_statement] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(646), - [sym_declaration] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym_preproc_else] = STATE(241), - [sym_preproc_elif] = STATE(241), - [aux_sym_translation_unit_repeat1] = STATE(646), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(646), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(646), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(646), - [sym__empty_declaration] = STATE(646), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(646), - [sym_preproc_include] = STATE(646), - [sym_preproc_if] = STATE(646), - [sym_preproc_ifdef] = STATE(646), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(646), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(646), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(646), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(646), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(646), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(915), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym__expression] = STATE(248), + [sym_binary_expression] = STATE(248), + [sym_update_expression] = STATE(248), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(249), + [sym_conditional_expression] = STATE(248), + [sym_assignment_expression] = STATE(248), + [sym_cast_expression] = STATE(248), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(248), + [sym_char_literal] = STATE(248), + [aux_sym_type_definition_repeat1] = STATE(249), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(248), + [sym_sizeof_expression] = STATE(248), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(248), + [sym_string_literal] = STATE(41), + [sym_true] = ACTIONS(911), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(913), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(917), + [anon_sym_sizeof] = ACTIONS(33), }, [148] = { - [sym_char_literal] = STATE(243), - [sym__expression] = STATE(243), - [sym_binary_expression] = STATE(243), - [sym_update_expression] = STATE(243), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(243), - [sym_sizeof_expression] = STATE(243), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_initializer_list] = STATE(244), - [sym_concatenated_string] = STATE(243), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(243), - [sym_assignment_expression] = STATE(243), - [sym_cast_expression] = STATE(243), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(243), - [anon_sym_LBRACE] = ACTIONS(917), - [sym_false] = ACTIONS(919), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(919), - [sym_null] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(919), + [anon_sym_LPAREN2] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(919), }, [149] = { - [anon_sym_GT_GT] = ACTIONS(923), - [anon_sym_PERCENT_EQ] = ACTIONS(925), - [anon_sym_DASH_EQ] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_DASH_GT] = ACTIONS(925), - [anon_sym_LT_LT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(925), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(925), - [anon_sym_LT_LT_EQ] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_CARET_EQ] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_GT_GT_EQ] = ACTIONS(925), - [anon_sym_while] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_PIPE_EQ] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_AMP_EQ] = ACTIONS(925), - [anon_sym_PERCENT] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_COLON] = ACTIONS(925), - [anon_sym_else] = ACTIONS(925), - [anon_sym_STAR_EQ] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_SLASH_EQ] = ACTIONS(925), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(925), + [sym_parameter_list] = STATE(251), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(923), }, [150] = { - [sym_abstract_parenthesized_declarator] = STATE(245), - [sym_abstract_array_declarator] = STATE(245), - [sym_parameter_list] = STATE(155), - [sym__abstract_declarator] = STATE(245), - [aux_sym_type_definition_repeat1] = STATE(246), - [sym_abstract_function_declarator] = STATE(245), - [sym_abstract_pointer_declarator] = STATE(245), - [sym_type_qualifier] = STATE(246), - [anon_sym_const] = ACTIONS(458), - [anon_sym_LPAREN2] = ACTIONS(460), - [anon_sym_restrict] = ACTIONS(458), - [anon_sym_volatile] = ACTIONS(458), - [anon_sym__Atomic] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(466), + [sym_abstract_parenthesized_declarator] = STATE(252), + [sym_abstract_array_declarator] = STATE(252), + [sym_parameter_list] = STATE(148), + [sym__abstract_declarator] = STATE(252), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_abstract_function_declarator] = STATE(252), + [sym_abstract_pointer_declarator] = STATE(252), + [sym_type_qualifier] = STATE(144), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(440), + [anon_sym_LPAREN2] = ACTIONS(442), + [anon_sym_restrict] = ACTIONS(440), + [anon_sym_volatile] = ACTIONS(440), + [anon_sym__Atomic] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(448), }, [151] = { - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_type_qualifier] = STATE(151), - [anon_sym_sizeof] = ACTIONS(929), - [anon_sym_union] = ACTIONS(929), - [anon_sym_unsigned] = ACTIONS(929), - [anon_sym_restrict] = ACTIONS(931), - [anon_sym_short] = ACTIONS(929), - [sym_identifier] = ACTIONS(929), - [sym_false] = ACTIONS(929), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_const] = ACTIONS(931), - [anon_sym_LPAREN2] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(934), - [anon_sym__Atomic] = ACTIONS(931), - [sym_primitive_type] = ACTIONS(929), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(929), - [sym_number_literal] = ACTIONS(934), - [anon_sym_volatile] = ACTIONS(931), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(929), - [anon_sym_signed] = ACTIONS(929), - [anon_sym_enum] = ACTIONS(929), - [anon_sym_long] = ACTIONS(929), - [sym_true] = ACTIONS(929), - [sym_null] = ACTIONS(929), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(929), - [anon_sym_L] = ACTIONS(929), - [anon_sym_RBRACK] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), + [sym_type_qualifier] = STATE(254), + [sym_function_type_declarator] = STATE(253), + [aux_sym_type_definition_repeat1] = STATE(254), + [sym_pointer_type_declarator] = STATE(253), + [sym_parenthesized_type_declarator] = STATE(253), + [sym_array_type_declarator] = STATE(253), + [sym__type_declarator] = STATE(253), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(455), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(453), + [sym_identifier] = ACTIONS(927), + [sym_comment] = ACTIONS(3), }, [152] = { - [sym_abstract_parenthesized_declarator] = STATE(247), - [sym_abstract_array_declarator] = STATE(247), - [sym_parameter_list] = STATE(155), - [sym__abstract_declarator] = STATE(247), - [aux_sym_type_definition_repeat1] = STATE(248), - [sym_abstract_function_declarator] = STATE(247), - [sym_abstract_pointer_declarator] = STATE(247), - [sym_type_qualifier] = STATE(248), - [anon_sym_const] = ACTIONS(458), - [anon_sym_LPAREN2] = ACTIONS(460), - [anon_sym_restrict] = ACTIONS(458), - [anon_sym_volatile] = ACTIONS(458), - [anon_sym__Atomic] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(929), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_LPAREN2] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), }, [153] = { - [sym_abstract_array_declarator] = STATE(251), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_abstract_pointer_declarator] = STATE(251), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_parameter_list] = STATE(155), - [sym__abstract_declarator] = STATE(251), - [sym_attribute_specifier] = STATE(44), - [sym_parameter_declaration] = STATE(249), - [sym_abstract_function_declarator] = STATE(251), - [sym_macro_type_specifier] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(252), - [sym_abstract_parenthesized_declarator] = STATE(251), - [sym_comment] = ACTIONS(3), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_short] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_DOT_DOT_DOT] = ACTIONS(938), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(460), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(466), + [sym_function_type_declarator] = STATE(255), + [sym_pointer_type_declarator] = STATE(255), + [sym_parenthesized_type_declarator] = STATE(255), + [sym_array_type_declarator] = STATE(255), + [sym__type_declarator] = STATE(255), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LPAREN2] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), + [sym_comment] = ACTIONS(3), }, [154] = { - [sym__expression] = STATE(255), - [sym_binary_expression] = STATE(255), - [sym_update_expression] = STATE(255), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(256), - [sym_conditional_expression] = STATE(255), - [sym_assignment_expression] = STATE(255), - [sym_cast_expression] = STATE(255), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(255), - [sym_char_literal] = STATE(255), - [aux_sym_type_definition_repeat1] = STATE(256), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(255), - [sym_sizeof_expression] = STATE(255), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(255), - [sym_string_literal] = STATE(42), - [sym_false] = ACTIONS(942), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(944), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(942), - [sym_null] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_type_definition_repeat2] = STATE(259), + [sym_parameter_list] = STATE(260), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(935), }, [155] = { - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(950), + [sym_function_type_declarator] = STATE(261), + [sym_pointer_type_declarator] = STATE(261), + [sym_parenthesized_type_declarator] = STATE(261), + [sym_array_type_declarator] = STATE(261), + [sym__type_declarator] = STATE(261), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LPAREN2] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), }, [156] = { - [sym_parameter_list] = STATE(258), - [anon_sym_RPAREN] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(672), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_GT_GT] = ACTIONS(937), + [anon_sym_restrict] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(939), + [anon_sym_DASH_EQ] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(939), + [anon_sym_const] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym__Atomic] = ACTIONS(937), + [sym_identifier] = ACTIONS(937), + [anon_sym_PLUS_EQ] = ACTIONS(939), + [anon_sym_LT_LT_EQ] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_CARET_EQ] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_volatile] = ACTIONS(937), + [anon_sym_extern] = ACTIONS(937), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(937), + [anon_sym_signed] = ACTIONS(937), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(939), + [anon_sym_RBRACK] = ACTIONS(939), + [anon_sym___attribute__] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_union] = ACTIONS(937), + [anon_sym_unsigned] = ACTIONS(937), + [anon_sym_short] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(937), + [anon_sym_L_DQUOTE] = ACTIONS(939), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_COLON] = ACTIONS(939), + [sym_primitive_type] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_static] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_register] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_auto] = ACTIONS(937), + [anon_sym_DOT] = ACTIONS(939), + [anon_sym_inline] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(939), }, [157] = { - [sym_abstract_parenthesized_declarator] = STATE(259), - [sym_abstract_array_declarator] = STATE(259), - [sym_parameter_list] = STATE(155), - [sym__abstract_declarator] = STATE(259), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_abstract_function_declarator] = STATE(259), - [sym_abstract_pointer_declarator] = STATE(259), - [sym_type_qualifier] = STATE(151), - [anon_sym_const] = ACTIONS(458), - [anon_sym_LPAREN2] = ACTIONS(460), - [anon_sym_restrict] = ACTIONS(458), - [anon_sym_volatile] = ACTIONS(458), - [anon_sym__Atomic] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(466), + [aux_sym_string_literal_repeat1] = STATE(157), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(941), + [aux_sym_string_literal_token1] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(944), }, [158] = { - [anon_sym_LBRACK] = ACTIONS(958), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(958), - [anon_sym_RPAREN] = ACTIONS(958), - [anon_sym_COMMA] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(958), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(946), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [159] = { - [sym_type_qualifier] = STATE(261), - [sym_function_type_declarator] = STATE(260), - [aux_sym_type_definition_repeat1] = STATE(261), - [sym_pointer_type_declarator] = STATE(260), - [sym_parenthesized_type_declarator] = STATE(260), - [sym_array_type_declarator] = STATE(260), - [sym__type_declarator] = STATE(260), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(473), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(471), + [anon_sym_RPAREN] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, [160] = { - [sym_function_type_declarator] = STATE(262), - [sym_pointer_type_declarator] = STATE(262), - [sym_parenthesized_type_declarator] = STATE(262), - [sym_array_type_declarator] = STATE(262), - [sym__type_declarator] = STATE(262), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(475), + [anon_sym_case] = ACTIONS(950), + [sym_true] = ACTIONS(950), + [anon_sym_restrict] = ACTIONS(950), + [sym_null] = ACTIONS(950), + [anon_sym_goto] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_default] = ACTIONS(950), + [anon_sym__Atomic] = ACTIONS(950), + [sym_identifier] = ACTIONS(950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(950), + [sym_number_literal] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_signed] = ACTIONS(950), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_union] = ACTIONS(950), + [anon_sym_unsigned] = ACTIONS(950), + [anon_sym_short] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [sym_preproc_directive] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_L_DQUOTE] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_else] = ACTIONS(950), + [sym_primitive_type] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_static] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(950), + [sym_false] = ACTIONS(950), + [ts_builtin_sym_end] = ACTIONS(952), + [anon_sym_return] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_auto] = ACTIONS(950), + [anon_sym_inline] = ACTIONS(950), }, [161] = { - [aux_sym_type_definition_repeat2] = STATE(266), - [sym_parameter_list] = STATE(267), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(964), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(966), + [sym_char_literal] = STATE(264), + [sym__expression] = STATE(264), + [sym_binary_expression] = STATE(264), + [sym_update_expression] = STATE(264), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(264), + [sym_sizeof_expression] = STATE(264), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(264), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(264), + [sym_assignment_expression] = STATE(264), + [sym_cast_expression] = STATE(264), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(264), + [sym_true] = ACTIONS(954), + [sym_null] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [162] = { - [sym_function_type_declarator] = STATE(268), - [sym_pointer_type_declarator] = STATE(268), - [sym_parenthesized_type_declarator] = STATE(268), - [sym_array_type_declarator] = STATE(268), - [sym__type_declarator] = STATE(268), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(475), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [163] = { - [anon_sym_GT_GT] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), - [anon_sym_PERCENT_EQ] = ACTIONS(970), - [anon_sym_DASH_EQ] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_DASH_GT] = ACTIONS(970), - [anon_sym_const] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(970), - [anon_sym_LT_LT_EQ] = ACTIONS(970), - [anon_sym_QMARK] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_CARET_EQ] = ACTIONS(970), - [anon_sym_COMMA] = ACTIONS(970), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_GT_GT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_PIPE_EQ] = ACTIONS(970), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_L] = ACTIONS(968), - [anon_sym_RBRACK] = ACTIONS(970), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [anon_sym_AMP_EQ] = ACTIONS(970), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_COLON] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(970), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_static] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_CARET] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(970), + [sym_char_literal] = STATE(267), + [sym__expression] = STATE(267), + [sym_binary_expression] = STATE(267), + [sym_update_expression] = STATE(267), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(267), + [sym_sizeof_expression] = STATE(267), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(267), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(267), + [sym_assignment_expression] = STATE(267), + [sym_cast_expression] = STATE(267), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(267), + [sym_true] = ACTIONS(962), + [sym_null] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [164] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(974), - [aux_sym_string_literal_token1] = ACTIONS(974), + [sym_pointer_declarator] = STATE(268), + [sym_parenthesized_declarator] = STATE(268), + [sym_init_declarator] = STATE(120), + [sym_array_declarator] = STATE(268), + [sym__declarator] = STATE(268), + [sym_function_declarator] = STATE(268), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(328), + [sym_identifier] = ACTIONS(968), + [sym_comment] = ACTIONS(3), }, [165] = { - [sym_char_literal] = STATE(270), - [sym__expression] = STATE(270), - [sym_binary_expression] = STATE(270), - [sym_update_expression] = STATE(270), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(270), - [sym_sizeof_expression] = STATE(270), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(270), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(270), - [sym_assignment_expression] = STATE(270), - [sym_cast_expression] = STATE(270), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(270), - [sym_false] = ACTIONS(977), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(977), - [sym_null] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(970), + [anon_sym_restrict] = ACTIONS(970), + [sym_null] = ACTIONS(970), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(970), + [sym_identifier] = ACTIONS(970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(970), + [anon_sym_signed] = ACTIONS(970), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_union] = ACTIONS(970), + [anon_sym_unsigned] = ACTIONS(970), + [anon_sym_short] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [sym_preproc_directive] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(972), + [anon_sym_L_DQUOTE] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_static] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(972), + [anon_sym_register] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_if] = ACTIONS(970), + [anon_sym_switch] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [sym_false] = ACTIONS(970), + [ts_builtin_sym_end] = ACTIONS(972), + [anon_sym_return] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_auto] = ACTIONS(970), + [anon_sym_inline] = ACTIONS(970), }, [166] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_preproc_if_token2] = ACTIONS(974), + [sym_comment] = ACTIONS(3), }, [167] = { - [sym_char_literal] = STATE(273), - [sym__expression] = STATE(273), - [sym_binary_expression] = STATE(273), - [sym_update_expression] = STATE(273), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(273), - [sym_sizeof_expression] = STATE(273), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(273), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(273), - [sym_assignment_expression] = STATE(273), - [sym_cast_expression] = STATE(273), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(273), - [sym_false] = ACTIONS(985), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(985), - [sym_null] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(635), + [sym_declaration] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_preproc_else] = STATE(271), + [sym_preproc_elif] = STATE(271), + [aux_sym_translation_unit_repeat1] = STATE(635), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(635), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(635), + [sym__empty_declaration] = STATE(635), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(635), + [sym_preproc_include] = STATE(635), + [sym_preproc_if] = STATE(635), + [sym_preproc_ifdef] = STATE(635), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(635), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(635), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(635), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(635), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(976), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [168] = { - [sym_pointer_declarator] = STATE(274), - [sym_parenthesized_declarator] = STATE(274), - [sym_init_declarator] = STATE(124), - [sym_array_declarator] = STATE(274), - [sym__declarator] = STATE(274), - [sym_function_declarator] = STATE(274), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_LPAREN2] = ACTIONS(338), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(991), + [sym_if_statement] = STATE(273), + [sym_preproc_def] = STATE(273), + [sym_preproc_function_def] = STATE(273), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(273), + [sym_declaration] = STATE(273), + [sym_do_statement] = STATE(273), + [sym_for_statement] = STATE(273), + [aux_sym_translation_unit_repeat1] = STATE(273), + [sym_expression_statement] = STATE(273), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(868), + [sym_union_specifier] = STATE(868), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(273), + [sym_return_statement] = STATE(273), + [sym_preproc_call] = STATE(273), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(273), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_break_statement] = STATE(273), + [sym__empty_declaration] = STATE(273), + [sym_sized_type_specifier] = STATE(868), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(273), + [sym_preproc_include] = STATE(273), + [sym_preproc_if] = STATE(273), + [sym_preproc_ifdef] = STATE(273), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(273), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(868), + [sym_while_statement] = STATE(273), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(273), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(273), + [sym_struct_specifier] = STATE(868), + [sym_goto_statement] = STATE(273), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(978), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [169] = { - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_union] = ACTIONS(995), - [sym_true] = ACTIONS(995), - [anon_sym_unsigned] = ACTIONS(995), - [anon_sym_restrict] = ACTIONS(995), - [anon_sym_short] = ACTIONS(995), - [sym_false] = ACTIONS(995), - [sym_null] = ACTIONS(995), - [sym_identifier] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_goto] = ACTIONS(995), - [ts_builtin_sym_end] = ACTIONS(993), - [sym_preproc_directive] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(993), - [aux_sym_preproc_if_token1] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(993), - [anon_sym_const] = ACTIONS(995), - [anon_sym_LPAREN2] = ACTIONS(993), - [anon_sym_typedef] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(993), - [anon_sym__Atomic] = ACTIONS(995), - [sym_primitive_type] = ACTIONS(995), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_static] = ACTIONS(995), - [anon_sym_volatile] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_if] = ACTIONS(995), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_switch] = ACTIONS(995), - [anon_sym_signed] = ACTIONS(995), - [anon_sym_enum] = ACTIONS(995), - [anon_sym_long] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(993), - [sym_number_literal] = ACTIONS(993), - [anon_sym_return] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_SQUOTE] = ACTIONS(993), - [aux_sym_preproc_def_token1] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_auto] = ACTIONS(995), - [anon_sym_L] = ACTIONS(995), - [anon_sym_inline] = ACTIONS(995), - [anon_sym___attribute__] = ACTIONS(995), - [anon_sym_sizeof] = ACTIONS(995), + [sym_true] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym__Atomic] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_union] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(982), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(982), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_static] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(982), + [anon_sym_register] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_if] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [ts_builtin_sym_end] = ACTIONS(982), + [anon_sym_return] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), }, [170] = { - [aux_sym_preproc_if_token2] = ACTIONS(997), - [sym_comment] = ACTIONS(3), + [anon_sym_case] = ACTIONS(984), + [sym_true] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_default] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_union] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(986), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_else] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(986), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [anon_sym_register] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_if] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_return] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), }, [171] = { - [sym_if_statement] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(646), - [sym_declaration] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym_preproc_else] = STATE(277), - [sym_preproc_elif] = STATE(277), - [aux_sym_translation_unit_repeat1] = STATE(646), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(646), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(646), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(646), - [sym__empty_declaration] = STATE(646), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(646), - [sym_preproc_include] = STATE(646), - [sym_preproc_if] = STATE(646), - [sym_preproc_ifdef] = STATE(646), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(646), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(646), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(646), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(646), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(646), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(999), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [anon_sym_restrict] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_static] = ACTIONS(990), + [anon_sym_volatile] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(990), + [anon_sym_LPAREN2] = ACTIONS(992), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(990), + [sym_identifier] = ACTIONS(990), + [anon_sym_auto] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(990), + [anon_sym___attribute__] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(992), }, [172] = { - [sym_if_statement] = STATE(279), - [sym_preproc_def] = STATE(279), - [sym_preproc_function_def] = STATE(279), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(279), - [sym_declaration] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [aux_sym_translation_unit_repeat1] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(883), - [sym_union_specifier] = STATE(883), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_preproc_call] = STATE(279), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(279), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_break_statement] = STATE(279), - [sym__empty_declaration] = STATE(279), - [sym_sized_type_specifier] = STATE(883), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(279), - [sym_preproc_include] = STATE(279), - [sym_preproc_if] = STATE(279), - [sym_preproc_ifdef] = STATE(279), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(279), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(883), - [sym_while_statement] = STATE(279), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(279), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(279), - [sym_struct_specifier] = STATE(883), - [sym_goto_statement] = STATE(279), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym___attribute__] = ACTIONS(19), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(95), - [sym_number_literal] = ACTIONS(93), - [anon_sym_if] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(83), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_SQUOTE] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), - [anon_sym_inline] = ACTIONS(9), + [sym_if_statement] = STATE(278), + [sym_do_statement] = STATE(278), + [sym_for_statement] = STATE(278), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(278), + [sym_return_statement] = STATE(278), + [sym_break_statement] = STATE(278), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(278), + [sym_case_statement] = STATE(278), + [sym_while_statement] = STATE(278), + [sym_continue_statement] = STATE(278), + [sym_goto_statement] = STATE(278), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(278), + [aux_sym_switch_body_repeat1] = STATE(278), + [sym_expression_statement] = STATE(278), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [173] = { - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_union] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [anon_sym_unsigned] = ACTIONS(1005), - [anon_sym_restrict] = ACTIONS(1005), - [anon_sym_short] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [sym_null] = ACTIONS(1005), - [sym_identifier] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_goto] = ACTIONS(1005), - [ts_builtin_sym_end] = ACTIONS(1003), - [sym_preproc_directive] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(1003), - [aux_sym_preproc_if_token1] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(1003), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1003), - [anon_sym_typedef] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1003), - [anon_sym__Atomic] = ACTIONS(1005), - [sym_primitive_type] = ACTIONS(1005), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [aux_sym_preproc_include_token1] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_static] = ACTIONS(1005), - [anon_sym_volatile] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_struct] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [anon_sym_signed] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1005), - [anon_sym_long] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [sym_number_literal] = ACTIONS(1003), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1003), - [aux_sym_preproc_def_token1] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_auto] = ACTIONS(1005), - [anon_sym_L] = ACTIONS(1005), - [anon_sym_inline] = ACTIONS(1005), - [anon_sym___attribute__] = ACTIONS(1005), - [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym_case] = ACTIONS(1028), + [sym_true] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_default] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1030), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [ts_builtin_sym_end] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), }, [174] = { - [anon_sym_case] = ACTIONS(1007), - [sym_false] = ACTIONS(1007), - [anon_sym_restrict] = ACTIONS(1007), - [sym_identifier] = ACTIONS(1007), - [anon_sym_goto] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_typedef] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_default] = ACTIONS(1007), - [anon_sym__Atomic] = ACTIONS(1007), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1007), - [sym_number_literal] = ACTIONS(1009), - [anon_sym_volatile] = ACTIONS(1007), - [anon_sym_SQUOTE] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_signed] = ACTIONS(1007), - [anon_sym_long] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1007), - [anon_sym_L] = ACTIONS(1007), - [anon_sym___attribute__] = ACTIONS(1007), - [anon_sym_sizeof] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsigned] = ACTIONS(1007), - [anon_sym_short] = ACTIONS(1007), - [anon_sym_do] = ACTIONS(1007), - [sym_preproc_directive] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), - [aux_sym_preproc_if_token1] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [anon_sym_LPAREN2] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_else] = ACTIONS(1011), - [sym_primitive_type] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1009), - [aux_sym_preproc_include_token1] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_register] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_switch] = ACTIONS(1007), - [sym_true] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [sym_null] = ACTIONS(1007), - [ts_builtin_sym_end] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [aux_sym_preproc_def_token1] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_auto] = ACTIONS(1007), - [anon_sym_inline] = ACTIONS(1007), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym_COMMA] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_COLON] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym__Atomic] = ACTIONS(1032), + [sym_identifier] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1034), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1034), }, [175] = { - [anon_sym_restrict] = ACTIONS(1013), - [sym_identifier] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1013), - [anon_sym_volatile] = ACTIONS(1013), - [anon_sym_register] = ACTIONS(1013), - [anon_sym_extern] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_COMMA] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1013), - [anon_sym_LPAREN2] = ACTIONS(1015), - [anon_sym_COLON] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1015), - [anon_sym__Atomic] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1015), - [anon_sym_inline] = ACTIONS(1013), - [anon_sym___attribute__] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [sym_comment] = ACTIONS(3), }, [176] = { - [sym_if_statement] = STATE(284), - [sym_do_statement] = STATE(284), - [sym_for_statement] = STATE(284), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(284), - [sym_return_statement] = STATE(284), - [sym_break_statement] = STATE(284), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(284), - [sym_case_statement] = STATE(284), - [sym_while_statement] = STATE(284), - [sym_continue_statement] = STATE(284), - [sym_goto_statement] = STATE(284), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(284), - [aux_sym_switch_body_repeat1] = STATE(284), - [sym_expression_statement] = STATE(284), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_default] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), }, [177] = { - [anon_sym_case] = ACTIONS(1051), - [sym_false] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [anon_sym_goto] = ACTIONS(1051), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_typedef] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1053), - [anon_sym_default] = ACTIONS(1051), - [anon_sym__Atomic] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [sym_number_literal] = ACTIONS(1053), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_extern] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), - [anon_sym_L] = ACTIONS(1051), - [anon_sym___attribute__] = ACTIONS(1051), - [anon_sym_sizeof] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1051), - [anon_sym_short] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(1051), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1053), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1053), - [anon_sym_LPAREN2] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1053), - [aux_sym_preproc_include_token1] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_switch] = ACTIONS(1051), - [sym_true] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [sym_null] = ACTIONS(1051), - [ts_builtin_sym_end] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1053), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [anon_sym_inline] = ACTIONS(1051), + [aux_sym_enumerator_list_repeat1] = STATE(282), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), }, [178] = { - [anon_sym_EQ] = ACTIONS(1055), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1057), - [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym__Atomic] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1046), }, [179] = { - [anon_sym_restrict] = ACTIONS(1059), - [sym_identifier] = ACTIONS(1059), - [anon_sym_static] = ACTIONS(1059), - [anon_sym_volatile] = ACTIONS(1059), - [anon_sym_register] = ACTIONS(1059), - [anon_sym_extern] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_const] = ACTIONS(1059), - [anon_sym_LPAREN2] = ACTIONS(1061), - [anon_sym_COLON] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym__Atomic] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_inline] = ACTIONS(1059), - [anon_sym___attribute__] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PERCENT_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_DASH_GT] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_LT_LT_EQ] = ACTIONS(1050), + [anon_sym_QMARK] = ACTIONS(1050), + [anon_sym_BANG_EQ] = ACTIONS(1050), + [anon_sym_CARET_EQ] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1050), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_PIPE_EQ] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_RBRACK] = ACTIONS(1050), + [anon_sym_AMP_EQ] = ACTIONS(1050), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1050), }, [180] = { - [anon_sym_RBRACE] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), + [anon_sym_case] = ACTIONS(1052), + [sym_true] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_default] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_sizeof] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [ts_builtin_sym_end] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), }, [181] = { - [aux_sym_enumerator_list_repeat1] = STATE(288), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_case] = ACTIONS(1056), + [sym_true] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [ts_builtin_sym_end] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), }, [182] = { - [anon_sym_restrict] = ACTIONS(1067), - [sym_identifier] = ACTIONS(1067), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_volatile] = ACTIONS(1067), - [anon_sym_register] = ACTIONS(1067), - [anon_sym_extern] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1069), - [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_const] = ACTIONS(1067), - [anon_sym_LPAREN2] = ACTIONS(1069), - [anon_sym_COLON] = ACTIONS(1069), - [anon_sym_SEMI] = ACTIONS(1069), - [anon_sym__Atomic] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1069), - [anon_sym_inline] = ACTIONS(1067), - [anon_sym___attribute__] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_LF] = ACTIONS(1060), + [sym_comment] = ACTIONS(147), }, [183] = { - [anon_sym_case] = ACTIONS(1071), - [sym_false] = ACTIONS(1071), - [anon_sym_restrict] = ACTIONS(1071), - [sym_identifier] = ACTIONS(1071), - [anon_sym_goto] = ACTIONS(1071), - [anon_sym_const] = ACTIONS(1071), - [anon_sym_typedef] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym_default] = ACTIONS(1071), - [anon_sym__Atomic] = ACTIONS(1071), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1071), - [sym_number_literal] = ACTIONS(1073), - [anon_sym_volatile] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_extern] = ACTIONS(1071), - [anon_sym_PLUS_PLUS] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(1071), - [anon_sym_signed] = ACTIONS(1071), - [anon_sym_long] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1071), - [anon_sym_L] = ACTIONS(1071), - [anon_sym___attribute__] = ACTIONS(1071), - [anon_sym_sizeof] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_union] = ACTIONS(1071), - [anon_sym_unsigned] = ACTIONS(1071), - [anon_sym_short] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(1071), - [sym_preproc_directive] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - [aux_sym_preproc_if_token1] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1073), - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_RBRACE] = ACTIONS(1073), - [anon_sym_else] = ACTIONS(1071), - [sym_primitive_type] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1073), - [aux_sym_preproc_include_token1] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_static] = ACTIONS(1071), - [anon_sym_register] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_switch] = ACTIONS(1071), - [sym_true] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1071), - [sym_null] = ACTIONS(1071), - [ts_builtin_sym_end] = ACTIONS(1073), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [aux_sym_preproc_def_token1] = ACTIONS(1071), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_auto] = ACTIONS(1071), - [anon_sym_inline] = ACTIONS(1071), + [sym_true] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [anon_sym_goto] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), + [sym_number_literal] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1062), + [anon_sym_signed] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_unsigned] = ACTIONS(1062), + [anon_sym_short] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_L_DQUOTE] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_switch] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [ts_builtin_sym_end] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_auto] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), }, [184] = { - [anon_sym_case] = ACTIONS(1075), - [sym_false] = ACTIONS(1075), - [anon_sym_restrict] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [anon_sym_goto] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_typedef] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_default] = ACTIONS(1075), - [anon_sym__Atomic] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), - [sym_number_literal] = ACTIONS(1077), - [anon_sym_volatile] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_extern] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_signed] = ACTIONS(1075), - [anon_sym_long] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), - [anon_sym_L] = ACTIONS(1075), - [anon_sym___attribute__] = ACTIONS(1075), - [anon_sym_sizeof] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_union] = ACTIONS(1075), - [anon_sym_unsigned] = ACTIONS(1075), - [anon_sym_short] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(1075), - [sym_preproc_directive] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - [aux_sym_preproc_if_token1] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_LPAREN2] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_else] = ACTIONS(1075), - [sym_primitive_type] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), - [aux_sym_preproc_include_token1] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_register] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_switch] = ACTIONS(1075), - [sym_true] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [sym_null] = ACTIONS(1075), - [ts_builtin_sym_end] = ACTIONS(1077), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1077), - [aux_sym_preproc_def_token1] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_auto] = ACTIONS(1075), - [anon_sym_inline] = ACTIONS(1075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), }, [185] = { - [anon_sym_GT_GT] = ACTIONS(1079), - [anon_sym_PERCENT_EQ] = ACTIONS(1081), - [anon_sym_DASH_EQ] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1079), - [anon_sym_EQ_EQ] = ACTIONS(1081), - [anon_sym_SLASH] = ACTIONS(1079), - [anon_sym_DASH_GT] = ACTIONS(1081), - [anon_sym_LT_LT] = ACTIONS(1079), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1081), - [anon_sym_LT_LT_EQ] = ACTIONS(1081), - [anon_sym_QMARK] = ACTIONS(1081), - [anon_sym_BANG_EQ] = ACTIONS(1081), - [anon_sym_CARET_EQ] = ACTIONS(1081), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_GT_GT_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1079), - [anon_sym_PIPE_EQ] = ACTIONS(1081), - [anon_sym_RPAREN] = ACTIONS(1081), - [anon_sym_RBRACK] = ACTIONS(1081), - [anon_sym_AMP_EQ] = ACTIONS(1081), - [anon_sym_PERCENT] = ACTIONS(1079), - [anon_sym_AMP] = ACTIONS(1079), - [anon_sym_EQ] = ACTIONS(1079), - [anon_sym_LPAREN2] = ACTIONS(1081), - [anon_sym_GT_EQ] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_COLON] = ACTIONS(1081), - [anon_sym_STAR_EQ] = ACTIONS(1081), - [anon_sym_PIPE_PIPE] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_LT_EQ] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1079), - [anon_sym_SLASH_EQ] = ACTIONS(1081), - [anon_sym_AMP_AMP] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_CARET] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_LBRACK] = ACTIONS(1081), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(1070), + [sym_preproc_arg] = ACTIONS(1072), }, [186] = { - [anon_sym_LF] = ACTIONS(1083), - [sym_comment] = ACTIONS(171), + [anon_sym_RPAREN] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), }, [187] = { - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_union] = ACTIONS(1087), - [sym_true] = ACTIONS(1087), - [anon_sym_unsigned] = ACTIONS(1087), - [anon_sym_restrict] = ACTIONS(1087), - [anon_sym_short] = ACTIONS(1087), - [sym_false] = ACTIONS(1087), - [sym_null] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1087), - [anon_sym_do] = ACTIONS(1087), - [anon_sym_goto] = ACTIONS(1087), - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_preproc_directive] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1085), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_LPAREN2] = ACTIONS(1085), - [anon_sym_typedef] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym__Atomic] = ACTIONS(1087), - [sym_primitive_type] = ACTIONS(1087), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1085), - [aux_sym_preproc_include_token1] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_volatile] = ACTIONS(1087), - [anon_sym_register] = ACTIONS(1087), - [anon_sym_extern] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_switch] = ACTIONS(1087), - [anon_sym_signed] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [anon_sym_long] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [sym_number_literal] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [aux_sym_preproc_def_token1] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_auto] = ACTIONS(1087), - [anon_sym_L] = ACTIONS(1087), - [anon_sym_inline] = ACTIONS(1087), - [anon_sym___attribute__] = ACTIONS(1087), - [anon_sym_sizeof] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1076), + [sym_comment] = ACTIONS(3), }, [188] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1089), - [anon_sym_RPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1089), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(305), }, [189] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(1093), - [sym_preproc_arg] = ACTIONS(1095), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [190] = { - [anon_sym_SQUOTE] = ACTIONS(1097), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [191] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(1099), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [192] = { - [anon_sym_RPAREN] = ACTIONS(1101), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [193] = { - [anon_sym_RPAREN] = ACTIONS(1103), [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1084), }, [194] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1105), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(305), }, [195] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(305), }, [196] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1080), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(305), }, [197] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [198] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [199] = { - [anon_sym_RPAREN] = ACTIONS(1111), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1088), + [anon_sym_DASH_EQ] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1088), + [anon_sym_SLASH] = ACTIONS(1086), + [anon_sym_DASH_GT] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_EQ] = ACTIONS(1088), + [anon_sym_LT_LT_EQ] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_BANG_EQ] = ACTIONS(1088), + [anon_sym_CARET_EQ] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1088), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1088), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_RBRACK] = ACTIONS(1088), + [anon_sym_AMP_EQ] = ACTIONS(1088), + [anon_sym_PERCENT] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1086), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_GT_EQ] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_COLON] = ACTIONS(1088), + [anon_sym_STAR_EQ] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DOT] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1088), }, [200] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1105), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_PERCENT_EQ] = ACTIONS(1092), + [anon_sym_DASH_EQ] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_EQ_EQ] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_DASH_GT] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_PLUS_EQ] = ACTIONS(1092), + [anon_sym_LT_LT_EQ] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1092), + [anon_sym_BANG_EQ] = ACTIONS(1092), + [anon_sym_CARET_EQ] = ACTIONS(1092), + [anon_sym_COMMA] = ACTIONS(1092), + [anon_sym_PLUS_PLUS] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1092), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_PIPE_EQ] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1092), + [anon_sym_AMP_EQ] = ACTIONS(1092), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1092), + [anon_sym_GT_EQ] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_COLON] = ACTIONS(1092), + [anon_sym_STAR_EQ] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_LT_EQ] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_SLASH_EQ] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DOT] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), }, [201] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [aux_sym_argument_list_repeat1] = STATE(293), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1096), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [202] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1107), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [203] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [204] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1098), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [205] = { - [anon_sym_GT_GT] = ACTIONS(1113), - [anon_sym_PERCENT_EQ] = ACTIONS(1115), - [anon_sym_DASH_EQ] = ACTIONS(1115), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_EQ_EQ] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1113), - [anon_sym_DASH_GT] = ACTIONS(1115), - [anon_sym_LT_LT] = ACTIONS(1113), - [anon_sym_DASH_DASH] = ACTIONS(1115), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1115), - [anon_sym_LT_LT_EQ] = ACTIONS(1115), - [anon_sym_QMARK] = ACTIONS(1115), - [anon_sym_BANG_EQ] = ACTIONS(1115), - [anon_sym_CARET_EQ] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_GT_GT_EQ] = ACTIONS(1115), - [anon_sym_GT] = ACTIONS(1113), - [anon_sym_PIPE_EQ] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1115), - [anon_sym_AMP_EQ] = ACTIONS(1115), - [anon_sym_PERCENT] = ACTIONS(1113), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_EQ] = ACTIONS(1113), - [anon_sym_LPAREN2] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_COLON] = ACTIONS(1115), - [anon_sym_STAR_EQ] = ACTIONS(1115), - [anon_sym_PIPE_PIPE] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_LT_EQ] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_SLASH_EQ] = ACTIONS(1115), - [anon_sym_AMP_AMP] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DOT] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1115), + [sym_parameter_list] = STATE(213), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_RPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(650), }, [206] = { - [anon_sym_GT_GT] = ACTIONS(1117), - [anon_sym_PERCENT_EQ] = ACTIONS(1119), - [anon_sym_DASH_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1117), - [anon_sym_EQ_EQ] = ACTIONS(1119), - [anon_sym_SLASH] = ACTIONS(1117), - [anon_sym_DASH_GT] = ACTIONS(1119), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1119), - [anon_sym_LT_LT_EQ] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1119), - [anon_sym_CARET_EQ] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_GT_GT_EQ] = ACTIONS(1119), - [anon_sym_GT] = ACTIONS(1117), - [anon_sym_PIPE_EQ] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_AMP_EQ] = ACTIONS(1119), - [anon_sym_PERCENT] = ACTIONS(1117), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_EQ] = ACTIONS(1117), - [anon_sym_LPAREN2] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1119), - [anon_sym_STAR_EQ] = ACTIONS(1119), - [anon_sym_PIPE_PIPE] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_STAR] = ACTIONS(1117), - [anon_sym_SLASH_EQ] = ACTIONS(1119), - [anon_sym_AMP_AMP] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_CARET] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_DOT] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_LBRACK] = ACTIONS(1119), + [sym_pointer_declarator] = STATE(295), + [sym_parenthesized_declarator] = STATE(295), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_array_declarator] = STATE(295), + [sym__declarator] = STATE(295), + [sym_function_declarator] = STATE(295), + [sym_type_qualifier] = STATE(144), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(328), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(326), + [sym_identifier] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), }, [207] = { - [sym_argument_list] = STATE(115), - [aux_sym_argument_list_repeat1] = STATE(301), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1123), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_parameter_list] = STATE(213), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(650), }, [208] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_char_literal] = STATE(297), + [sym__expression] = STATE(297), + [sym_binary_expression] = STATE(297), + [sym_update_expression] = STATE(297), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(297), + [sym_sizeof_expression] = STATE(297), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_initializer_list] = STATE(298), + [sym_concatenated_string] = STATE(297), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(297), + [sym_assignment_expression] = STATE(297), + [sym_cast_expression] = STATE(297), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(297), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_BANG] = ACTIONS(47), + [sym_true] = ACTIONS(1106), + [sym_null] = ACTIONS(1106), + [sym_number_literal] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [209] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_case] = ACTIONS(1110), + [sym_true] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [sym_null] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1110), + [anon_sym__Atomic] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [ts_builtin_sym_end] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), }, [210] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1125), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_parameter_declaration] = STATE(243), + [sym_macro_type_specifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(245), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_DOT_DOT_DOT] = ACTIONS(907), + [anon_sym_const] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(348), + [sym_identifier] = ACTIONS(187), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [211] = { - [sym_parameter_list] = STATE(219), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_EQ] = ACTIONS(1127), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_SEMI] = ACTIONS(1127), + [sym_pointer_declarator] = STATE(299), + [sym_array_declarator] = STATE(299), + [sym__declarator] = STATE(299), + [sym_parenthesized_declarator] = STATE(299), + [sym_function_declarator] = STATE(299), + [sym_init_declarator] = STATE(300), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(328), + [sym_identifier] = ACTIONS(1114), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1127), - [anon_sym_LBRACK] = ACTIONS(670), }, [212] = { - [sym_pointer_declarator] = STATE(303), - [sym_parenthesized_declarator] = STATE(303), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_array_declarator] = STATE(303), - [sym__declarator] = STATE(303), - [sym_function_declarator] = STATE(303), - [sym_type_qualifier] = STATE(151), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(338), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(1129), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(336), - [sym_comment] = ACTIONS(3), + [sym__expression] = STATE(303), + [sym_binary_expression] = STATE(303), + [sym_update_expression] = STATE(303), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(304), + [sym_conditional_expression] = STATE(303), + [sym_assignment_expression] = STATE(303), + [sym_cast_expression] = STATE(303), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(303), + [sym_char_literal] = STATE(303), + [aux_sym_type_definition_repeat1] = STATE(304), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(303), + [sym_sizeof_expression] = STATE(303), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(303), + [sym_string_literal] = STATE(41), + [sym_true] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(1116), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(33), }, [213] = { - [sym_parameter_list] = STATE(219), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_LPAREN2] = ACTIONS(672), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(670), + [sym_attribute_specifier] = STATE(305), + [aux_sym_function_declarator_repeat1] = STATE(305), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_EQ] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1124), }, [214] = { - [sym_char_literal] = STATE(305), - [sym__expression] = STATE(305), - [sym_binary_expression] = STATE(305), - [sym_update_expression] = STATE(305), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(305), - [sym_sizeof_expression] = STATE(305), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_initializer_list] = STATE(306), - [sym_concatenated_string] = STATE(305), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(305), - [sym_assignment_expression] = STATE(305), - [sym_cast_expression] = STATE(305), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(305), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(33), - [sym_false] = ACTIONS(1133), - [sym_identifier] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(29), - [sym_true] = ACTIONS(1133), - [sym_null] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(1128), + [anon_sym_restrict] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [anon_sym_goto] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), + [sym_number_literal] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_unsigned] = ACTIONS(1128), + [anon_sym_short] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [sym_preproc_directive] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_L_DQUOTE] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [ts_builtin_sym_end] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_auto] = ACTIONS(1128), + [anon_sym_inline] = ACTIONS(1128), }, [215] = { - [anon_sym_case] = ACTIONS(1137), - [sym_false] = ACTIONS(1137), - [anon_sym_restrict] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1137), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_typedef] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1137), - [anon_sym__Atomic] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1137), - [sym_number_literal] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1137), - [anon_sym_signed] = ACTIONS(1137), - [anon_sym_long] = ACTIONS(1137), - [anon_sym_while] = ACTIONS(1137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1137), - [anon_sym_L] = ACTIONS(1137), - [anon_sym___attribute__] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1137), - [anon_sym_unsigned] = ACTIONS(1137), - [anon_sym_short] = ACTIONS(1137), - [anon_sym_do] = ACTIONS(1137), - [sym_preproc_directive] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1139), - [anon_sym_RBRACE] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1137), - [anon_sym_break] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_register] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1137), - [anon_sym_switch] = ACTIONS(1137), - [sym_true] = ACTIONS(1137), - [anon_sym_enum] = ACTIONS(1137), - [sym_null] = ACTIONS(1137), - [ts_builtin_sym_end] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1137), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_auto] = ACTIONS(1137), - [anon_sym_inline] = ACTIONS(1137), + [aux_sym_declaration_repeat1] = STATE(307), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(654), + [sym_comment] = ACTIONS(3), }, [216] = { - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_parameter_declaration] = STATE(249), - [sym_macro_type_specifier] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(252), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [anon_sym_DOT_DOT_DOT] = ACTIONS(938), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [aux_sym_concatenated_string_repeat1] = STATE(216), + [sym_string_literal] = STATE(216), + [anon_sym_GT_GT] = ACTIONS(1134), + [anon_sym_PERCENT_EQ] = ACTIONS(1136), + [anon_sym_DASH_EQ] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1134), + [anon_sym_EQ_EQ] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1134), + [anon_sym_DASH_GT] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [anon_sym_PLUS_EQ] = ACTIONS(1136), + [anon_sym_LT_LT_EQ] = ACTIONS(1136), + [anon_sym_QMARK] = ACTIONS(1136), + [anon_sym_BANG_EQ] = ACTIONS(1136), + [anon_sym_CARET_EQ] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1136), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_PIPE_EQ] = ACTIONS(1136), + [anon_sym_RPAREN] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(1136), + [anon_sym_AMP_EQ] = ACTIONS(1136), + [anon_sym_PERCENT] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_EQ] = ACTIONS(1134), + [anon_sym_L_DQUOTE] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_GT_EQ] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_COLON] = ACTIONS(1136), + [anon_sym_STAR_EQ] = ACTIONS(1136), + [anon_sym_PIPE_PIPE] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1138), + [anon_sym_LT_EQ] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1136), + [anon_sym_AMP_AMP] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_CARET] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_DOT] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1136), }, [217] = { - [sym_pointer_declarator] = STATE(307), - [sym_array_declarator] = STATE(307), - [sym__declarator] = STATE(307), - [sym_parenthesized_declarator] = STATE(307), - [sym_function_declarator] = STATE(307), - [sym_init_declarator] = STATE(308), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_LPAREN2] = ACTIONS(338), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(1141), + [aux_sym__declaration_specifiers_repeat1] = STATE(124), + [sym_attribute_specifier] = STATE(124), + [sym_storage_class_specifier] = STATE(124), + [sym_type_qualifier] = STATE(124), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(1141), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_COLON] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(1141), }, [218] = { - [sym__expression] = STATE(311), - [sym_binary_expression] = STATE(311), - [sym_update_expression] = STATE(311), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(312), - [sym_conditional_expression] = STATE(311), - [sym_assignment_expression] = STATE(311), - [sym_cast_expression] = STATE(311), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(311), - [sym_char_literal] = STATE(311), - [aux_sym_type_definition_repeat1] = STATE(312), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(311), - [sym_sizeof_expression] = STATE(311), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(311), - [sym_string_literal] = STATE(42), - [sym_false] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1145), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1143), - [sym_null] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(25), + [sym_preproc_def] = STATE(311), + [sym_preproc_function_def] = STATE(311), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(311), + [sym_field_declaration] = STATE(311), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(311), + [sym_preproc_else_in_field_declaration_list] = STATE(312), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(312), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(311), + [sym_preproc_if_in_field_declaration_list] = STATE(311), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(311), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(1153), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [219] = { - [sym_attribute_specifier] = STATE(313), - [aux_sym_function_declarator_repeat1] = STATE(313), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_EQ] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(1151), - [anon_sym_COMMA] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym_LBRACK] = ACTIONS(1151), - }, - [220] = { - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_true] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [sym_null] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [ts_builtin_sym_end] = ACTIONS(1155), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), + [sym_preproc_def] = STATE(314), + [sym_preproc_function_def] = STATE(314), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(314), + [sym_field_declaration] = STATE(314), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(314), + [sym_preproc_else_in_field_declaration_list] = STATE(315), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(315), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(314), + [sym_preproc_if_in_field_declaration_list] = STATE(314), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(314), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_L] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym_sizeof] = ACTIONS(1157), - }, - [221] = { - [aux_sym_declaration_repeat1] = STATE(315), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, - [222] = { - [aux_sym_concatenated_string_repeat1] = STATE(222), - [sym_string_literal] = STATE(222), - [anon_sym_GT_GT] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1163), - [anon_sym_DASH_EQ] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_DASH_GT] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1163), - [anon_sym_LT_LT_EQ] = ACTIONS(1163), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1163), - [anon_sym_CARET_EQ] = ACTIONS(1163), + [220] = { + [anon_sym_restrict] = ACTIONS(1161), [anon_sym_COMMA] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_GT_GT_EQ] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_L] = ACTIONS(1165), - [anon_sym_RBRACK] = ACTIONS(1163), - [anon_sym_AMP_EQ] = ACTIONS(1163), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_volatile] = ACTIONS(1161), + [anon_sym_register] = ACTIONS(1161), + [anon_sym_extern] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1161), [anon_sym_LPAREN2] = ACTIONS(1163), - [anon_sym_GT_EQ] = ACTIONS(1163), - [anon_sym_RBRACE] = ACTIONS(1163), [anon_sym_COLON] = ACTIONS(1163), - [anon_sym_STAR_EQ] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1163), - [anon_sym_AMP_AMP] = ACTIONS(1163), [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DOT] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1161), + [anon_sym__Atomic] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1161), + [anon_sym_auto] = ACTIONS(1161), + [anon_sym_RPAREN] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1161), + [anon_sym___attribute__] = ACTIONS(1161), [anon_sym_LBRACK] = ACTIONS(1163), }, + [221] = { + [sym_preproc_def] = STATE(221), + [sym_preproc_function_def] = STATE(221), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(221), + [sym_field_declaration] = STATE(221), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(221), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(221), + [sym_preproc_if_in_field_declaration_list] = STATE(221), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(221), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(131), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1168), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym_struct] = ACTIONS(1180), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_signed] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1186), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1177), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1177), + [anon_sym___attribute__] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1203), + }, + [222] = { + [sym_function_field_declarator] = STATE(317), + [aux_sym_type_definition_repeat1] = STATE(316), + [sym_pointer_field_declarator] = STATE(317), + [sym_parenthesized_field_declarator] = STATE(317), + [sym__field_declarator] = STATE(317), + [sym_array_field_declarator] = STATE(317), + [sym_type_qualifier] = STATE(316), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(808), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(806), + [sym_identifier] = ACTIONS(1206), + [sym_comment] = ACTIONS(3), + }, [223] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(128), - [sym_attribute_specifier] = STATE(128), - [sym_storage_class_specifier] = STATE(128), - [sym_type_qualifier] = STATE(128), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(1173), - [anon_sym_COLON] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(1173), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_COLON] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1208), }, [224] = { - [sym_preproc_def] = STATE(319), - [sym_preproc_function_def] = STATE(319), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(319), - [sym_field_declaration] = STATE(319), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(319), - [sym_preproc_else_in_field_declaration_list] = STATE(320), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(320), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(319), - [sym_preproc_if_in_field_declaration_list] = STATE(319), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(319), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_function_field_declarator] = STATE(318), + [sym_pointer_field_declarator] = STATE(318), + [sym_parenthesized_field_declarator] = STATE(318), + [sym_array_field_declarator] = STATE(318), + [sym__field_declarator] = STATE(318), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_LPAREN2] = ACTIONS(808), + [sym_identifier] = ACTIONS(810), [sym_comment] = ACTIONS(3), }, [225] = { - [sym_preproc_def] = STATE(322), - [sym_preproc_function_def] = STATE(322), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(322), - [sym_field_declaration] = STATE(322), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(322), - [sym_preproc_else_in_field_declaration_list] = STATE(323), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(323), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(322), - [sym_preproc_if_in_field_declaration_list] = STATE(322), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(322), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(1189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(319), + [sym__expression] = STATE(319), + [sym_binary_expression] = STATE(319), + [sym_update_expression] = STATE(319), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(319), + [sym_sizeof_expression] = STATE(319), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(319), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(319), + [sym_assignment_expression] = STATE(319), + [sym_cast_expression] = STATE(319), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(319), + [anon_sym_BANG] = ACTIONS(47), + [sym_true] = ACTIONS(1210), + [sym_null] = ACTIONS(1210), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [226] = { - [anon_sym_restrict] = ACTIONS(1191), - [sym_identifier] = ACTIONS(1191), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_volatile] = ACTIONS(1191), - [anon_sym_register] = ACTIONS(1191), - [anon_sym_extern] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_COMMA] = ACTIONS(1193), - [anon_sym_const] = ACTIONS(1191), - [anon_sym_LPAREN2] = ACTIONS(1193), - [anon_sym_COLON] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym__Atomic] = ACTIONS(1191), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(1191), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_inline] = ACTIONS(1191), - [anon_sym___attribute__] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), + [aux_sym_preproc_def_token1] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1214), }, [227] = { - [sym_preproc_def] = STATE(227), - [sym_preproc_function_def] = STATE(227), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(227), - [sym_field_declaration] = STATE(227), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(227), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(227), - [sym_preproc_if_in_field_declaration_list] = STATE(227), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(227), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(135), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1201), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1207), - [anon_sym_extern] = ACTIONS(1207), - [sym_identifier] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1213), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_signed] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [anon_sym_long] = ACTIONS(1201), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1225), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1207), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1207), - [anon_sym___attribute__] = ACTIONS(1233), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1218), }, [228] = { - [sym_function_field_declarator] = STATE(325), - [aux_sym_type_definition_repeat1] = STATE(324), - [sym_pointer_field_declarator] = STATE(325), - [sym_parenthesized_field_declarator] = STATE(325), - [sym__field_declarator] = STATE(325), - [sym_array_field_declarator] = STATE(325), - [sym_type_qualifier] = STATE(324), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(831), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(829), + [sym_bitfield_clause] = STATE(324), + [aux_sym_field_declaration_repeat1] = STATE(325), + [sym_parameter_list] = STATE(326), + [anon_sym_LBRACK] = ACTIONS(1220), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(1224), }, [229] = { - [sym_function_field_declarator] = STATE(326), - [sym_pointer_field_declarator] = STATE(326), - [sym_parenthesized_field_declarator] = STATE(326), - [sym_array_field_declarator] = STATE(326), - [sym__field_declarator] = STATE(326), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_LPAREN2] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(833), + [anon_sym_case] = ACTIONS(1226), + [sym_true] = ACTIONS(1226), + [anon_sym_restrict] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1226), + [anon_sym__Atomic] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym___attribute__] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [sym_preproc_directive] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1228), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1226), + [sym_primitive_type] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1228), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1228), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [ts_builtin_sym_end] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1228), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), }, [230] = { - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_COMMA] = ACTIONS(1238), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1238), + [sym_if_statement] = STATE(328), + [sym_preproc_def] = STATE(328), + [sym_preproc_function_def] = STATE(328), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(328), + [sym_declaration] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym_preproc_else] = STATE(327), + [sym_preproc_elif] = STATE(327), + [aux_sym_translation_unit_repeat1] = STATE(328), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(328), + [sym_switch_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_preproc_call] = STATE(328), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(328), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(328), + [sym__empty_declaration] = STATE(328), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(328), + [sym_preproc_include] = STATE(328), + [sym_preproc_if] = STATE(328), + [sym_preproc_ifdef] = STATE(328), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(328), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(328), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(328), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(328), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(328), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [231] = { - [sym_char_literal] = STATE(327), - [sym__expression] = STATE(327), - [sym_binary_expression] = STATE(327), - [sym_update_expression] = STATE(327), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(327), - [sym_sizeof_expression] = STATE(327), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(327), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(327), - [sym_assignment_expression] = STATE(327), - [sym_cast_expression] = STATE(327), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(327), - [anon_sym_BANG] = ACTIONS(33), - [sym_false] = ACTIONS(1240), - [sym_identifier] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(29), - [sym_true] = ACTIONS(1240), - [sym_null] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(724), + [sym_preproc_def] = STATE(724), + [sym_preproc_function_def] = STATE(724), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(724), + [sym_declaration] = STATE(724), + [sym_do_statement] = STATE(724), + [sym_for_statement] = STATE(724), + [aux_sym_translation_unit_repeat1] = STATE(724), + [sym_expression_statement] = STATE(724), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(1031), + [sym_union_specifier] = STATE(1031), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(724), + [sym_return_statement] = STATE(724), + [sym_preproc_call] = STATE(724), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_type_definition] = STATE(724), + [sym_cast_expression] = STATE(1029), + [sym__declaration_specifiers] = STATE(1190), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_break_statement] = STATE(724), + [sym__empty_declaration] = STATE(724), + [sym_sized_type_specifier] = STATE(1031), + [sym_enum_specifier] = STATE(1031), + [sym_labeled_statement] = STATE(724), + [sym_preproc_include] = STATE(724), + [sym_preproc_if] = STATE(724), + [sym_preproc_ifdef] = STATE(724), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(724), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(1031), + [sym_while_statement] = STATE(724), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(724), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(724), + [sym_struct_specifier] = STATE(1031), + [sym_goto_statement] = STATE(724), + [sym_true] = ACTIONS(836), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(836), + [anon_sym_goto] = ACTIONS(838), + [aux_sym_preproc_if_token2] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(842), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(846), + [sym_number_literal] = ACTIONS(848), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(846), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(856), + [sym_preproc_directive] = ACTIONS(858), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(868), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_switch] = ACTIONS(872), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [232] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [sym_comment] = ACTIONS(3), + [sym_true] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [sym_null] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [ts_builtin_sym_end] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), }, [233] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1248), + [sym_true] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [sym_null] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [ts_builtin_sym_end] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), }, [234] = { - [sym_bitfield_clause] = STATE(332), - [aux_sym_field_declaration_repeat1] = STATE(333), - [sym_parameter_list] = STATE(334), - [anon_sym_LBRACK] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1242), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1252), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1254), }, [235] = { - [anon_sym_restrict] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), + [sym__expression] = STATE(334), + [sym_binary_expression] = STATE(334), + [sym_update_expression] = STATE(334), + [sym_call_expression] = STATE(36), + [sym_initializer_pair] = STATE(336), + [sym_subscript_designator] = STATE(335), + [sym_conditional_expression] = STATE(334), + [sym_assignment_expression] = STATE(334), + [sym_cast_expression] = STATE(334), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(334), + [sym_field_designator] = STATE(335), + [sym_char_literal] = STATE(334), + [aux_sym_initializer_pair_repeat1] = STATE(335), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(334), + [sym_sizeof_expression] = STATE(334), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_initializer_list] = STATE(336), + [sym_concatenated_string] = STATE(334), + [sym_string_literal] = STATE(41), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(1244), + [sym_true] = ACTIONS(1246), + [sym_null] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(1248), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1246), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(33), + }, + [236] = { + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_PERCENT_EQ] = ACTIONS(1258), + [anon_sym_DASH_EQ] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1258), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1258), + [anon_sym_LT_LT_EQ] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_BANG_EQ] = ACTIONS(1258), + [anon_sym_CARET_EQ] = ACTIONS(1258), [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_COLON] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(287), [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(1256), + [anon_sym_GT_GT_EQ] = ACTIONS(1258), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_PIPE_EQ] = ACTIONS(1258), [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_RBRACK] = ACTIONS(1258), + [anon_sym_AMP_EQ] = ACTIONS(1258), + [anon_sym_PERCENT] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_COLON] = ACTIONS(1258), + [anon_sym_STAR_EQ] = ACTIONS(1258), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_SLASH_EQ] = ACTIONS(1258), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_CARET] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(305), }, - [236] = { - [anon_sym_case] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(1260), + [237] = { + [anon_sym_GT_GT] = ACTIONS(1260), + [anon_sym_PERCENT_EQ] = ACTIONS(1262), + [anon_sym_DASH_EQ] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_EQ_EQ] = ACTIONS(1262), + [anon_sym_SLASH] = ACTIONS(1260), + [anon_sym_DASH_GT] = ACTIONS(1262), + [anon_sym_LT_LT] = ACTIONS(1260), [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1260), + [anon_sym_PLUS_EQ] = ACTIONS(1262), + [anon_sym_LT_LT_EQ] = ACTIONS(1262), + [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_BANG_EQ] = ACTIONS(1262), + [anon_sym_CARET_EQ] = ACTIONS(1262), + [anon_sym_COMMA] = ACTIONS(1262), [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [anon_sym_L] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1262), + [anon_sym_GT] = ACTIONS(1260), + [anon_sym_PIPE_EQ] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1262), + [anon_sym_RBRACK] = ACTIONS(1262), + [anon_sym_AMP_EQ] = ACTIONS(1262), + [anon_sym_PERCENT] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_EQ] = ACTIONS(1260), [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_GT_EQ] = ACTIONS(1262), [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1262), - [aux_sym_preproc_include_token1] = ACTIONS(1260), + [anon_sym_COLON] = ACTIONS(1262), + [anon_sym_STAR_EQ] = ACTIONS(1262), + [anon_sym_PIPE_PIPE] = ACTIONS(1262), [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [sym_true] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [sym_null] = ACTIONS(1260), - [ts_builtin_sym_end] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), + [anon_sym_LT_EQ] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_SLASH_EQ] = ACTIONS(1262), + [anon_sym_AMP_AMP] = ACTIONS(1262), [anon_sym_SEMI] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1260), + [anon_sym_CARET] = ACTIONS(1260), [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - }, - [237] = { - [sym_if_statement] = STATE(336), - [sym_preproc_def] = STATE(336), - [sym_preproc_function_def] = STATE(336), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(336), - [sym_declaration] = STATE(336), - [sym_do_statement] = STATE(336), - [sym_for_statement] = STATE(336), - [sym_preproc_else] = STATE(335), - [sym_preproc_elif] = STATE(335), - [aux_sym_translation_unit_repeat1] = STATE(336), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(336), - [sym_switch_statement] = STATE(336), - [sym_return_statement] = STATE(336), - [sym_preproc_call] = STATE(336), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(336), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(336), - [sym__empty_declaration] = STATE(336), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(336), - [sym_preproc_include] = STATE(336), - [sym_preproc_if] = STATE(336), - [sym_preproc_ifdef] = STATE(336), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(336), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(336), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(336), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(336), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(336), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1262), }, [238] = { - [sym_if_statement] = STATE(737), - [sym_preproc_def] = STATE(737), - [sym_preproc_function_def] = STATE(737), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(737), - [sym_declaration] = STATE(737), - [sym_do_statement] = STATE(737), - [sym_for_statement] = STATE(737), - [aux_sym_translation_unit_repeat1] = STATE(737), - [sym_expression_statement] = STATE(737), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(1049), - [sym_union_specifier] = STATE(1049), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(737), - [sym_return_statement] = STATE(737), - [sym_preproc_call] = STATE(737), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_type_definition] = STATE(737), - [sym_cast_expression] = STATE(1047), - [sym__declaration_specifiers] = STATE(1212), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_break_statement] = STATE(737), - [sym__empty_declaration] = STATE(737), - [sym_sized_type_specifier] = STATE(1049), - [sym_enum_specifier] = STATE(1049), - [sym_labeled_statement] = STATE(737), - [sym_preproc_include] = STATE(737), - [sym_preproc_if] = STATE(737), - [sym_preproc_ifdef] = STATE(737), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(737), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(1049), - [sym_while_statement] = STATE(737), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(737), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(737), - [sym_struct_specifier] = STATE(1049), - [sym_goto_statement] = STATE(737), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_union] = ACTIONS(7), - [anon_sym___attribute__] = ACTIONS(19), - [sym_false] = ACTIONS(869), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(871), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [aux_sym_preproc_if_token2] = ACTIONS(1266), - [sym_preproc_directive] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(885), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [aux_sym_preproc_ifdef_token1] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(895), - [sym_number_literal] = ACTIONS(897), - [anon_sym_if] = ACTIONS(899), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(901), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(869), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), - [anon_sym_inline] = ACTIONS(9), + [sym_parameter_list] = STATE(251), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(923), }, [239] = { - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1270), - [sym_true] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [sym_false] = ACTIONS(1270), - [sym_null] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1270), - [sym_primitive_type] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_L] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1270), + [sym_abstract_parenthesized_declarator] = STATE(337), + [sym_abstract_array_declarator] = STATE(337), + [sym_parameter_list] = STATE(148), + [sym__abstract_declarator] = STATE(337), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_abstract_function_declarator] = STATE(337), + [sym_abstract_pointer_declarator] = STATE(337), + [sym_type_qualifier] = STATE(144), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(440), + [anon_sym_LPAREN2] = ACTIONS(442), + [anon_sym_restrict] = ACTIONS(440), + [anon_sym_volatile] = ACTIONS(440), + [anon_sym__Atomic] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(448), }, [240] = { - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1274), - [sym_true] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_L] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1274), + [sym_parameter_list] = STATE(251), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(923), }, [241] = { - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), + [sym_abstract_parenthesized_declarator] = STATE(338), + [sym_abstract_array_declarator] = STATE(338), + [sym_parameter_list] = STATE(148), + [sym__abstract_declarator] = STATE(338), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_abstract_function_declarator] = STATE(338), + [sym_abstract_pointer_declarator] = STATE(338), + [sym_type_qualifier] = STATE(144), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(440), + [anon_sym_LPAREN2] = ACTIONS(442), + [anon_sym_restrict] = ACTIONS(440), + [anon_sym_volatile] = ACTIONS(440), + [anon_sym__Atomic] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(448), }, [242] = { - [sym__expression] = STATE(342), - [sym_binary_expression] = STATE(342), - [sym_update_expression] = STATE(342), - [sym_call_expression] = STATE(37), - [sym_initializer_pair] = STATE(344), - [sym_subscript_designator] = STATE(343), - [sym_conditional_expression] = STATE(342), - [sym_assignment_expression] = STATE(342), - [sym_cast_expression] = STATE(342), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(342), - [sym_field_designator] = STATE(343), - [sym_char_literal] = STATE(342), - [aux_sym_initializer_pair_repeat1] = STATE(343), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(342), - [sym_sizeof_expression] = STATE(342), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_initializer_list] = STATE(344), - [sym_concatenated_string] = STATE(342), - [sym_string_literal] = STATE(42), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(1278), - [sym_false] = ACTIONS(1280), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1280), - [sym_null] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1272), + [anon_sym_COMMA] = ACTIONS(1272), + [anon_sym_COLON] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [sym_comment] = ACTIONS(3), }, [243] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_BANG_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_RBRACK] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_PERCENT] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_LT_EQ] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_parameter_list_repeat1] = STATE(341), + [anon_sym_RPAREN] = ACTIONS(1274), + [anon_sym_COMMA] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), }, [244] = { - [anon_sym_GT_GT] = ACTIONS(1294), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_DASH_GT] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_RBRACK] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_COLON] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1296), - }, - [245] = { - [sym_parameter_list] = STATE(258), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(672), + [sym_parameter_list] = STATE(251), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(923), }, - [246] = { - [sym_abstract_parenthesized_declarator] = STATE(345), + [245] = { + [sym_pointer_declarator] = STATE(346), [sym_abstract_array_declarator] = STATE(345), - [sym_parameter_list] = STATE(155), + [sym_parenthesized_declarator] = STATE(346), + [sym_parameter_list] = STATE(148), [sym__abstract_declarator] = STATE(345), - [aux_sym_type_definition_repeat1] = STATE(151), [sym_abstract_function_declarator] = STATE(345), + [sym_array_declarator] = STATE(346), + [sym__declarator] = STATE(346), [sym_abstract_pointer_declarator] = STATE(345), - [sym_type_qualifier] = STATE(151), - [anon_sym_const] = ACTIONS(458), - [anon_sym_LPAREN2] = ACTIONS(460), - [anon_sym_restrict] = ACTIONS(458), - [anon_sym_volatile] = ACTIONS(458), - [anon_sym__Atomic] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(464), + [sym_function_declarator] = STATE(346), + [sym_abstract_parenthesized_declarator] = STATE(345), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(448), + }, + [246] = { + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(165), }, [247] = { - [sym_parameter_list] = STATE(258), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(672), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_COMMA] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1290), }, [248] = { - [sym_abstract_parenthesized_declarator] = STATE(346), - [sym_abstract_array_declarator] = STATE(346), - [sym_parameter_list] = STATE(155), - [sym__abstract_declarator] = STATE(346), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_abstract_function_declarator] = STATE(346), - [sym_abstract_pointer_declarator] = STATE(346), - [sym_type_qualifier] = STATE(151), - [anon_sym_const] = ACTIONS(458), - [anon_sym_LPAREN2] = ACTIONS(460), - [anon_sym_restrict] = ACTIONS(458), - [anon_sym_volatile] = ACTIONS(458), - [anon_sym__Atomic] = ACTIONS(458), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(466), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [249] = { - [aux_sym_parameter_list_repeat1] = STATE(349), - [anon_sym_RPAREN] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1308), + [sym__expression] = STATE(350), + [sym_binary_expression] = STATE(350), + [sym_update_expression] = STATE(350), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(144), + [sym_conditional_expression] = STATE(350), + [sym_assignment_expression] = STATE(350), + [sym_cast_expression] = STATE(350), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(350), + [sym_char_literal] = STATE(350), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(350), + [sym_sizeof_expression] = STATE(350), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(350), + [sym_string_literal] = STATE(41), + [sym_true] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(33), }, [250] = { - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_COLON] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_RPAREN] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1310), + [sym__expression] = STATE(353), + [sym_binary_expression] = STATE(353), + [sym_update_expression] = STATE(353), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(354), + [sym_conditional_expression] = STATE(353), + [sym_assignment_expression] = STATE(353), + [sym_cast_expression] = STATE(353), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(353), + [sym_char_literal] = STATE(353), + [aux_sym_type_definition_repeat1] = STATE(354), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(353), + [sym_sizeof_expression] = STATE(353), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(353), + [sym_string_literal] = STATE(41), + [sym_true] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(33), }, [251] = { - [sym_parameter_list] = STATE(258), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(672), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_COMMA] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1308), }, [252] = { - [sym_pointer_declarator] = STATE(354), - [sym_abstract_array_declarator] = STATE(353), - [sym_parenthesized_declarator] = STATE(354), - [sym_parameter_list] = STATE(155), - [sym__abstract_declarator] = STATE(353), - [sym_abstract_function_declarator] = STATE(353), - [sym_array_declarator] = STATE(354), - [sym__declarator] = STATE(354), - [sym_abstract_pointer_declarator] = STATE(353), - [sym_function_declarator] = STATE(354), - [sym_abstract_parenthesized_declarator] = STATE(353), + [sym_parameter_list] = STATE(251), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(923), }, [253] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(189), + [sym_parameter_list] = STATE(260), + [anon_sym_LBRACK] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), }, [254] = { - [anon_sym_RPAREN] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1324), + [sym_type_qualifier] = STATE(144), + [sym_function_type_declarator] = STATE(355), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_pointer_type_declarator] = STATE(355), + [sym_parenthesized_type_declarator] = STATE(355), + [sym_array_type_declarator] = STATE(355), + [sym__type_declarator] = STATE(355), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(455), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(453), + [sym_identifier] = ACTIONS(927), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1324), }, [255] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_parameter_list] = STATE(260), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(935), }, [256] = { - [sym__expression] = STATE(358), - [sym_binary_expression] = STATE(358), - [sym_update_expression] = STATE(358), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(151), - [sym_conditional_expression] = STATE(358), - [sym_assignment_expression] = STATE(358), - [sym_cast_expression] = STATE(358), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(358), - [sym_char_literal] = STATE(358), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(358), - [sym_sizeof_expression] = STATE(358), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(358), - [sym_string_literal] = STATE(42), - [sym_false] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1326), - [sym_null] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_case] = ACTIONS(1316), + [sym_true] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [sym_null] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [ts_builtin_sym_end] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), }, [257] = { - [sym__expression] = STATE(361), - [sym_binary_expression] = STATE(361), - [sym_update_expression] = STATE(361), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(362), - [sym_conditional_expression] = STATE(361), - [sym_assignment_expression] = STATE(361), - [sym_cast_expression] = STATE(361), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(361), - [sym_char_literal] = STATE(361), - [aux_sym_type_definition_repeat1] = STATE(362), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(361), - [sym_sizeof_expression] = STATE(361), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(361), - [sym_string_literal] = STATE(42), - [sym_false] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1334), - [sym_null] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(25), + [sym_array_type_declarator] = STATE(357), + [sym_parenthesized_type_declarator] = STATE(357), + [sym_function_type_declarator] = STATE(357), + [sym__type_declarator] = STATE(357), + [sym_pointer_type_declarator] = STATE(357), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LPAREN2] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), + [sym_comment] = ACTIONS(3), }, [258] = { - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), + [sym__expression] = STATE(360), + [sym_binary_expression] = STATE(360), + [sym_update_expression] = STATE(360), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(361), + [sym_conditional_expression] = STATE(360), + [sym_assignment_expression] = STATE(360), + [sym_cast_expression] = STATE(360), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(360), + [sym_char_literal] = STATE(360), + [aux_sym_type_definition_repeat1] = STATE(361), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(360), + [sym_sizeof_expression] = STATE(360), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(360), + [sym_string_literal] = STATE(41), + [sym_true] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(33), }, [259] = { - [sym_parameter_list] = STATE(258), - [anon_sym_RPAREN] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(672), + [aux_sym_type_definition_repeat2] = STATE(363), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_COMMA] = ACTIONS(931), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(954), }, [260] = { - [sym_parameter_list] = STATE(267), - [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(1330), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_COMMA] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_COMMA] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), }, [261] = { - [sym_type_qualifier] = STATE(151), - [sym_function_type_declarator] = STATE(363), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_pointer_type_declarator] = STATE(363), - [sym_parenthesized_type_declarator] = STATE(363), - [sym_array_type_declarator] = STATE(363), - [sym__type_declarator] = STATE(363), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(473), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(960), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(471), + [aux_sym_type_definition_repeat2] = STATE(365), + [sym_parameter_list] = STATE(260), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(935), }, [262] = { - [sym_parameter_list] = STATE(267), - [anon_sym_RPAREN] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(672), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_COLON] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1336), }, [263] = { - [anon_sym_case] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [anon_sym_L] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [sym_true] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [sym_null] = ACTIONS(1350), - [ts_builtin_sym_end] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), + [sym_char_literal] = STATE(367), + [sym__expression] = STATE(367), + [sym_comma_expression] = STATE(368), + [sym_binary_expression] = STATE(367), + [sym_update_expression] = STATE(367), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(367), + [sym_sizeof_expression] = STATE(367), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(367), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(367), + [sym_assignment_expression] = STATE(367), + [sym_cast_expression] = STATE(367), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(367), + [sym_true] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(33), }, [264] = { - [sym_array_type_declarator] = STATE(365), - [sym_parenthesized_type_declarator] = STATE(365), - [sym_function_type_declarator] = STATE(365), - [sym__type_declarator] = STATE(365), - [sym_pointer_type_declarator] = STATE(365), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(475), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [265] = { - [sym__expression] = STATE(368), - [sym_binary_expression] = STATE(368), - [sym_update_expression] = STATE(368), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(369), - [sym_conditional_expression] = STATE(368), - [sym_assignment_expression] = STATE(368), - [sym_cast_expression] = STATE(368), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(368), - [sym_char_literal] = STATE(368), - [aux_sym_type_definition_repeat1] = STATE(369), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(368), - [sym_sizeof_expression] = STATE(368), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(368), - [sym_string_literal] = STATE(42), - [sym_false] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1354), - [sym_null] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(371), + [sym__expression] = STATE(371), + [sym_binary_expression] = STATE(371), + [sym_update_expression] = STATE(371), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(371), + [sym_sizeof_expression] = STATE(371), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(371), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(371), + [sym_assignment_expression] = STATE(371), + [sym_cast_expression] = STATE(371), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(371), + [sym_true] = ACTIONS(1346), + [sym_null] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [266] = { - [aux_sym_type_definition_repeat2] = STATE(371), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1362), + [sym_char_literal] = STATE(373), + [sym__expression] = STATE(373), + [sym_comma_expression] = STATE(374), + [sym_binary_expression] = STATE(373), + [sym_update_expression] = STATE(373), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(373), + [sym_sizeof_expression] = STATE(373), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(373), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(373), + [sym_assignment_expression] = STATE(373), + [sym_cast_expression] = STATE(373), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(373), + [sym_true] = ACTIONS(1352), + [sym_null] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(33), }, [267] = { - [anon_sym_LBRACK] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_RPAREN] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [268] = { - [aux_sym_type_definition_repeat2] = STATE(373), - [sym_parameter_list] = STATE(267), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1366), + [aux_sym_declaration_repeat1] = STATE(215), + [sym_parameter_list] = STATE(213), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(650), }, [269] = { - [sym_char_literal] = STATE(375), - [sym__expression] = STATE(375), - [sym_comma_expression] = STATE(376), - [sym_binary_expression] = STATE(375), - [sym_update_expression] = STATE(375), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(375), - [sym_sizeof_expression] = STATE(375), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(375), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(375), - [sym_assignment_expression] = STATE(375), - [sym_cast_expression] = STATE(375), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(375), - [sym_false] = ACTIONS(1368), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1368), - [sym_null] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [sym_null] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [ts_builtin_sym_end] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), }, [270] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_true] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [sym_null] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [ts_builtin_sym_end] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), }, [271] = { + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + }, + [272] = { + [sym_true] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [sym_null] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [ts_builtin_sym_end] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + }, + [273] = { + [sym_if_statement] = STATE(532), + [sym_preproc_def] = STATE(532), + [sym_preproc_function_def] = STATE(532), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(532), + [sym_declaration] = STATE(532), + [sym_do_statement] = STATE(532), + [sym_for_statement] = STATE(532), + [aux_sym_translation_unit_repeat1] = STATE(532), + [sym_expression_statement] = STATE(532), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(868), + [sym_union_specifier] = STATE(868), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(532), + [sym_return_statement] = STATE(532), + [sym_preproc_call] = STATE(532), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(532), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_break_statement] = STATE(532), + [sym__empty_declaration] = STATE(532), + [sym_sized_type_specifier] = STATE(868), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(532), + [sym_preproc_include] = STATE(532), + [sym_preproc_if] = STATE(532), + [sym_preproc_ifdef] = STATE(532), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(532), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(868), + [sym_while_statement] = STATE(532), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(532), + [sym_struct_specifier] = STATE(868), + [sym_goto_statement] = STATE(532), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + }, + [274] = { + [sym_if_statement] = STATE(378), + [sym_do_statement] = STATE(378), + [sym_for_statement] = STATE(378), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(378), + [sym_return_statement] = STATE(378), + [sym_break_statement] = STATE(378), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(378), + [sym_while_statement] = STATE(378), + [sym_continue_statement] = STATE(378), + [sym_goto_statement] = STATE(378), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(378), + [sym_expression_statement] = STATE(378), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [275] = { [sym_char_literal] = STATE(379), [sym__expression] = STATE(379), [sym_binary_expression] = STATE(379), [sym_update_expression] = STATE(379), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(379), [sym_sizeof_expression] = STATE(379), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(379), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(379), [sym_assignment_expression] = STATE(379), [sym_cast_expression] = STATE(379), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(379), - [sym_false] = ACTIONS(1376), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_BANG] = ACTIONS(47), [sym_true] = ACTIONS(1376), [sym_null] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [272] = { - [sym_char_literal] = STATE(381), - [sym__expression] = STATE(381), - [sym_comma_expression] = STATE(382), - [sym_binary_expression] = STATE(381), - [sym_update_expression] = STATE(381), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(381), - [sym_sizeof_expression] = STATE(381), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(381), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(381), - [sym_assignment_expression] = STATE(381), - [sym_cast_expression] = STATE(381), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(381), - [sym_false] = ACTIONS(1382), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1382), - [sym_null] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(25), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [273] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [276] = { + [anon_sym_case] = ACTIONS(1380), + [sym_true] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [sym_null] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [ts_builtin_sym_end] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), }, - [274] = { - [aux_sym_declaration_repeat1] = STATE(221), - [sym_parameter_list] = STATE(219), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), + [277] = { + [anon_sym_COLON] = ACTIONS(1384), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(670), }, - [275] = { - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), + [278] = { + [sym_if_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(382), + [aux_sym_switch_body_repeat1] = STATE(382), + [sym_expression_statement] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [279] = { + [sym_char_literal] = STATE(383), + [sym__expression] = STATE(383), + [sym_binary_expression] = STATE(383), + [sym_update_expression] = STATE(383), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(383), + [sym_sizeof_expression] = STATE(383), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(383), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(383), + [sym_assignment_expression] = STATE(383), + [sym_cast_expression] = STATE(383), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(383), + [anon_sym_BANG] = ACTIONS(47), + [sym_true] = ACTIONS(1388), + [sym_null] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [280] = { [anon_sym_restrict] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_null] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1392), - [sym_primitive_type] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_COMMA] = ACTIONS(1394), [anon_sym_static] = ACTIONS(1392), [anon_sym_volatile] = ACTIONS(1392), [anon_sym_register] = ACTIONS(1392), [anon_sym_extern] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_COLON] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1392), [anon_sym_auto] = ACTIONS(1392), - [anon_sym_L] = ACTIONS(1392), + [anon_sym_RPAREN] = ACTIONS(1394), [anon_sym_inline] = ACTIONS(1392), [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1392), - }, - [276] = { - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_restrict] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_null] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1396), - [anon_sym_do] = ACTIONS(1396), - [anon_sym_goto] = ACTIONS(1396), - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1396), - [sym_primitive_type] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_volatile] = ACTIONS(1396), - [anon_sym_register] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_auto] = ACTIONS(1396), - [anon_sym_L] = ACTIONS(1396), - [anon_sym_inline] = ACTIONS(1396), - [anon_sym___attribute__] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), }, - [277] = { - [aux_sym_preproc_if_token2] = ACTIONS(1398), + [281] = { + [sym_enumerator] = STATE(385), + [sym_identifier] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [278] = { - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [sym_null] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1400), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym__Atomic] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1400), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_L] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1402), + [282] = { + [aux_sym_enumerator_list_repeat1] = STATE(387), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_if_statement] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(541), - [sym_declaration] = STATE(541), - [sym_do_statement] = STATE(541), - [sym_for_statement] = STATE(541), - [aux_sym_translation_unit_repeat1] = STATE(541), - [sym_expression_statement] = STATE(541), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(883), - [sym_union_specifier] = STATE(883), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(541), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_break_statement] = STATE(541), - [sym__empty_declaration] = STATE(541), - [sym_sized_type_specifier] = STATE(883), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(541), - [sym_preproc_include] = STATE(541), - [sym_preproc_if] = STATE(541), - [sym_preproc_ifdef] = STATE(541), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(541), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(883), - [sym_while_statement] = STATE(541), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(541), - [sym_struct_specifier] = STATE(883), - [sym_goto_statement] = STATE(541), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym___attribute__] = ACTIONS(19), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(95), - [sym_number_literal] = ACTIONS(93), - [anon_sym_if] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(83), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_SQUOTE] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), - [anon_sym_inline] = ACTIONS(9), + [283] = { + [sym_true] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), }, - [280] = { - [sym_if_statement] = STATE(386), - [sym_do_statement] = STATE(386), - [sym_for_statement] = STATE(386), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(386), - [sym_return_statement] = STATE(386), - [sym_break_statement] = STATE(386), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(386), - [sym_while_statement] = STATE(386), - [sym_continue_statement] = STATE(386), - [sym_goto_statement] = STATE(386), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(386), - [sym_expression_statement] = STATE(386), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [284] = { + [aux_sym_preproc_params_repeat1] = STATE(390), + [anon_sym_COMMA] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), }, - [281] = { - [sym_char_literal] = STATE(387), - [sym__expression] = STATE(387), - [sym_binary_expression] = STATE(387), - [sym_update_expression] = STATE(387), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(387), - [sym_sizeof_expression] = STATE(387), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(387), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(387), - [sym_assignment_expression] = STATE(387), - [sym_cast_expression] = STATE(387), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(387), - [anon_sym_BANG] = ACTIONS(33), - [sym_false] = ACTIONS(1406), - [sym_identifier] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(29), - [sym_true] = ACTIONS(1406), - [sym_null] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(25), + [285] = { + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(1408), + [sym_preproc_arg] = ACTIONS(1408), }, - [282] = { - [anon_sym_case] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), + [286] = { + [sym_true] = ACTIONS(1410), [anon_sym_restrict] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), + [sym_null] = ACTIONS(1410), [anon_sym_goto] = ACTIONS(1410), [anon_sym_const] = ACTIONS(1410), [anon_sym_typedef] = ACTIONS(1410), [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1410), [anon_sym__Atomic] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), [sym_number_literal] = ACTIONS(1412), [anon_sym_volatile] = ACTIONS(1410), @@ -14668,10 +15012,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1412), [anon_sym_struct] = ACTIONS(1410), [anon_sym_signed] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), [anon_sym_long] = ACTIONS(1410), [anon_sym_while] = ACTIONS(1410), [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [anon_sym_L] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1412), [anon_sym___attribute__] = ACTIONS(1410), [anon_sym_sizeof] = ACTIONS(1410), [anon_sym_LBRACE] = ACTIONS(1412), @@ -14683,10 +15028,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1412), [aux_sym_preproc_if_token1] = ACTIONS(1410), [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_else] = ACTIONS(1410), [sym_primitive_type] = ACTIONS(1410), [anon_sym_for] = ACTIONS(1410), [anon_sym_break] = ACTIONS(1410), @@ -14694,13 +15037,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(1410), [anon_sym_DASH] = ACTIONS(1410), [anon_sym_static] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_register] = ACTIONS(1410), [anon_sym_STAR] = ACTIONS(1412), [anon_sym_if] = ACTIONS(1410), [anon_sym_switch] = ACTIONS(1410), - [sym_true] = ACTIONS(1410), [anon_sym_enum] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), [ts_builtin_sym_end] = ACTIONS(1412), [anon_sym_return] = ACTIONS(1410), [anon_sym_continue] = ACTIONS(1410), @@ -14710,2265 +15053,2435 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1410), [anon_sym_inline] = ACTIONS(1410), }, - [283] = { - [anon_sym_COLON] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [284] = { - [sym_if_statement] = STATE(390), - [sym_do_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(390), - [sym_return_statement] = STATE(390), - [sym_break_statement] = STATE(390), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_continue_statement] = STATE(390), - [sym_goto_statement] = STATE(390), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(390), - [aux_sym_switch_body_repeat1] = STATE(390), - [sym_expression_statement] = STATE(390), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [285] = { - [sym_char_literal] = STATE(391), - [sym__expression] = STATE(391), - [sym_binary_expression] = STATE(391), - [sym_update_expression] = STATE(391), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(391), - [sym_sizeof_expression] = STATE(391), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(391), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(391), - [sym_assignment_expression] = STATE(391), - [sym_cast_expression] = STATE(391), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(391), - [anon_sym_BANG] = ACTIONS(33), - [sym_false] = ACTIONS(1418), - [sym_identifier] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(29), - [sym_true] = ACTIONS(1418), - [sym_null] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(25), - }, - [286] = { - [anon_sym_restrict] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_COLON] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_RPAREN] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1424), - }, [287] = { - [sym_enumerator] = STATE(393), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LF] = ACTIONS(1414), + [sym_comment] = ACTIONS(147), }, [288] = { - [aux_sym_enumerator_list_repeat1] = STATE(395), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_RPAREN] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1416), }, [289] = { - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1432), - [sym_true] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [sym_null] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_L] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1432), + [sym_char_literal] = STATE(236), + [sym__expression] = STATE(236), + [sym_binary_expression] = STATE(236), + [sym_update_expression] = STATE(236), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(236), + [sym_sizeof_expression] = STATE(236), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_initializer_list] = STATE(237), + [sym_concatenated_string] = STATE(236), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(236), + [sym_assignment_expression] = STATE(236), + [sym_cast_expression] = STATE(236), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(236), + [anon_sym_GT_GT] = ACTIONS(1420), + [sym_true] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_EQ_EQ] = ACTIONS(1420), + [anon_sym_SLASH] = ACTIONS(1422), + [anon_sym_DASH_GT] = ACTIONS(1420), + [anon_sym_LT_LT] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_QMARK] = ACTIONS(1420), + [anon_sym_BANG_EQ] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(890), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_GT] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_GT_EQ] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_COLON] = ACTIONS(1420), + [anon_sym_PIPE_PIPE] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_LT_EQ] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(43), + [sym_false] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(1422), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1420), }, [290] = { - [aux_sym_preproc_params_repeat1] = STATE(398), - [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_PERCENT_EQ] = ACTIONS(1428), + [anon_sym_DASH_EQ] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_EQ_EQ] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_DASH_GT] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_EQ] = ACTIONS(1428), + [anon_sym_LT_LT_EQ] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_BANG_EQ] = ACTIONS(1428), + [anon_sym_CARET_EQ] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_PIPE_EQ] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_AMP_EQ] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_GT_EQ] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_COLON] = ACTIONS(1428), + [anon_sym_STAR_EQ] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_LT_EQ] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_SLASH_EQ] = ACTIONS(1428), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1428), }, [291] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(1438), - [sym_preproc_arg] = ACTIONS(1438), + [sym_char_literal] = STATE(392), + [sym__expression] = STATE(392), + [sym_binary_expression] = STATE(392), + [sym_update_expression] = STATE(392), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(392), + [sym_sizeof_expression] = STATE(392), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(392), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(392), + [sym_assignment_expression] = STATE(392), + [sym_cast_expression] = STATE(392), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(392), + [anon_sym_BANG] = ACTIONS(47), + [sym_true] = ACTIONS(1430), + [sym_null] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [292] = { - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1442), - [sym_true] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [sym_null] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_L] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym_GT_GT] = ACTIONS(1434), + [anon_sym_PERCENT_EQ] = ACTIONS(1436), + [anon_sym_DASH_EQ] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_EQ_EQ] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1434), + [anon_sym_DASH_GT] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1436), + [anon_sym_LT_LT_EQ] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_BANG_EQ] = ACTIONS(1436), + [anon_sym_CARET_EQ] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_PIPE_EQ] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_AMP_EQ] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_COLON] = ACTIONS(1436), + [anon_sym_STAR_EQ] = ACTIONS(1436), + [anon_sym_PIPE_PIPE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1436), + [anon_sym_AMP_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1436), }, [293] = { - [anon_sym_LF] = ACTIONS(1444), - [sym_comment] = ACTIONS(171), + [aux_sym_argument_list_repeat1] = STATE(394), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1094), + [sym_comment] = ACTIONS(3), }, [294] = { - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_PERCENT_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_EQ_EQ] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1446), - [anon_sym_DASH_GT] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_LT_LT_EQ] = ACTIONS(1448), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_BANG_EQ] = ACTIONS(1448), - [anon_sym_CARET_EQ] = ACTIONS(1448), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_GT_GT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1446), - [anon_sym_PIPE_EQ] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_RBRACK] = ACTIONS(1448), - [anon_sym_AMP_EQ] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_COLON] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_PIPE_PIPE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_CARET] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1448), + [sym_char_literal] = STATE(395), + [sym__expression] = STATE(395), + [sym_binary_expression] = STATE(395), + [sym_update_expression] = STATE(395), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(395), + [sym_sizeof_expression] = STATE(395), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(395), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(395), + [sym_assignment_expression] = STATE(395), + [sym_cast_expression] = STATE(395), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(395), + [sym_true] = ACTIONS(1440), + [sym_null] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [295] = { - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1452), - [anon_sym_DASH_EQ] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_EQ_EQ] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1450), - [anon_sym_DASH_GT] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1450), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1452), - [anon_sym_LT_LT_EQ] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1452), - [anon_sym_BANG_EQ] = ACTIONS(1452), - [anon_sym_CARET_EQ] = ACTIONS(1452), - [anon_sym_COMMA] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1452), - [anon_sym_GT] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1452), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_L] = ACTIONS(1450), - [anon_sym_RBRACK] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_COLON] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1452), + [sym_parameter_list] = STATE(213), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(650), }, [296] = { - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1456), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_COLON] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), }, [297] = { - [sym_char_literal] = STATE(243), - [sym__expression] = STATE(243), - [sym_binary_expression] = STATE(243), - [sym_update_expression] = STATE(243), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(243), - [sym_sizeof_expression] = STATE(243), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_initializer_list] = STATE(244), - [sym_concatenated_string] = STATE(243), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(243), - [sym_assignment_expression] = STATE(243), - [sym_cast_expression] = STATE(243), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(243), - [anon_sym_GT_GT] = ACTIONS(1458), - [sym_false] = ACTIONS(919), - [sym_identifier] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_SLASH] = ACTIONS(1460), - [anon_sym_DASH_GT] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(1458), - [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_COMMA] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_PERCENT] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_COLON] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(29), - [sym_true] = ACTIONS(919), - [sym_null] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1458), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [298] = { - [anon_sym_GT_GT] = ACTIONS(1464), - [anon_sym_PERCENT_EQ] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_DASH_GT] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_LT_LT_EQ] = ACTIONS(1466), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_BANG_EQ] = ACTIONS(1466), - [anon_sym_CARET_EQ] = ACTIONS(1466), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_GT_GT_EQ] = ACTIONS(1466), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_PIPE_EQ] = ACTIONS(1466), - [anon_sym_RPAREN] = ACTIONS(1466), - [anon_sym_RBRACK] = ACTIONS(1466), - [anon_sym_AMP_EQ] = ACTIONS(1466), - [anon_sym_PERCENT] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_COLON] = ACTIONS(1466), - [anon_sym_STAR_EQ] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1466), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), }, [299] = { - [sym_char_literal] = STATE(400), - [sym__expression] = STATE(400), - [sym_binary_expression] = STATE(400), - [sym_update_expression] = STATE(400), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(400), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(400), - [anon_sym_BANG] = ACTIONS(33), - [sym_false] = ACTIONS(1468), - [sym_identifier] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(29), - [sym_true] = ACTIONS(1468), - [sym_null] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(25), + [sym_parameter_list] = STATE(213), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(648), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(650), }, [300] = { - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_PERCENT_EQ] = ACTIONS(1474), - [anon_sym_DASH_EQ] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_EQ_EQ] = ACTIONS(1474), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym_DASH_GT] = ACTIONS(1474), - [anon_sym_LT_LT] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1474), - [anon_sym_LT_LT_EQ] = ACTIONS(1474), - [anon_sym_QMARK] = ACTIONS(1474), - [anon_sym_BANG_EQ] = ACTIONS(1474), - [anon_sym_CARET_EQ] = ACTIONS(1474), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_GT_GT_EQ] = ACTIONS(1474), - [anon_sym_GT] = ACTIONS(1472), - [anon_sym_PIPE_EQ] = ACTIONS(1474), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_RBRACK] = ACTIONS(1474), - [anon_sym_AMP_EQ] = ACTIONS(1474), - [anon_sym_PERCENT] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_GT_EQ] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_COLON] = ACTIONS(1474), - [anon_sym_STAR_EQ] = ACTIONS(1474), - [anon_sym_PIPE_PIPE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_LT_EQ] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1474), - [anon_sym_AMP_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), }, [301] = { - [aux_sym_argument_list_repeat1] = STATE(402), - [anon_sym_RPAREN] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1121), + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(165), }, [302] = { - [sym_char_literal] = STATE(403), - [sym__expression] = STATE(403), - [sym_binary_expression] = STATE(403), - [sym_update_expression] = STATE(403), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(403), - [sym_sizeof_expression] = STATE(403), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(403), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(403), - [sym_assignment_expression] = STATE(403), - [sym_cast_expression] = STATE(403), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(403), - [sym_false] = ACTIONS(1478), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1478), - [sym_null] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), }, [303] = { - [sym_parameter_list] = STATE(219), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_EQ] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(670), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [304] = { - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_EQ] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), + [sym__expression] = STATE(399), + [sym_binary_expression] = STATE(399), + [sym_update_expression] = STATE(399), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(144), + [sym_conditional_expression] = STATE(399), + [sym_assignment_expression] = STATE(399), + [sym_cast_expression] = STATE(399), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(399), + [sym_char_literal] = STATE(399), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(399), + [sym_sizeof_expression] = STATE(399), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(399), + [sym_string_literal] = STATE(41), + [sym_true] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(33), }, [305] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_COMMA] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_attribute_specifier] = STATE(400), + [aux_sym_function_declarator_repeat1] = STATE(400), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1464), }, [306] = { - [anon_sym_COMMA] = ACTIONS(1486), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [sym_null] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), }, [307] = { - [sym_parameter_list] = STATE(219), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_EQ] = ACTIONS(668), + [aux_sym_declaration_repeat1] = STATE(307), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1473), }, [308] = { - [anon_sym_COMMA] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1488), + [sym_preproc_def] = STATE(401), + [sym_preproc_function_def] = STATE(401), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(401), + [sym_field_declaration] = STATE(401), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(401), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(401), + [sym_preproc_if_in_field_declaration_list] = STATE(401), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(401), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(968), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_if_token2] = ACTIONS(1477), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1479), + [aux_sym_preproc_if_token1] = ACTIONS(1481), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1475), + [aux_sym_preproc_def_token1] = ACTIONS(1483), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [309] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), + [anon_sym_union] = ACTIONS(1485), + [anon_sym_unsigned] = ACTIONS(1485), + [anon_sym_restrict] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_volatile] = ACTIONS(1485), + [anon_sym_register] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1485), + [anon_sym_struct] = ACTIONS(1485), + [sym_preproc_directive] = ACTIONS(1485), + [anon_sym_signed] = ACTIONS(1485), + [aux_sym_preproc_if_token1] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), + [aux_sym_preproc_def_token1] = ACTIONS(1485), + [anon_sym__Atomic] = ACTIONS(1485), + [anon_sym_auto] = ACTIONS(1485), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_inline] = ACTIONS(1485), + [anon_sym___attribute__] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1485), }, [310] = { - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_EQ] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), + [sym_preproc_arg] = ACTIONS(1489), + [sym_comment] = ACTIONS(147), }, [311] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [sym_preproc_else_in_field_declaration_list] = STATE(404), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(404), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(1491), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [312] = { - [sym__expression] = STATE(407), - [sym_binary_expression] = STATE(407), - [sym_update_expression] = STATE(407), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(151), - [sym_conditional_expression] = STATE(407), - [sym_assignment_expression] = STATE(407), - [sym_cast_expression] = STATE(407), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(407), - [sym_char_literal] = STATE(407), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(407), - [sym_sizeof_expression] = STATE(407), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(407), - [sym_string_literal] = STATE(42), - [sym_false] = ACTIONS(1494), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1494), - [sym_null] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1500), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_preproc_if_token2] = ACTIONS(1493), + [sym_comment] = ACTIONS(3), }, [313] = { - [sym_attribute_specifier] = STATE(408), - [aux_sym_function_declarator_repeat1] = STATE(408), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1502), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_COMMA] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym___attribute__] = ACTIONS(1153), - [anon_sym_LBRACK] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_unsigned] = ACTIONS(1495), + [anon_sym_restrict] = ACTIONS(1495), + [anon_sym_short] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_volatile] = ACTIONS(1495), + [anon_sym_register] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(1495), + [anon_sym_struct] = ACTIONS(1495), + [sym_preproc_directive] = ACTIONS(1495), + [anon_sym_signed] = ACTIONS(1495), + [aux_sym_preproc_if_token1] = ACTIONS(1495), + [anon_sym_long] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1495), + [aux_sym_preproc_def_token1] = ACTIONS(1495), + [anon_sym__Atomic] = ACTIONS(1495), + [anon_sym_auto] = ACTIONS(1495), + [sym_primitive_type] = ACTIONS(1495), + [anon_sym_inline] = ACTIONS(1495), + [anon_sym___attribute__] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1495), }, [314] = { - [anon_sym_case] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [anon_sym_L] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1506), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1506), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [sym_true] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [sym_null] = ACTIONS(1504), - [ts_builtin_sym_end] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [sym_preproc_else_in_field_declaration_list] = STATE(407), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(407), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(1499), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [315] = { - [aux_sym_declaration_repeat1] = STATE(315), - [anon_sym_COMMA] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1501), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1511), }, [316] = { - [sym_preproc_def] = STATE(409), - [sym_preproc_function_def] = STATE(409), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(409), - [sym_field_declaration] = STATE(409), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(409), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(409), - [sym_preproc_if_in_field_declaration_list] = STATE(409), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(409), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(985), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_if_token2] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1519), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), - [aux_sym_preproc_def_token1] = ACTIONS(1521), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_function_field_declarator] = STATE(409), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_pointer_field_declarator] = STATE(409), + [sym_parenthesized_field_declarator] = STATE(409), + [sym__field_declarator] = STATE(409), + [sym_array_field_declarator] = STATE(409), + [sym_type_qualifier] = STATE(144), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(808), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(806), + [sym_identifier] = ACTIONS(1206), [sym_comment] = ACTIONS(3), }, [317] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_unsigned] = ACTIONS(1523), - [anon_sym_restrict] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_volatile] = ACTIONS(1523), - [anon_sym_register] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(1523), - [sym_identifier] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [sym_preproc_directive] = ACTIONS(1523), - [anon_sym_signed] = ACTIONS(1523), - [aux_sym_preproc_if_token1] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1523), - [aux_sym_preproc_def_token1] = ACTIONS(1523), - [anon_sym__Atomic] = ACTIONS(1523), - [anon_sym_auto] = ACTIONS(1523), - [sym_primitive_type] = ACTIONS(1523), - [anon_sym_inline] = ACTIONS(1523), - [anon_sym___attribute__] = ACTIONS(1523), + [sym_parameter_list] = STATE(326), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_COLON] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1220), }, [318] = { - [sym_preproc_arg] = ACTIONS(1527), - [sym_comment] = ACTIONS(171), + [sym_parameter_list] = STATE(326), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(1220), }, [319] = { - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(569), - [sym_field_declaration] = STATE(569), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), - [sym_preproc_else_in_field_declaration_list] = STATE(412), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(412), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_field_declaration_list] = STATE(569), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [320] = { - [aux_sym_preproc_if_token2] = ACTIONS(1531), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_restrict] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [sym_preproc_directive] = ACTIONS(1509), + [anon_sym_signed] = ACTIONS(1509), + [aux_sym_preproc_if_token1] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), + [aux_sym_preproc_def_token1] = ACTIONS(1509), + [anon_sym__Atomic] = ACTIONS(1509), + [anon_sym_auto] = ACTIONS(1509), + [sym_primitive_type] = ACTIONS(1509), + [anon_sym_inline] = ACTIONS(1509), + [anon_sym___attribute__] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1509), }, [321] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_RBRACE] = ACTIONS(1535), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_def_token1] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_auto] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_unsigned] = ACTIONS(1513), + [anon_sym_restrict] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_volatile] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [sym_preproc_directive] = ACTIONS(1513), + [anon_sym_signed] = ACTIONS(1513), + [aux_sym_preproc_if_token1] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1515), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), + [aux_sym_preproc_def_token1] = ACTIONS(1513), + [anon_sym__Atomic] = ACTIONS(1513), + [anon_sym_auto] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1513), + [anon_sym_inline] = ACTIONS(1513), + [anon_sym___attribute__] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1513), }, [322] = { - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(569), - [sym_field_declaration] = STATE(569), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), - [sym_preproc_else_in_field_declaration_list] = STATE(415), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(415), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_field_declaration_list] = STATE(569), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(1537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_parenthesized_field_declarator] = STATE(411), + [sym_function_field_declarator] = STATE(411), + [sym_pointer_field_declarator] = STATE(411), + [sym_array_field_declarator] = STATE(411), + [sym__field_declarator] = STATE(411), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_LPAREN2] = ACTIONS(808), + [sym_identifier] = ACTIONS(810), [sym_comment] = ACTIONS(3), }, [323] = { - [aux_sym_preproc_if_token2] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), + [sym__expression] = STATE(414), + [sym_binary_expression] = STATE(414), + [sym_update_expression] = STATE(414), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(415), + [sym_conditional_expression] = STATE(414), + [sym_assignment_expression] = STATE(414), + [sym_cast_expression] = STATE(414), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(414), + [sym_char_literal] = STATE(414), + [aux_sym_type_definition_repeat1] = STATE(415), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(414), + [sym_sizeof_expression] = STATE(414), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(414), + [sym_string_literal] = STATE(41), + [sym_true] = ACTIONS(1517), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1519), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(33), }, [324] = { - [sym_function_field_declarator] = STATE(417), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_pointer_field_declarator] = STATE(417), - [sym_parenthesized_field_declarator] = STATE(417), - [sym__field_declarator] = STATE(417), - [sym_array_field_declarator] = STATE(417), - [sym_type_qualifier] = STATE(151), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(831), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(829), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1525), }, [325] = { - [sym_parameter_list] = STATE(334), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1541), - [anon_sym_COLON] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1541), + [sym_bitfield_clause] = STATE(417), + [aux_sym_field_declaration_repeat1] = STATE(418), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(1525), }, [326] = { - [sym_parameter_list] = STATE(334), - [anon_sym_RPAREN] = ACTIONS(1543), - [anon_sym_LPAREN2] = ACTIONS(672), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), }, [327] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), + [aux_sym_preproc_if_token2] = ACTIONS(1529), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), }, [328] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [sym_preproc_directive] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [aux_sym_preproc_if_token1] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1547), - [aux_sym_preproc_def_token1] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(635), + [sym_declaration] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_preproc_else] = STATE(419), + [sym_preproc_elif] = STATE(419), + [aux_sym_translation_unit_repeat1] = STATE(635), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(635), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(635), + [sym__empty_declaration] = STATE(635), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(635), + [sym_preproc_include] = STATE(635), + [sym_preproc_if] = STATE(635), + [sym_preproc_ifdef] = STATE(635), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(635), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(635), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(635), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(635), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [329] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1551), - [anon_sym_union] = ACTIONS(1551), - [anon_sym_unsigned] = ACTIONS(1551), - [anon_sym_restrict] = ACTIONS(1551), - [anon_sym_short] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_volatile] = ACTIONS(1551), - [anon_sym_register] = ACTIONS(1551), - [anon_sym_extern] = ACTIONS(1551), - [sym_identifier] = ACTIONS(1551), - [anon_sym_struct] = ACTIONS(1551), - [sym_preproc_directive] = ACTIONS(1551), - [anon_sym_signed] = ACTIONS(1551), - [aux_sym_preproc_if_token1] = ACTIONS(1551), - [anon_sym_long] = ACTIONS(1551), - [anon_sym_enum] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1551), - [aux_sym_preproc_def_token1] = ACTIONS(1551), - [anon_sym__Atomic] = ACTIONS(1551), - [anon_sym_auto] = ACTIONS(1551), - [sym_primitive_type] = ACTIONS(1551), - [anon_sym_inline] = ACTIONS(1551), - [anon_sym___attribute__] = ACTIONS(1551), + [sym_true] = ACTIONS(1533), + [anon_sym_restrict] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [anon_sym_goto] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_typedef] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym__Atomic] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), + [sym_number_literal] = ACTIONS(1535), + [anon_sym_volatile] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_extern] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_signed] = ACTIONS(1533), [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), + [anon_sym_L_SQUOTE] = ACTIONS(1535), + [anon_sym___attribute__] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_union] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [sym_preproc_directive] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1535), + [aux_sym_preproc_if_token1] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_L_DQUOTE] = ACTIONS(1535), + [anon_sym_LPAREN2] = ACTIONS(1535), + [sym_primitive_type] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [aux_sym_preproc_include_token1] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_register] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [ts_builtin_sym_end] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [aux_sym_preproc_def_token1] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_auto] = ACTIONS(1533), + [anon_sym_inline] = ACTIONS(1533), }, [330] = { - [sym_parenthesized_field_declarator] = STATE(419), - [sym_function_field_declarator] = STATE(419), - [sym_pointer_field_declarator] = STATE(419), - [sym_array_field_declarator] = STATE(419), - [sym__field_declarator] = STATE(419), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_LPAREN2] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(833), + [sym_char_literal] = STATE(420), + [sym__expression] = STATE(420), + [sym_binary_expression] = STATE(420), + [sym_update_expression] = STATE(420), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(420), + [sym_sizeof_expression] = STATE(420), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(420), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(420), + [sym_assignment_expression] = STATE(420), + [sym_cast_expression] = STATE(420), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(420), + [anon_sym_BANG] = ACTIONS(47), + [sym_true] = ACTIONS(1537), + [sym_null] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1537), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [331] = { - [sym__expression] = STATE(422), - [sym_binary_expression] = STATE(422), - [sym_update_expression] = STATE(422), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(423), - [sym_conditional_expression] = STATE(422), - [sym_assignment_expression] = STATE(422), - [sym_cast_expression] = STATE(422), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(422), - [sym_char_literal] = STATE(422), - [aux_sym_type_definition_repeat1] = STATE(423), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(422), - [sym_sizeof_expression] = STATE(422), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(422), - [sym_string_literal] = STATE(42), - [sym_false] = ACTIONS(1555), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1555), - [sym_null] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1561), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1541), + [sym_comment] = ACTIONS(3), }, [332] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1545), + [anon_sym_DASH_EQ] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1543), + [anon_sym_DASH_GT] = ACTIONS(1545), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1545), + [anon_sym_LT_LT_EQ] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_CARET_EQ] = ACTIONS(1545), + [anon_sym_COMMA] = ACTIONS(1545), + [anon_sym_PLUS_PLUS] = ACTIONS(1545), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_AMP_EQ] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_COLON] = ACTIONS(1545), + [anon_sym_STAR_EQ] = ACTIONS(1545), + [anon_sym_PIPE_PIPE] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1545), }, [333] = { - [sym_bitfield_clause] = STATE(425), - [aux_sym_field_declaration_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(1547), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1252), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(1563), }, [334] = { - [anon_sym_LPAREN2] = ACTIONS(1565), - [anon_sym_COMMA] = ACTIONS(1565), - [anon_sym_COLON] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1565), + [sym_argument_list] = STATE(111), + [aux_sym_initializer_list_repeat1] = STATE(424), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [335] = { - [aux_sym_preproc_if_token2] = ACTIONS(1567), + [aux_sym_initializer_pair_repeat1] = STATE(426), + [sym_subscript_designator] = STATE(426), + [sym_field_designator] = STATE(426), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1244), }, [336] = { - [sym_if_statement] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(646), - [sym_declaration] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym_preproc_else] = STATE(427), - [sym_preproc_elif] = STATE(427), - [aux_sym_translation_unit_repeat1] = STATE(646), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(646), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(646), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(646), - [sym__empty_declaration] = STATE(646), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(646), - [sym_preproc_include] = STATE(646), - [sym_preproc_if] = STATE(646), - [sym_preproc_ifdef] = STATE(646), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(646), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(646), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(646), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(646), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(646), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [aux_sym_initializer_list_repeat1] = STATE(424), + [anon_sym_COMMA] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1541), + [sym_comment] = ACTIONS(3), }, [337] = { - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_union] = ACTIONS(1573), - [sym_true] = ACTIONS(1573), - [anon_sym_unsigned] = ACTIONS(1573), - [anon_sym_restrict] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [sym_false] = ACTIONS(1573), - [sym_null] = ACTIONS(1573), - [sym_identifier] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_goto] = ACTIONS(1573), - [ts_builtin_sym_end] = ACTIONS(1571), - [sym_preproc_directive] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1571), - [aux_sym_preproc_if_token1] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [anon_sym__Atomic] = ACTIONS(1573), - [sym_primitive_type] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1571), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_volatile] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_struct] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_signed] = ACTIONS(1573), - [anon_sym_enum] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_auto] = ACTIONS(1573), - [anon_sym_L] = ACTIONS(1573), - [anon_sym_inline] = ACTIONS(1573), - [anon_sym___attribute__] = ACTIONS(1573), - [anon_sym_sizeof] = ACTIONS(1573), + [sym_parameter_list] = STATE(251), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1555), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(923), }, [338] = { - [sym_char_literal] = STATE(428), - [sym__expression] = STATE(428), - [sym_binary_expression] = STATE(428), - [sym_update_expression] = STATE(428), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(428), - [sym_sizeof_expression] = STATE(428), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(428), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(428), - [sym_assignment_expression] = STATE(428), - [sym_cast_expression] = STATE(428), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(428), - [anon_sym_BANG] = ACTIONS(33), - [sym_false] = ACTIONS(1575), - [sym_identifier] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(29), - [sym_true] = ACTIONS(1575), - [sym_null] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(25), + [sym_parameter_list] = STATE(251), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(923), }, [339] = { - [anon_sym_RBRACE] = ACTIONS(1579), - [sym_comment] = ACTIONS(3), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_parameter_declaration] = STATE(427), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_macro_type_specifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(245), + [sym_type_qualifier] = STATE(43), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_auto] = ACTIONS(63), + [sym_identifier] = ACTIONS(187), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [340] = { - [anon_sym_GT_GT] = ACTIONS(1581), - [anon_sym_PERCENT_EQ] = ACTIONS(1583), - [anon_sym_DASH_EQ] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_EQ_EQ] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1581), - [anon_sym_DASH_GT] = ACTIONS(1583), - [anon_sym_LT_LT] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1583), - [anon_sym_LT_LT_EQ] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1583), - [anon_sym_BANG_EQ] = ACTIONS(1583), - [anon_sym_CARET_EQ] = ACTIONS(1583), - [anon_sym_COMMA] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_GT_GT_EQ] = ACTIONS(1583), - [anon_sym_GT] = ACTIONS(1581), - [anon_sym_PIPE_EQ] = ACTIONS(1583), - [anon_sym_RPAREN] = ACTIONS(1583), - [anon_sym_RBRACK] = ACTIONS(1583), - [anon_sym_AMP_EQ] = ACTIONS(1583), - [anon_sym_PERCENT] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_EQ] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_COLON] = ACTIONS(1583), - [anon_sym_STAR_EQ] = ACTIONS(1583), - [anon_sym_PIPE_PIPE] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_SLASH_EQ] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_DOT] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_EQ] = ACTIONS(1561), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_COMMA] = ACTIONS(1561), + [anon_sym_COLON] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1561), + [anon_sym___attribute__] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), }, [341] = { - [sym_identifier] = ACTIONS(1585), + [aux_sym_parameter_list_repeat1] = STATE(429), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_COMMA] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, [342] = { - [sym_argument_list] = STATE(115), - [aux_sym_initializer_list_repeat1] = STATE(432), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_RBRACE] = ACTIONS(1579), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), }, [343] = { - [aux_sym_initializer_pair_repeat1] = STATE(434), - [sym_subscript_designator] = STATE(434), - [sym_field_designator] = STATE(434), - [anon_sym_EQ] = ACTIONS(1589), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1278), + [sym_pointer_declarator] = STATE(205), + [sym_abstract_array_declarator] = STATE(240), + [aux_sym_type_definition_repeat1] = STATE(430), + [sym__declarator] = STATE(205), + [sym_abstract_pointer_declarator] = STATE(240), + [sym_function_declarator] = STATE(205), + [sym_type_qualifier] = STATE(430), + [sym_parameter_list] = STATE(148), + [sym_parenthesized_declarator] = STATE(205), + [sym__abstract_declarator] = STATE(240), + [sym_abstract_function_declarator] = STATE(240), + [sym_array_declarator] = STATE(205), + [sym_abstract_parenthesized_declarator] = STATE(240), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(1282), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(905), + [sym_identifier] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(448), }, [344] = { - [aux_sym_initializer_list_repeat1] = STATE(432), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1579), + [sym__declarator] = STATE(207), + [sym_abstract_pointer_declarator] = STATE(244), + [sym_function_declarator] = STATE(207), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_parameter_list] = STATE(148), + [sym_parameter_declaration] = STATE(243), + [sym__declaration_specifiers] = STATE(245), + [sym_abstract_parenthesized_declarator] = STATE(244), + [sym_pointer_declarator] = STATE(207), + [sym_abstract_array_declarator] = STATE(244), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_attribute_specifier] = STATE(43), + [sym__abstract_declarator] = STATE(244), + [sym_parenthesized_declarator] = STATE(207), + [sym_abstract_function_declarator] = STATE(244), + [sym_array_declarator] = STATE(207), + [sym_macro_type_specifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_DOT_DOT_DOT] = ACTIONS(907), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(1567), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(448), }, [345] = { - [sym_parameter_list] = STATE(258), - [anon_sym_RPAREN] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(672), + [sym_parameter_list] = STATE(251), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(923), }, [346] = { - [sym_parameter_list] = STATE(258), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_LPAREN2] = ACTIONS(672), + [sym_parameter_list] = STATE(213), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(650), }, [347] = { - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_parameter_declaration] = STATE(435), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_macro_type_specifier] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(252), - [sym_type_qualifier] = STATE(44), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_auto] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_COMMA] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), }, [348] = { - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_EQ] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_COMMA] = ACTIONS(1599), - [anon_sym_COLON] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [anon_sym___attribute__] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1599), + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1573), + [anon_sym_sizeof] = ACTIONS(165), }, [349] = { - [aux_sym_parameter_list_repeat1] = STATE(437), - [anon_sym_RPAREN] = ACTIONS(1601), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1308), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), }, [350] = { - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_LPAREN2] = ACTIONS(1603), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [351] = { - [sym_pointer_declarator] = STATE(211), - [sym_abstract_array_declarator] = STATE(247), - [aux_sym_type_definition_repeat1] = STATE(438), - [sym__declarator] = STATE(211), - [sym_abstract_pointer_declarator] = STATE(247), - [sym_function_declarator] = STATE(211), - [sym_type_qualifier] = STATE(438), - [sym_parameter_list] = STATE(155), - [sym_parenthesized_declarator] = STATE(211), - [sym__abstract_declarator] = STATE(247), - [sym_abstract_function_declarator] = STATE(247), - [sym_array_declarator] = STATE(211), - [sym_abstract_parenthesized_declarator] = STATE(247), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(664), - [anon_sym_COMMA] = ACTIONS(936), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(466), + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1577), + [anon_sym_sizeof] = ACTIONS(165), }, [352] = { - [sym__declarator] = STATE(213), - [sym_abstract_pointer_declarator] = STATE(251), - [sym_function_declarator] = STATE(213), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_parameter_list] = STATE(155), - [sym_parameter_declaration] = STATE(249), - [sym__declaration_specifiers] = STATE(252), - [sym_abstract_parenthesized_declarator] = STATE(251), - [sym_pointer_declarator] = STATE(213), - [sym_abstract_array_declarator] = STATE(251), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_attribute_specifier] = STATE(44), - [sym__abstract_declarator] = STATE(251), - [sym_parenthesized_declarator] = STATE(213), - [sym_abstract_function_declarator] = STATE(251), - [sym_array_declarator] = STATE(213), - [sym_macro_type_specifier] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(17), - [anon_sym_DOT_DOT_DOT] = ACTIONS(938), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(940), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(466), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), }, [353] = { - [sym_parameter_list] = STATE(258), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(672), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(954), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [354] = { - [sym_parameter_list] = STATE(219), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(672), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(670), + [sym__expression] = STATE(436), + [sym_binary_expression] = STATE(436), + [sym_update_expression] = STATE(436), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(144), + [sym_conditional_expression] = STATE(436), + [sym_assignment_expression] = STATE(436), + [sym_cast_expression] = STATE(436), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(436), + [sym_char_literal] = STATE(436), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(436), + [sym_sizeof_expression] = STATE(436), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(436), + [sym_string_literal] = STATE(41), + [sym_true] = ACTIONS(1581), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(1581), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1583), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1587), + [anon_sym_sizeof] = ACTIONS(33), }, [355] = { - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), + [sym_parameter_list] = STATE(260), + [anon_sym_LBRACK] = ACTIONS(935), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1589), }, [356] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(1591), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_COMMA] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), }, [357] = { - [anon_sym_RPAREN] = ACTIONS(1613), - [anon_sym_LPAREN2] = ACTIONS(1613), + [sym_parameter_list] = STATE(260), + [anon_sym_SEMI] = ACTIONS(1593), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1613), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(935), }, [358] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(165), }, [359] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1615), - [anon_sym_sizeof] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), }, [360] = { - [anon_sym_RPAREN] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(1617), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1617), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [361] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym__expression] = STATE(440), + [sym_binary_expression] = STATE(440), + [sym_update_expression] = STATE(440), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(144), + [sym_conditional_expression] = STATE(440), + [sym_assignment_expression] = STATE(440), + [sym_cast_expression] = STATE(440), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(440), + [sym_char_literal] = STATE(440), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(440), + [sym_sizeof_expression] = STATE(440), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(440), + [sym_string_literal] = STATE(41), + [sym_true] = ACTIONS(1599), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1601), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1605), + [anon_sym_sizeof] = ACTIONS(33), }, [362] = { - [sym__expression] = STATE(444), - [sym_binary_expression] = STATE(444), - [sym_update_expression] = STATE(444), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(151), - [sym_conditional_expression] = STATE(444), - [sym_assignment_expression] = STATE(444), - [sym_cast_expression] = STATE(444), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(444), - [sym_char_literal] = STATE(444), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(444), - [sym_sizeof_expression] = STATE(444), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(444), - [sym_string_literal] = STATE(42), - [sym_false] = ACTIONS(1619), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1621), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1619), - [sym_null] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1625), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_case] = ACTIONS(1607), + [sym_true] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_default] = ACTIONS(1607), + [anon_sym__Atomic] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), + [sym_number_literal] = ACTIONS(1609), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1609), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), + [anon_sym_L_SQUOTE] = ACTIONS(1609), + [anon_sym___attribute__] = ACTIONS(1607), + [anon_sym_sizeof] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [sym_preproc_directive] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1609), + [aux_sym_preproc_if_token1] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_L_DQUOTE] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [aux_sym_preproc_include_token1] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1609), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [ts_builtin_sym_end] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1609), + [aux_sym_preproc_def_token1] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), }, [363] = { - [sym_parameter_list] = STATE(267), - [anon_sym_LBRACK] = ACTIONS(966), + [aux_sym_type_definition_repeat2] = STATE(363), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_COMMA] = ACTIONS(1611), + [anon_sym_SEMI] = ACTIONS(1614), }, [364] = { - [anon_sym_LBRACK] = ACTIONS(1629), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1629), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_COMMA] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1616), + [sym_true] = ACTIONS(1616), + [anon_sym_restrict] = ACTIONS(1616), + [sym_null] = ACTIONS(1616), + [anon_sym_goto] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [anon_sym_typedef] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [anon_sym_default] = ACTIONS(1616), + [anon_sym__Atomic] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1616), + [sym_number_literal] = ACTIONS(1618), + [anon_sym_volatile] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1616), + [anon_sym_signed] = ACTIONS(1616), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1616), + [anon_sym_L_SQUOTE] = ACTIONS(1618), + [anon_sym___attribute__] = ACTIONS(1616), + [anon_sym_sizeof] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_short] = ACTIONS(1616), + [anon_sym_do] = ACTIONS(1616), + [sym_preproc_directive] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1618), + [aux_sym_preproc_if_token1] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1618), + [anon_sym_L_DQUOTE] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [sym_primitive_type] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1618), + [aux_sym_preproc_include_token1] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_static] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_register] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_switch] = ACTIONS(1616), + [anon_sym_enum] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [ts_builtin_sym_end] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1618), + [aux_sym_preproc_def_token1] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_auto] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), }, [365] = { - [sym_parameter_list] = STATE(267), - [anon_sym_SEMI] = ACTIONS(1631), + [aux_sym_type_definition_repeat2] = STATE(363), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_COMMA] = ACTIONS(931), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(966), }, [366] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1633), - [anon_sym_sizeof] = ACTIONS(189), + [sym_if_statement] = STATE(442), + [sym_do_statement] = STATE(442), + [sym_for_statement] = STATE(442), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(442), + [sym_return_statement] = STATE(442), + [sym_break_statement] = STATE(442), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(442), + [sym_while_statement] = STATE(442), + [sym_continue_statement] = STATE(442), + [sym_goto_statement] = STATE(442), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(442), + [sym_expression_statement] = STATE(442), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [367] = { - [anon_sym_LBRACK] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1635), - [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_COMMA] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(1635), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [368] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(1622), + [sym_comment] = ACTIONS(3), }, [369] = { + [sym_char_literal] = STATE(445), + [sym__expression] = STATE(445), + [sym_comma_expression] = STATE(446), + [sym_binary_expression] = STATE(445), + [sym_update_expression] = STATE(445), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(445), + [sym_sizeof_expression] = STATE(445), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(445), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(445), + [sym_assignment_expression] = STATE(445), + [sym_cast_expression] = STATE(445), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(445), + [sym_true] = ACTIONS(1624), + [sym_null] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_sizeof] = ACTIONS(33), + }, + [370] = { + [sym_char_literal] = STATE(448), [sym__expression] = STATE(448), + [sym_comma_expression] = STATE(449), [sym_binary_expression] = STATE(448), [sym_update_expression] = STATE(448), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(151), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(448), + [sym_sizeof_expression] = STATE(448), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(448), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(448), [sym_assignment_expression] = STATE(448), [sym_cast_expression] = STATE(448), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(448), - [sym_char_literal] = STATE(448), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(448), - [sym_sizeof_expression] = STATE(448), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(448), - [sym_string_literal] = STATE(42), - [sym_false] = ACTIONS(1637), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1639), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1643), - [anon_sym_sizeof] = ACTIONS(25), - }, - [370] = { - [anon_sym_case] = ACTIONS(1645), - [sym_false] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_default] = ACTIONS(1645), - [anon_sym__Atomic] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), - [anon_sym_L] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym_sizeof] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [sym_preproc_directive] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1647), - [aux_sym_preproc_include_token1] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [sym_true] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), - [ts_builtin_sym_end] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [aux_sym_preproc_def_token1] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_auto] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), + [sym_true] = ACTIONS(1630), + [sym_null] = ACTIONS(1630), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1632), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_sizeof] = ACTIONS(33), }, [371] = { - [aux_sym_type_definition_repeat2] = STATE(371), - [anon_sym_COMMA] = ACTIONS(1649), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), + }, + [372] = { + [sym_if_statement] = STATE(451), + [sym_do_statement] = STATE(451), + [sym_for_statement] = STATE(451), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(451), + [sym_return_statement] = STATE(451), + [sym_break_statement] = STATE(451), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(451), + [sym_while_statement] = STATE(451), + [sym_continue_statement] = STATE(451), + [sym_goto_statement] = STATE(451), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(451), + [sym_expression_statement] = STATE(451), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [373] = { + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), + }, + [374] = { + [anon_sym_RPAREN] = ACTIONS(1638), [sym_comment] = ACTIONS(3), + }, + [375] = { + [sym_char_literal] = STATE(454), + [sym__expression] = STATE(454), + [sym_comma_expression] = STATE(455), + [sym_binary_expression] = STATE(454), + [sym_update_expression] = STATE(454), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(454), + [sym_sizeof_expression] = STATE(454), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(454), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(454), + [sym_assignment_expression] = STATE(454), + [sym_cast_expression] = STATE(454), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(454), + [sym_true] = ACTIONS(1640), + [sym_null] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(33), + }, + [376] = { + [sym_true] = ACTIONS(1646), + [anon_sym_restrict] = ACTIONS(1646), + [sym_null] = ACTIONS(1646), + [anon_sym_goto] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_typedef] = ACTIONS(1646), + [anon_sym_DASH_DASH] = ACTIONS(1648), + [anon_sym__Atomic] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(1648), + [anon_sym_volatile] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1646), + [anon_sym_PLUS_PLUS] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_signed] = ACTIONS(1646), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), + [anon_sym_L_SQUOTE] = ACTIONS(1648), + [anon_sym___attribute__] = ACTIONS(1646), + [anon_sym_sizeof] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_union] = ACTIONS(1646), + [anon_sym_unsigned] = ACTIONS(1646), + [anon_sym_short] = ACTIONS(1646), + [anon_sym_do] = ACTIONS(1646), + [sym_preproc_directive] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1648), + [aux_sym_preproc_if_token1] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_L_DQUOTE] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1648), + [sym_primitive_type] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1648), + [aux_sym_preproc_include_token1] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [sym_false] = ACTIONS(1646), + [ts_builtin_sym_end] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1648), + [aux_sym_preproc_def_token1] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_auto] = ACTIONS(1646), + [anon_sym_inline] = ACTIONS(1646), + }, + [377] = { + [sym_true] = ACTIONS(1650), + [anon_sym_restrict] = ACTIONS(1650), + [sym_null] = ACTIONS(1650), + [anon_sym_goto] = ACTIONS(1650), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_typedef] = ACTIONS(1650), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [anon_sym__Atomic] = ACTIONS(1650), + [sym_identifier] = ACTIONS(1650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), + [sym_number_literal] = ACTIONS(1652), + [anon_sym_volatile] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_extern] = ACTIONS(1650), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_struct] = ACTIONS(1650), + [anon_sym_signed] = ACTIONS(1650), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1650), + [anon_sym_while] = ACTIONS(1650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), + [anon_sym_L_SQUOTE] = ACTIONS(1652), + [anon_sym___attribute__] = ACTIONS(1650), + [anon_sym_sizeof] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_union] = ACTIONS(1650), + [anon_sym_unsigned] = ACTIONS(1650), + [anon_sym_short] = ACTIONS(1650), + [anon_sym_do] = ACTIONS(1650), + [sym_preproc_directive] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1652), + [aux_sym_preproc_if_token1] = ACTIONS(1650), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_L_DQUOTE] = ACTIONS(1652), + [anon_sym_LPAREN2] = ACTIONS(1652), + [sym_primitive_type] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1652), + [aux_sym_preproc_include_token1] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_static] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1652), + [anon_sym_register] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_switch] = ACTIONS(1650), + [anon_sym_enum] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [ts_builtin_sym_end] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1650), [anon_sym_SEMI] = ACTIONS(1652), + [aux_sym_preproc_def_token1] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_auto] = ACTIONS(1650), + [anon_sym_inline] = ACTIONS(1650), }, - [372] = { + [378] = { [anon_sym_case] = ACTIONS(1654), - [sym_false] = ACTIONS(1654), + [sym_true] = ACTIONS(1654), [anon_sym_restrict] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1654), + [sym_null] = ACTIONS(1654), [anon_sym_goto] = ACTIONS(1654), [anon_sym_const] = ACTIONS(1654), [anon_sym_typedef] = ACTIONS(1654), [anon_sym_DASH_DASH] = ACTIONS(1656), [anon_sym_default] = ACTIONS(1654), [anon_sym__Atomic] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1654), [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), [sym_number_literal] = ACTIONS(1656), [anon_sym_volatile] = ACTIONS(1654), @@ -16977,10 +17490,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1656), [anon_sym_struct] = ACTIONS(1654), [anon_sym_signed] = ACTIONS(1654), + [sym_comment] = ACTIONS(3), [anon_sym_long] = ACTIONS(1654), [anon_sym_while] = ACTIONS(1654), [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), - [anon_sym_L] = ACTIONS(1654), + [anon_sym_L_SQUOTE] = ACTIONS(1656), [anon_sym___attribute__] = ACTIONS(1654), [anon_sym_sizeof] = ACTIONS(1654), [anon_sym_LBRACE] = ACTIONS(1656), @@ -16992,9 +17506,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1656), [aux_sym_preproc_if_token1] = ACTIONS(1654), [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_L_DQUOTE] = ACTIONS(1656), [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_else] = ACTIONS(1654), [sym_primitive_type] = ACTIONS(1654), [anon_sym_for] = ACTIONS(1654), [anon_sym_break] = ACTIONS(1654), @@ -17002,13 +17517,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(1654), [anon_sym_DASH] = ACTIONS(1654), [anon_sym_static] = ACTIONS(1654), + [anon_sym_DQUOTE] = ACTIONS(1656), [anon_sym_register] = ACTIONS(1654), [anon_sym_STAR] = ACTIONS(1656), [anon_sym_if] = ACTIONS(1654), [anon_sym_switch] = ACTIONS(1654), - [sym_true] = ACTIONS(1654), [anon_sym_enum] = ACTIONS(1654), - [sym_null] = ACTIONS(1654), + [sym_false] = ACTIONS(1654), [ts_builtin_sym_end] = ACTIONS(1656), [anon_sym_return] = ACTIONS(1654), [anon_sym_continue] = ACTIONS(1654), @@ -17018,7969 +17533,7609 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1654), [anon_sym_inline] = ACTIONS(1654), }, - [373] = { - [aux_sym_type_definition_repeat2] = STATE(371), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1658), - }, - [374] = { - [sym_if_statement] = STATE(450), - [sym_do_statement] = STATE(450), - [sym_for_statement] = STATE(450), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(450), - [sym_return_statement] = STATE(450), - [sym_break_statement] = STATE(450), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(450), - [sym_while_statement] = STATE(450), - [sym_continue_statement] = STATE(450), - [sym_goto_statement] = STATE(450), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(450), - [sym_expression_statement] = STATE(450), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [375] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1660), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - }, - [376] = { - [anon_sym_RPAREN] = ACTIONS(1660), - [sym_comment] = ACTIONS(3), - }, - [377] = { - [sym_char_literal] = STATE(453), - [sym__expression] = STATE(453), - [sym_comma_expression] = STATE(454), - [sym_binary_expression] = STATE(453), - [sym_update_expression] = STATE(453), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(453), - [sym_sizeof_expression] = STATE(453), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(453), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(453), - [sym_assignment_expression] = STATE(453), - [sym_cast_expression] = STATE(453), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(453), - [sym_false] = ACTIONS(1662), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1664), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1662), - [sym_null] = ACTIONS(1662), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(1666), - [anon_sym_sizeof] = ACTIONS(25), - }, - [378] = { - [sym_char_literal] = STATE(456), - [sym__expression] = STATE(456), - [sym_comma_expression] = STATE(457), - [sym_binary_expression] = STATE(456), - [sym_update_expression] = STATE(456), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(456), - [sym_sizeof_expression] = STATE(456), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(456), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(456), - [sym_assignment_expression] = STATE(456), - [sym_cast_expression] = STATE(456), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(456), - [sym_false] = ACTIONS(1668), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1668), - [sym_null] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_sizeof] = ACTIONS(25), - }, [379] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_COLON] = ACTIONS(1658), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [380] = { - [sym_if_statement] = STATE(459), - [sym_do_statement] = STATE(459), - [sym_for_statement] = STATE(459), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(459), - [sym_return_statement] = STATE(459), - [sym_break_statement] = STATE(459), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(459), - [sym_while_statement] = STATE(459), - [sym_continue_statement] = STATE(459), - [sym_goto_statement] = STATE(459), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(459), - [sym_expression_statement] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(457), + [sym_do_statement] = STATE(457), + [sym_for_statement] = STATE(457), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_declaration] = STATE(457), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [aux_sym_case_statement_repeat1] = STATE(457), + [sym_switch_statement] = STATE(457), + [sym_return_statement] = STATE(457), + [sym_break_statement] = STATE(457), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_type_definition] = STATE(457), + [sym_char_literal] = STATE(34), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_labeled_statement] = STATE(457), + [sym_while_statement] = STATE(457), + [sym_continue_statement] = STATE(457), + [sym_goto_statement] = STATE(457), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), + [sym_compound_statement] = STATE(457), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym_expression_statement] = STATE(457), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_case] = ACTIONS(1660), + [sym_true] = ACTIONS(5), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(5), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_const] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_default] = ACTIONS(1660), + [anon_sym_typedef] = ACTIONS(11), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(1664), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_static] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [sym_false] = ACTIONS(5), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_long] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), }, [381] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1676), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_case] = ACTIONS(1666), + [sym_true] = ACTIONS(1666), + [anon_sym_restrict] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [anon_sym_goto] = ACTIONS(1666), + [anon_sym_const] = ACTIONS(1666), + [anon_sym_typedef] = ACTIONS(1666), + [anon_sym_DASH_DASH] = ACTIONS(1668), + [anon_sym_default] = ACTIONS(1666), + [anon_sym__Atomic] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1666), + [sym_number_literal] = ACTIONS(1668), + [anon_sym_volatile] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1666), + [anon_sym_PLUS_PLUS] = ACTIONS(1668), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_signed] = ACTIONS(1666), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1666), + [anon_sym_L_SQUOTE] = ACTIONS(1668), + [anon_sym___attribute__] = ACTIONS(1666), + [anon_sym_sizeof] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_union] = ACTIONS(1666), + [anon_sym_unsigned] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_do] = ACTIONS(1666), + [sym_preproc_directive] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1668), + [aux_sym_preproc_if_token1] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1668), + [anon_sym_L_DQUOTE] = ACTIONS(1668), + [anon_sym_LPAREN2] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_else] = ACTIONS(1666), + [sym_primitive_type] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1668), + [aux_sym_preproc_include_token1] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_static] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1668), + [anon_sym_register] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1666), + [anon_sym_enum] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [ts_builtin_sym_end] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1668), + [aux_sym_preproc_def_token1] = ACTIONS(1666), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_auto] = ACTIONS(1666), + [anon_sym_inline] = ACTIONS(1666), }, [382] = { - [anon_sym_RPAREN] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(382), + [aux_sym_switch_body_repeat1] = STATE(382), + [sym_expression_statement] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_case] = ACTIONS(1673), + [sym_true] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1679), + [anon_sym_goto] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_L_DQUOTE] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_default] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1714), + [sym_number_literal] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_SQUOTE] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1726), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1729), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_L_SQUOTE] = ACTIONS(1720), + [anon_sym_sizeof] = ACTIONS(1741), }, [383] = { - [sym_char_literal] = STATE(462), - [sym__expression] = STATE(462), - [sym_comma_expression] = STATE(463), - [sym_binary_expression] = STATE(462), - [sym_update_expression] = STATE(462), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(462), - [sym_sizeof_expression] = STATE(462), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(462), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(462), - [sym_assignment_expression] = STATE(462), - [sym_cast_expression] = STATE(462), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(462), - [sym_false] = ACTIONS(1678), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1680), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1678), - [sym_null] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(1682), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [384] = { - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1686), - [sym_true] = ACTIONS(1686), - [anon_sym_unsigned] = ACTIONS(1686), - [anon_sym_restrict] = ACTIONS(1686), - [anon_sym_short] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_goto] = ACTIONS(1686), - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_preproc_directive] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1684), - [aux_sym_preproc_if_token1] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_LPAREN2] = ACTIONS(1684), - [anon_sym_typedef] = ACTIONS(1686), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym__Atomic] = ACTIONS(1686), - [sym_primitive_type] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [aux_sym_preproc_include_token1] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1686), - [anon_sym_register] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_signed] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [anon_sym_long] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [sym_number_literal] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [aux_sym_preproc_def_token1] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_auto] = ACTIONS(1686), - [anon_sym_L] = ACTIONS(1686), - [anon_sym_inline] = ACTIONS(1686), - [anon_sym___attribute__] = ACTIONS(1686), - [anon_sym_sizeof] = ACTIONS(1686), + [anon_sym_restrict] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1746), + [anon_sym_volatile] = ACTIONS(1746), + [anon_sym_register] = ACTIONS(1746), + [anon_sym_extern] = ACTIONS(1746), + [anon_sym_STAR] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1748), + [anon_sym_COLON] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1746), + [anon_sym_auto] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1746), + [anon_sym___attribute__] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1748), }, [385] = { - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_union] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [anon_sym_unsigned] = ACTIONS(1690), - [anon_sym_restrict] = ACTIONS(1690), - [anon_sym_short] = ACTIONS(1690), - [sym_false] = ACTIONS(1690), - [sym_null] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1690), - [anon_sym_do] = ACTIONS(1690), - [anon_sym_goto] = ACTIONS(1690), - [ts_builtin_sym_end] = ACTIONS(1688), - [sym_preproc_directive] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1688), - [aux_sym_preproc_if_token1] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1688), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1688), - [anon_sym_typedef] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym__Atomic] = ACTIONS(1690), - [sym_primitive_type] = ACTIONS(1690), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1688), - [aux_sym_preproc_include_token1] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_volatile] = ACTIONS(1690), - [anon_sym_register] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1690), - [anon_sym_signed] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_long] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1688), - [sym_number_literal] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_SQUOTE] = ACTIONS(1688), - [aux_sym_preproc_def_token1] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_auto] = ACTIONS(1690), - [anon_sym_L] = ACTIONS(1690), - [anon_sym_inline] = ACTIONS(1690), - [anon_sym___attribute__] = ACTIONS(1690), - [anon_sym_sizeof] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [sym_comment] = ACTIONS(3), }, [386] = { - [anon_sym_case] = ACTIONS(1692), - [sym_false] = ACTIONS(1692), - [anon_sym_restrict] = ACTIONS(1692), - [sym_identifier] = ACTIONS(1692), - [anon_sym_goto] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_typedef] = ACTIONS(1692), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1692), - [anon_sym__Atomic] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1692), - [sym_number_literal] = ACTIONS(1694), - [anon_sym_volatile] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_struct] = ACTIONS(1692), - [anon_sym_signed] = ACTIONS(1692), - [anon_sym_long] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1692), - [anon_sym_L] = ACTIONS(1692), - [anon_sym___attribute__] = ACTIONS(1692), - [anon_sym_sizeof] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_union] = ACTIONS(1692), - [anon_sym_unsigned] = ACTIONS(1692), - [anon_sym_short] = ACTIONS(1692), - [anon_sym_do] = ACTIONS(1692), - [sym_preproc_directive] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1694), - [aux_sym_preproc_if_token1] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LPAREN2] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1692), - [sym_primitive_type] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1694), - [aux_sym_preproc_include_token1] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_register] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [sym_true] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [sym_null] = ACTIONS(1692), - [ts_builtin_sym_end] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1694), - [aux_sym_preproc_def_token1] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_auto] = ACTIONS(1692), - [anon_sym_inline] = ACTIONS(1692), + [sym_enumerator] = STATE(385), + [sym_identifier] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(1752), + [sym_comment] = ACTIONS(3), }, [387] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_COLON] = ACTIONS(1696), - [anon_sym_DOT] = ACTIONS(291), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_enumerator_list_repeat1] = STATE(387), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1750), + [sym_comment] = ACTIONS(3), }, [388] = { - [sym_if_statement] = STATE(465), - [sym_do_statement] = STATE(465), - [sym_for_statement] = STATE(465), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_declaration] = STATE(465), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [aux_sym_case_statement_repeat1] = STATE(465), - [sym_switch_statement] = STATE(465), - [sym_return_statement] = STATE(465), - [sym_break_statement] = STATE(465), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_type_definition] = STATE(465), - [sym_char_literal] = STATE(35), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_labeled_statement] = STATE(465), - [sym_while_statement] = STATE(465), - [sym_continue_statement] = STATE(465), - [sym_goto_statement] = STATE(465), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_compound_statement] = STATE(465), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_expression_statement] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_union] = ACTIONS(7), - [anon_sym_case] = ACTIONS(1698), - [sym_false] = ACTIONS(11), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(1700), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_const] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_default] = ACTIONS(1698), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_static] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [anon_sym_register] = ACTIONS(9), - [sym_null] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1757), + [sym_comment] = ACTIONS(3), }, [389] = { - [anon_sym_case] = ACTIONS(1704), - [sym_false] = ACTIONS(1704), - [anon_sym_restrict] = ACTIONS(1704), - [sym_identifier] = ACTIONS(1704), - [anon_sym_goto] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_typedef] = ACTIONS(1704), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_default] = ACTIONS(1704), - [anon_sym__Atomic] = ACTIONS(1704), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1704), - [sym_number_literal] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1704), - [anon_sym_signed] = ACTIONS(1704), - [anon_sym_long] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1704), - [anon_sym_L] = ACTIONS(1704), - [anon_sym___attribute__] = ACTIONS(1704), - [anon_sym_sizeof] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_unsigned] = ACTIONS(1704), - [anon_sym_short] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [sym_preproc_directive] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1706), - [aux_sym_preproc_if_token1] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1704), - [sym_primitive_type] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1706), - [aux_sym_preproc_include_token1] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_register] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1706), - [aux_sym_preproc_def_token1] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_auto] = ACTIONS(1704), - [anon_sym_inline] = ACTIONS(1704), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(1759), + [sym_preproc_arg] = ACTIONS(1759), }, [390] = { - [sym_if_statement] = STATE(390), - [sym_do_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(390), - [sym_return_statement] = STATE(390), - [sym_break_statement] = STATE(390), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_continue_statement] = STATE(390), - [sym_goto_statement] = STATE(390), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(390), - [aux_sym_switch_body_repeat1] = STATE(390), - [sym_expression_statement] = STATE(390), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1711), - [sym_false] = ACTIONS(1714), - [sym_identifier] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1720), - [anon_sym_goto] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1732), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_default] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1752), - [sym_number_literal] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_switch] = ACTIONS(1764), - [sym_true] = ACTIONS(1714), - [sym_null] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_L] = ACTIONS(1779), - [anon_sym_sizeof] = ACTIONS(1782), + [aux_sym_preproc_params_repeat1] = STATE(462), + [anon_sym_COMMA] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1761), + [sym_comment] = ACTIONS(3), }, [391] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_true] = ACTIONS(1763), + [anon_sym_restrict] = ACTIONS(1763), + [sym_null] = ACTIONS(1763), + [anon_sym_goto] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_typedef] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym__Atomic] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), + [sym_number_literal] = ACTIONS(1765), + [anon_sym_volatile] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_struct] = ACTIONS(1763), + [anon_sym_signed] = ACTIONS(1763), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), + [anon_sym_L_SQUOTE] = ACTIONS(1765), + [anon_sym___attribute__] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1763), + [sym_preproc_directive] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + [aux_sym_preproc_if_token1] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_L_DQUOTE] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1765), + [sym_primitive_type] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1765), + [aux_sym_preproc_include_token1] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_switch] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [sym_false] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [aux_sym_preproc_def_token1] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_auto] = ACTIONS(1763), + [anon_sym_inline] = ACTIONS(1763), }, [392] = { - [anon_sym_restrict] = ACTIONS(1787), - [sym_identifier] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1787), - [anon_sym_volatile] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_LPAREN2] = ACTIONS(1789), - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym__Atomic] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1789), - [anon_sym_inline] = ACTIONS(1787), - [anon_sym___attribute__] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1789), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [393] = { - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_PERCENT_EQ] = ACTIONS(1771), + [anon_sym_DASH_EQ] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1771), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_DASH_GT] = ACTIONS(1771), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_PLUS_EQ] = ACTIONS(1771), + [anon_sym_LT_LT_EQ] = ACTIONS(1771), + [anon_sym_QMARK] = ACTIONS(1771), + [anon_sym_BANG_EQ] = ACTIONS(1771), + [anon_sym_CARET_EQ] = ACTIONS(1771), + [anon_sym_COMMA] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1771), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_PIPE_EQ] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_RBRACK] = ACTIONS(1771), + [anon_sym_AMP_EQ] = ACTIONS(1771), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_EQ] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_GT_EQ] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_COLON] = ACTIONS(1771), + [anon_sym_STAR_EQ] = ACTIONS(1771), + [anon_sym_PIPE_PIPE] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_SLASH_EQ] = ACTIONS(1771), + [anon_sym_AMP_AMP] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1771), }, [394] = { - [sym_enumerator] = STATE(393), + [aux_sym_argument_list_repeat1] = STATE(394), + [anon_sym_COMMA] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1767), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(1793), }, [395] = { - [aux_sym_enumerator_list_repeat1] = STATE(395), - [anon_sym_COMMA] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1791), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [396] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1778), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), }, [397] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(1800), - [sym_preproc_arg] = ACTIONS(1800), + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1780), + [anon_sym_sizeof] = ACTIONS(165), }, [398] = { - [aux_sym_preproc_params_repeat1] = STATE(470), - [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(1782), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), }, [399] = { - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1806), - [sym_true] = ACTIONS(1806), - [anon_sym_unsigned] = ACTIONS(1806), - [anon_sym_restrict] = ACTIONS(1806), - [anon_sym_short] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1806), - [anon_sym_goto] = ACTIONS(1806), - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_preproc_directive] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1806), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [anon_sym__Atomic] = ACTIONS(1806), - [sym_primitive_type] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1804), - [aux_sym_preproc_include_token1] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_volatile] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_switch] = ACTIONS(1806), - [anon_sym_signed] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(1806), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [anon_sym_L] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [anon_sym___attribute__] = ACTIONS(1806), - [anon_sym_sizeof] = ACTIONS(1806), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [400] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_COMMA] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_RPAREN] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_attribute_specifier] = STATE(400), + [aux_sym_function_declarator_repeat1] = STATE(400), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1784), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_RPAREN] = ACTIONS(1784), + [anon_sym___attribute__] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1784), }, [401] = { - [anon_sym_GT_GT] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1812), - [anon_sym_DASH_EQ] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1812), - [anon_sym_SLASH] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1812), - [anon_sym_LT_LT] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1812), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1812), - [anon_sym_LT_LT_EQ] = ACTIONS(1812), - [anon_sym_QMARK] = ACTIONS(1812), - [anon_sym_BANG_EQ] = ACTIONS(1812), - [anon_sym_CARET_EQ] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_PLUS_PLUS] = ACTIONS(1812), - [anon_sym_GT_GT_EQ] = ACTIONS(1812), - [anon_sym_GT] = ACTIONS(1810), - [anon_sym_PIPE_EQ] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_AMP_EQ] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(1810), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_GT_EQ] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_COLON] = ACTIONS(1812), - [anon_sym_STAR_EQ] = ACTIONS(1812), - [anon_sym_PIPE_PIPE] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1812), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1812), - [anon_sym_AMP_AMP] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_CARET] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1812), + [sym_preproc_def] = STATE(652), + [sym_preproc_function_def] = STATE(652), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(652), + [sym_field_declaration] = STATE(652), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(652), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(652), + [sym_preproc_if_in_field_declaration_list] = STATE(652), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(652), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(968), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_if_token2] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1479), + [aux_sym_preproc_if_token1] = ACTIONS(1481), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1475), + [aux_sym_preproc_def_token1] = ACTIONS(1483), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [402] = { - [aux_sym_argument_list_repeat1] = STATE(402), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1808), - [sym_comment] = ACTIONS(3), + [sym_preproc_def] = STATE(464), + [sym_preproc_function_def] = STATE(464), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(464), + [sym_field_declaration] = STATE(464), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(464), + [sym_preproc_else_in_field_declaration_list] = STATE(465), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(465), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(464), + [sym_preproc_if_in_field_declaration_list] = STATE(464), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(464), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [403] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_unsigned] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym_short] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_register] = ACTIONS(1793), + [anon_sym_extern] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1793), + [sym_preproc_directive] = ACTIONS(1793), + [anon_sym_signed] = ACTIONS(1793), + [aux_sym_preproc_if_token1] = ACTIONS(1793), + [anon_sym_long] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1795), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1793), + [aux_sym_preproc_def_token1] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym_auto] = ACTIONS(1793), + [sym_primitive_type] = ACTIONS(1793), + [anon_sym_inline] = ACTIONS(1793), + [anon_sym___attribute__] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1793), }, [404] = { - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_EQ] = ACTIONS(1819), - [anon_sym_LPAREN2] = ACTIONS(1819), - [anon_sym_COMMA] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), + [aux_sym_preproc_if_token2] = ACTIONS(1797), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), }, [405] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1821), - [anon_sym_sizeof] = ACTIONS(189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_unsigned] = ACTIONS(1799), + [anon_sym_restrict] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [sym_preproc_directive] = ACTIONS(1799), + [anon_sym_signed] = ACTIONS(1799), + [aux_sym_preproc_if_token1] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), + [aux_sym_preproc_def_token1] = ACTIONS(1799), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_auto] = ACTIONS(1799), + [sym_primitive_type] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym___attribute__] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1799), }, [406] = { - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), + [anon_sym_union] = ACTIONS(1803), + [anon_sym_unsigned] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_short] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1803), + [sym_preproc_directive] = ACTIONS(1803), + [anon_sym_signed] = ACTIONS(1803), + [aux_sym_preproc_if_token1] = ACTIONS(1803), + [anon_sym_long] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), + [aux_sym_preproc_def_token1] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_auto] = ACTIONS(1803), + [sym_primitive_type] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym___attribute__] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1803), }, [407] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_preproc_if_token2] = ACTIONS(1807), + [sym_comment] = ACTIONS(3), }, [408] = { - [sym_attribute_specifier] = STATE(408), - [aux_sym_function_declarator_repeat1] = STATE(408), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_EQ] = ACTIONS(1825), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_COMMA] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1825), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1825), - [anon_sym___attribute__] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1825), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_unsigned] = ACTIONS(1809), + [anon_sym_restrict] = ACTIONS(1809), + [anon_sym_short] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_volatile] = ACTIONS(1809), + [anon_sym_register] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [sym_preproc_directive] = ACTIONS(1809), + [anon_sym_signed] = ACTIONS(1809), + [aux_sym_preproc_if_token1] = ACTIONS(1809), + [anon_sym_long] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1809), + [aux_sym_preproc_def_token1] = ACTIONS(1809), + [anon_sym__Atomic] = ACTIONS(1809), + [anon_sym_auto] = ACTIONS(1809), + [sym_primitive_type] = ACTIONS(1809), + [anon_sym_inline] = ACTIONS(1809), + [anon_sym___attribute__] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1809), }, [409] = { - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(663), - [sym_field_declaration] = STATE(663), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(663), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_field_declaration_list] = STATE(663), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(663), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(985), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_if_token2] = ACTIONS(1830), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1519), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), - [aux_sym_preproc_def_token1] = ACTIONS(1521), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_parameter_list] = STATE(326), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_COLON] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1220), }, [410] = { - [sym_preproc_def] = STATE(472), - [sym_preproc_function_def] = STATE(472), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(472), - [sym_field_declaration] = STATE(472), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(472), - [sym_preproc_else_in_field_declaration_list] = STATE(473), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(473), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(472), - [sym_preproc_if_in_field_declaration_list] = STATE(472), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(472), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token2] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1815), + [anon_sym_COMMA] = ACTIONS(1815), + [anon_sym_COLON] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1815), }, [411] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1834), - [anon_sym_union] = ACTIONS(1834), - [anon_sym_unsigned] = ACTIONS(1834), - [anon_sym_restrict] = ACTIONS(1834), - [anon_sym_short] = ACTIONS(1834), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_volatile] = ACTIONS(1834), - [anon_sym_register] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1834), - [anon_sym_struct] = ACTIONS(1834), - [sym_preproc_directive] = ACTIONS(1834), - [anon_sym_signed] = ACTIONS(1834), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [anon_sym_long] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_const] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1834), - [aux_sym_preproc_def_token1] = ACTIONS(1834), - [anon_sym__Atomic] = ACTIONS(1834), - [anon_sym_auto] = ACTIONS(1834), - [sym_primitive_type] = ACTIONS(1834), - [anon_sym_inline] = ACTIONS(1834), - [anon_sym___attribute__] = ACTIONS(1834), + [sym_parameter_list] = STATE(326), + [anon_sym_LBRACK] = ACTIONS(1220), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_COLON] = ACTIONS(1817), + [anon_sym_SEMI] = ACTIONS(1817), }, [412] = { - [aux_sym_preproc_if_token2] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(165), }, [413] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsigned] = ACTIONS(1840), - [anon_sym_restrict] = ACTIONS(1840), - [anon_sym_short] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_volatile] = ACTIONS(1840), - [anon_sym_register] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [sym_identifier] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [sym_preproc_directive] = ACTIONS(1840), - [anon_sym_signed] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1840), - [anon_sym_long] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1842), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [anon_sym__Atomic] = ACTIONS(1840), - [anon_sym_auto] = ACTIONS(1840), - [sym_primitive_type] = ACTIONS(1840), - [anon_sym_inline] = ACTIONS(1840), - [anon_sym___attribute__] = ACTIONS(1840), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1821), + [anon_sym_COMMA] = ACTIONS(1821), + [anon_sym_COLON] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_RPAREN] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1821), }, [414] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsigned] = ACTIONS(1844), - [anon_sym_restrict] = ACTIONS(1844), - [anon_sym_short] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_volatile] = ACTIONS(1844), - [anon_sym_register] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [sym_identifier] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1844), - [anon_sym_signed] = ACTIONS(1844), - [aux_sym_preproc_if_token1] = ACTIONS(1844), - [anon_sym_long] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_RBRACE] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1844), - [aux_sym_preproc_def_token1] = ACTIONS(1844), - [anon_sym__Atomic] = ACTIONS(1844), - [anon_sym_auto] = ACTIONS(1844), - [sym_primitive_type] = ACTIONS(1844), - [anon_sym_inline] = ACTIONS(1844), - [anon_sym___attribute__] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [415] = { - [aux_sym_preproc_if_token2] = ACTIONS(1848), - [sym_comment] = ACTIONS(3), + [sym__expression] = STATE(471), + [sym_binary_expression] = STATE(471), + [sym_update_expression] = STATE(471), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(144), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(471), + [sym_char_literal] = STATE(471), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(41), + [sym_true] = ACTIONS(1823), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(1827), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1829), + [anon_sym_sizeof] = ACTIONS(33), }, [416] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1850), - [anon_sym_union] = ACTIONS(1850), - [anon_sym_unsigned] = ACTIONS(1850), - [anon_sym_restrict] = ACTIONS(1850), - [anon_sym_short] = ACTIONS(1850), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_volatile] = ACTIONS(1850), - [anon_sym_register] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1850), - [sym_preproc_directive] = ACTIONS(1850), - [anon_sym_signed] = ACTIONS(1850), - [aux_sym_preproc_if_token1] = ACTIONS(1850), - [anon_sym_long] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1852), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1850), - [aux_sym_preproc_def_token1] = ACTIONS(1850), - [anon_sym__Atomic] = ACTIONS(1850), - [anon_sym_auto] = ACTIONS(1850), - [sym_primitive_type] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [anon_sym___attribute__] = ACTIONS(1850), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), + [anon_sym_union] = ACTIONS(1831), + [anon_sym_unsigned] = ACTIONS(1831), + [anon_sym_restrict] = ACTIONS(1831), + [anon_sym_short] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_volatile] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_struct] = ACTIONS(1831), + [sym_preproc_directive] = ACTIONS(1831), + [anon_sym_signed] = ACTIONS(1831), + [aux_sym_preproc_if_token1] = ACTIONS(1831), + [anon_sym_long] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1831), + [anon_sym__Atomic] = ACTIONS(1831), + [anon_sym_auto] = ACTIONS(1831), + [sym_primitive_type] = ACTIONS(1831), + [anon_sym_inline] = ACTIONS(1831), + [anon_sym___attribute__] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1831), }, [417] = { - [sym_parameter_list] = STATE(334), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1854), - [anon_sym_COLON] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1854), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1835), }, [418] = { - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_COMMA] = ACTIONS(1856), - [anon_sym_COLON] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), + [aux_sym_field_declaration_repeat1] = STATE(418), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_COLON] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1840), }, [419] = { - [sym_parameter_list] = STATE(334), - [anon_sym_LBRACK] = ACTIONS(1250), + [aux_sym_preproc_if_token2] = ACTIONS(1842), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1858), - [anon_sym_COLON] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), }, [420] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1860), - [anon_sym_sizeof] = ACTIONS(189), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_DASH_GT] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [421] = { - [anon_sym_LPAREN2] = ACTIONS(1862), - [anon_sym_COMMA] = ACTIONS(1862), - [anon_sym_COLON] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_GT_GT] = ACTIONS(1846), + [anon_sym_PERCENT_EQ] = ACTIONS(1848), + [anon_sym_DASH_EQ] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_EQ_EQ] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1846), + [anon_sym_DASH_GT] = ACTIONS(1848), + [anon_sym_LT_LT] = ACTIONS(1846), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_PLUS_EQ] = ACTIONS(1848), + [anon_sym_LT_LT_EQ] = ACTIONS(1848), + [anon_sym_QMARK] = ACTIONS(1848), + [anon_sym_BANG_EQ] = ACTIONS(1848), + [anon_sym_CARET_EQ] = ACTIONS(1848), + [anon_sym_COMMA] = ACTIONS(1848), + [anon_sym_PLUS_PLUS] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1846), + [anon_sym_PIPE_EQ] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_RBRACK] = ACTIONS(1848), + [anon_sym_AMP_EQ] = ACTIONS(1848), + [anon_sym_PERCENT] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_EQ] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1848), + [anon_sym_GT_EQ] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_STAR_EQ] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_LT_EQ] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_SLASH_EQ] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DOT] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1848), }, [422] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1850), + [anon_sym_DOT] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), }, [423] = { + [sym__expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_update_expression] = STATE(475), + [sym_call_expression] = STATE(36), + [sym_initializer_pair] = STATE(476), + [sym_subscript_designator] = STATE(335), + [sym_conditional_expression] = STATE(475), + [sym_assignment_expression] = STATE(475), + [sym_cast_expression] = STATE(475), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(475), + [sym_field_designator] = STATE(335), + [sym_char_literal] = STATE(475), + [aux_sym_initializer_pair_repeat1] = STATE(335), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(475), + [sym_sizeof_expression] = STATE(475), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_initializer_list] = STATE(476), + [sym_concatenated_string] = STATE(475), + [sym_string_literal] = STATE(41), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(1244), + [sym_true] = ACTIONS(1852), + [sym_null] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(1854), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(33), + }, + [424] = { + [aux_sym_initializer_list_repeat1] = STATE(478), + [anon_sym_COMMA] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1854), + [sym_comment] = ACTIONS(3), + }, + [425] = { + [sym_char_literal] = STATE(479), [sym__expression] = STATE(479), [sym_binary_expression] = STATE(479), [sym_update_expression] = STATE(479), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(151), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(479), + [sym_sizeof_expression] = STATE(479), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_initializer_list] = STATE(480), + [sym_concatenated_string] = STATE(479), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(479), [sym_assignment_expression] = STATE(479), [sym_cast_expression] = STATE(479), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(479), - [sym_char_literal] = STATE(479), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(479), - [sym_sizeof_expression] = STATE(479), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(479), - [sym_string_literal] = STATE(42), - [sym_false] = ACTIONS(1864), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1864), - [sym_null] = ACTIONS(1864), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1870), - [anon_sym_sizeof] = ACTIONS(25), - }, - [424] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsigned] = ACTIONS(1872), - [anon_sym_restrict] = ACTIONS(1872), - [anon_sym_short] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_volatile] = ACTIONS(1872), - [anon_sym_register] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [sym_preproc_directive] = ACTIONS(1872), - [anon_sym_signed] = ACTIONS(1872), - [aux_sym_preproc_if_token1] = ACTIONS(1872), - [anon_sym_long] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1874), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), - [aux_sym_preproc_def_token1] = ACTIONS(1872), - [anon_sym__Atomic] = ACTIONS(1872), - [anon_sym_auto] = ACTIONS(1872), - [sym_primitive_type] = ACTIONS(1872), - [anon_sym_inline] = ACTIONS(1872), - [anon_sym___attribute__] = ACTIONS(1872), - [sym_comment] = ACTIONS(3), - }, - [425] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_BANG] = ACTIONS(47), + [sym_true] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1860), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [426] = { - [aux_sym_field_declaration_repeat1] = STATE(426), + [aux_sym_initializer_pair_repeat1] = STATE(426), + [sym_subscript_designator] = STATE(426), + [sym_field_designator] = STATE(426), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1878), - [anon_sym_COLON] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_EQ] = ACTIONS(1864), + [anon_sym_DOT] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1869), }, [427] = { - [aux_sym_preproc_if_token2] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1872), [sym_comment] = ACTIONS(3), }, [428] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1874), + [anon_sym_COLON] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym___attribute__] = ACTIONS(1874), + [sym_comment] = ACTIONS(3), }, [429] = { - [anon_sym_GT_GT] = ACTIONS(1887), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1887), - [anon_sym_DASH_GT] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_RBRACK] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1889), + [aux_sym_parameter_list_repeat1] = STATE(429), + [anon_sym_COMMA] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1872), + [sym_comment] = ACTIONS(3), }, [430] = { - [anon_sym_EQ] = ACTIONS(1891), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), + [sym_pointer_declarator] = STATE(295), + [sym_abstract_array_declarator] = STATE(338), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym__declarator] = STATE(295), + [sym_abstract_pointer_declarator] = STATE(338), + [sym_function_declarator] = STATE(295), + [sym_type_qualifier] = STATE(144), + [sym_parameter_list] = STATE(148), + [sym_parenthesized_declarator] = STATE(295), + [sym__abstract_declarator] = STATE(338), + [sym_abstract_function_declarator] = STATE(338), + [sym_array_declarator] = STATE(295), + [sym_abstract_parenthesized_declarator] = STATE(338), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(1270), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(1282), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(1270), + [sym_identifier] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(448), }, [431] = { - [sym__expression] = STATE(483), - [sym_binary_expression] = STATE(483), - [sym_update_expression] = STATE(483), - [sym_call_expression] = STATE(37), - [sym_initializer_pair] = STATE(484), - [sym_subscript_designator] = STATE(343), - [sym_conditional_expression] = STATE(483), - [sym_assignment_expression] = STATE(483), - [sym_cast_expression] = STATE(483), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(483), - [sym_field_designator] = STATE(343), - [sym_char_literal] = STATE(483), - [aux_sym_initializer_pair_repeat1] = STATE(343), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(483), - [sym_sizeof_expression] = STATE(483), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_initializer_list] = STATE(484), - [sym_concatenated_string] = STATE(483), - [sym_string_literal] = STATE(42), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(1278), - [sym_false] = ACTIONS(1893), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1895), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1893), - [sym_null] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_COMMA] = ACTIONS(432), + [anon_sym_static] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(432), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(201), + [anon_sym_LPAREN2] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(201), + [anon_sym_RPAREN] = ACTIONS(1883), + [anon_sym_auto] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(1883), }, [432] = { - [aux_sym_initializer_list_repeat1] = STATE(486), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_COMMA] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1886), }, [433] = { - [sym_char_literal] = STATE(487), - [sym__expression] = STATE(487), - [sym_binary_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(487), - [sym_sizeof_expression] = STATE(487), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_initializer_list] = STATE(488), - [sym_concatenated_string] = STATE(487), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(487), - [sym_assignment_expression] = STATE(487), - [sym_cast_expression] = STATE(487), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(487), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(33), - [sym_false] = ACTIONS(1901), - [sym_identifier] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(29), - [sym_true] = ACTIONS(1901), - [sym_null] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), }, [434] = { - [aux_sym_initializer_pair_repeat1] = STATE(434), - [sym_subscript_designator] = STATE(434), - [sym_field_designator] = STATE(434), - [anon_sym_EQ] = ACTIONS(1905), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1910), + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(165), }, [435] = { - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), }, [436] = { - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_LPAREN2] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym___attribute__] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [437] = { - [aux_sym_parameter_list_repeat1] = STATE(437), - [anon_sym_COMMA] = ACTIONS(1917), - [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1894), [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_LPAREN2] = ACTIONS(1894), + [anon_sym_COMMA] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), }, [438] = { - [sym_pointer_declarator] = STATE(303), - [sym_abstract_array_declarator] = STATE(346), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym__declarator] = STATE(303), - [sym_abstract_pointer_declarator] = STATE(346), - [sym_function_declarator] = STATE(303), - [sym_type_qualifier] = STATE(151), - [sym_parameter_list] = STATE(155), - [sym_parenthesized_declarator] = STATE(303), - [sym__abstract_declarator] = STATE(346), - [sym_abstract_function_declarator] = STATE(346), - [sym_array_declarator] = STATE(303), - [sym_abstract_parenthesized_declarator] = STATE(346), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(1129), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(466), + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1896), + [anon_sym_sizeof] = ACTIONS(165), }, [439] = { - [anon_sym_restrict] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(450), - [anon_sym_static] = ACTIONS(141), - [anon_sym_volatile] = ACTIONS(141), - [anon_sym_register] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(450), - [sym_identifier] = ACTIONS(141), - [anon_sym_const] = ACTIONS(141), - [anon_sym_LPAREN2] = ACTIONS(1920), - [anon_sym__Atomic] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_auto] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1898), [sym_comment] = ACTIONS(3), - [anon_sym_inline] = ACTIONS(141), - [anon_sym___attribute__] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_LPAREN2] = ACTIONS(1898), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), }, [440] = { - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_LPAREN2] = ACTIONS(1927), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [441] = { - [anon_sym_RPAREN] = ACTIONS(1929), - [anon_sym_LPAREN2] = ACTIONS(1929), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1929), + [anon_sym_case] = ACTIONS(1900), + [sym_true] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [sym_null] = ACTIONS(1900), + [anon_sym_goto] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_typedef] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1900), + [anon_sym__Atomic] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), + [sym_number_literal] = ACTIONS(1902), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_signed] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), + [anon_sym_L_SQUOTE] = ACTIONS(1902), + [anon_sym___attribute__] = ACTIONS(1900), + [anon_sym_sizeof] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsigned] = ACTIONS(1900), + [anon_sym_short] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [sym_preproc_directive] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [aux_sym_preproc_if_token1] = ACTIONS(1900), + [anon_sym_TILDE] = ACTIONS(1902), + [anon_sym_L_DQUOTE] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1902), + [aux_sym_preproc_include_token1] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1902), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_switch] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [sym_false] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1902), + [aux_sym_preproc_def_token1] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_auto] = ACTIONS(1900), + [anon_sym_inline] = ACTIONS(1900), }, [442] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1931), - [anon_sym_sizeof] = ACTIONS(189), + [anon_sym_case] = ACTIONS(1904), + [sym_true] = ACTIONS(1904), + [anon_sym_restrict] = ACTIONS(1904), + [sym_null] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_typedef] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1904), + [anon_sym__Atomic] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), + [sym_number_literal] = ACTIONS(1906), + [anon_sym_volatile] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_signed] = ACTIONS(1904), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), + [anon_sym_L_SQUOTE] = ACTIONS(1906), + [anon_sym___attribute__] = ACTIONS(1904), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_unsigned] = ACTIONS(1904), + [anon_sym_short] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [sym_preproc_directive] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1906), + [aux_sym_preproc_if_token1] = ACTIONS(1904), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_L_DQUOTE] = ACTIONS(1906), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_else] = ACTIONS(1904), + [sym_primitive_type] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1906), + [aux_sym_preproc_include_token1] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [sym_false] = ACTIONS(1904), + [ts_builtin_sym_end] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1906), + [aux_sym_preproc_def_token1] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_auto] = ACTIONS(1904), + [anon_sym_inline] = ACTIONS(1904), }, [443] = { - [anon_sym_RPAREN] = ACTIONS(1933), - [anon_sym_LPAREN2] = ACTIONS(1933), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), + [sym_if_statement] = STATE(483), + [sym_do_statement] = STATE(483), + [sym_for_statement] = STATE(483), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(483), + [sym_return_statement] = STATE(483), + [sym_break_statement] = STATE(483), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(483), + [sym_while_statement] = STATE(483), + [sym_continue_statement] = STATE(483), + [sym_goto_statement] = STATE(483), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(483), + [sym_expression_statement] = STATE(483), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [444] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1931), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(484), + [sym_do_statement] = STATE(484), + [sym_for_statement] = STATE(484), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(484), + [sym_return_statement] = STATE(484), + [sym_break_statement] = STATE(484), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(484), + [sym_while_statement] = STATE(484), + [sym_continue_statement] = STATE(484), + [sym_goto_statement] = STATE(484), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(484), + [sym_expression_statement] = STATE(484), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [445] = { - [anon_sym_LBRACK] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_COMMA] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [446] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1937), - [anon_sym_sizeof] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), }, [447] = { - [anon_sym_LBRACK] = ACTIONS(1939), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), + [sym_if_statement] = STATE(486), + [sym_do_statement] = STATE(486), + [sym_for_statement] = STATE(486), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(486), + [sym_return_statement] = STATE(486), + [sym_break_statement] = STATE(486), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(486), + [sym_while_statement] = STATE(486), + [sym_continue_statement] = STATE(486), + [sym_goto_statement] = STATE(486), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(486), + [sym_expression_statement] = STATE(486), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [448] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1910), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [449] = { - [anon_sym_case] = ACTIONS(1941), - [sym_false] = ACTIONS(1941), - [anon_sym_restrict] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1941), - [anon_sym_goto] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [anon_sym_typedef] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_default] = ACTIONS(1941), - [anon_sym__Atomic] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1941), - [sym_number_literal] = ACTIONS(1943), - [anon_sym_volatile] = ACTIONS(1941), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1941), - [anon_sym_signed] = ACTIONS(1941), - [anon_sym_long] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1941), - [anon_sym_L] = ACTIONS(1941), - [anon_sym___attribute__] = ACTIONS(1941), - [anon_sym_sizeof] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1941), - [anon_sym_unsigned] = ACTIONS(1941), - [anon_sym_short] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [sym_preproc_directive] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1943), - [aux_sym_preproc_if_token1] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [anon_sym_LPAREN2] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [sym_primitive_type] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_BANG] = ACTIONS(1943), - [aux_sym_preproc_include_token1] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_static] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_switch] = ACTIONS(1941), - [sym_true] = ACTIONS(1941), - [anon_sym_enum] = ACTIONS(1941), - [sym_null] = ACTIONS(1941), - [ts_builtin_sym_end] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1943), - [aux_sym_preproc_def_token1] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_auto] = ACTIONS(1941), - [anon_sym_inline] = ACTIONS(1941), + [anon_sym_RPAREN] = ACTIONS(1910), + [sym_comment] = ACTIONS(3), }, [450] = { - [anon_sym_case] = ACTIONS(1945), - [sym_false] = ACTIONS(1945), - [anon_sym_restrict] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1945), - [anon_sym_goto] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [anon_sym_typedef] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1945), - [anon_sym__Atomic] = ACTIONS(1945), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1945), - [sym_number_literal] = ACTIONS(1947), - [anon_sym_volatile] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_PLUS_PLUS] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_signed] = ACTIONS(1945), - [anon_sym_long] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1945), - [anon_sym_L] = ACTIONS(1945), - [anon_sym___attribute__] = ACTIONS(1945), - [anon_sym_sizeof] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1945), - [anon_sym_unsigned] = ACTIONS(1945), - [anon_sym_short] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [sym_preproc_directive] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1947), - [aux_sym_preproc_if_token1] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [anon_sym_LPAREN2] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1945), - [sym_primitive_type] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1947), - [aux_sym_preproc_include_token1] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_switch] = ACTIONS(1945), - [sym_true] = ACTIONS(1945), - [anon_sym_enum] = ACTIONS(1945), - [sym_null] = ACTIONS(1945), - [ts_builtin_sym_end] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1947), - [aux_sym_preproc_def_token1] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1945), - [anon_sym_auto] = ACTIONS(1945), - [anon_sym_inline] = ACTIONS(1945), + [sym_char_literal] = STATE(489), + [sym__expression] = STATE(489), + [sym_comma_expression] = STATE(490), + [sym_binary_expression] = STATE(489), + [sym_update_expression] = STATE(489), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(489), + [sym_sizeof_expression] = STATE(489), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(489), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(489), + [sym_assignment_expression] = STATE(489), + [sym_cast_expression] = STATE(489), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(489), + [sym_true] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_sizeof] = ACTIONS(33), }, [451] = { + [anon_sym_case] = ACTIONS(1918), + [sym_true] = ACTIONS(1918), + [anon_sym_restrict] = ACTIONS(1918), + [sym_null] = ACTIONS(1918), + [anon_sym_goto] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_typedef] = ACTIONS(1918), + [anon_sym_DASH_DASH] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1918), + [anon_sym__Atomic] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), + [sym_number_literal] = ACTIONS(1920), + [anon_sym_volatile] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_signed] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), + [anon_sym_L_SQUOTE] = ACTIONS(1920), + [anon_sym___attribute__] = ACTIONS(1918), + [anon_sym_sizeof] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsigned] = ACTIONS(1918), + [anon_sym_short] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [sym_preproc_directive] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1920), + [aux_sym_preproc_if_token1] = ACTIONS(1918), + [anon_sym_TILDE] = ACTIONS(1920), + [anon_sym_L_DQUOTE] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_else] = ACTIONS(1918), + [sym_primitive_type] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1920), + [aux_sym_preproc_include_token1] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_register] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [sym_false] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1920), + [aux_sym_preproc_def_token1] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_auto] = ACTIONS(1918), + [anon_sym_inline] = ACTIONS(1918), + }, + [452] = { [sym_if_statement] = STATE(491), [sym_do_statement] = STATE(491), [sym_for_statement] = STATE(491), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(491), [sym_return_statement] = STATE(491), [sym_break_statement] = STATE(491), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), [sym_labeled_statement] = STATE(491), [sym_while_statement] = STATE(491), [sym_continue_statement] = STATE(491), [sym_goto_statement] = STATE(491), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(491), [sym_expression_statement] = STATE(491), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [452] = { + [453] = { [sym_if_statement] = STATE(492), [sym_do_statement] = STATE(492), [sym_for_statement] = STATE(492), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(492), [sym_return_statement] = STATE(492), [sym_break_statement] = STATE(492), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), [sym_labeled_statement] = STATE(492), [sym_while_statement] = STATE(492), [sym_continue_statement] = STATE(492), [sym_goto_statement] = STATE(492), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(492), [sym_expression_statement] = STATE(492), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [453] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [454] = { - [anon_sym_RPAREN] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [455] = { + [anon_sym_RPAREN] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + }, + [456] = { [sym_if_statement] = STATE(494), [sym_do_statement] = STATE(494), [sym_for_statement] = STATE(494), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_declaration] = STATE(494), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [aux_sym_case_statement_repeat1] = STATE(494), [sym_switch_statement] = STATE(494), [sym_return_statement] = STATE(494), [sym_break_statement] = STATE(494), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_type_definition] = STATE(494), + [sym_char_literal] = STATE(34), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), [sym_labeled_statement] = STATE(494), [sym_while_statement] = STATE(494), [sym_continue_statement] = STATE(494), [sym_goto_statement] = STATE(494), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), [sym_compound_statement] = STATE(494), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), [sym_expression_statement] = STATE(494), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [456] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_case] = ACTIONS(1924), + [sym_true] = ACTIONS(5), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(5), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_const] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_typedef] = ACTIONS(11), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(1664), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_static] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [sym_false] = ACTIONS(5), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_long] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), }, [457] = { - [anon_sym_RPAREN] = ACTIONS(1951), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(495), + [sym_do_statement] = STATE(495), + [sym_for_statement] = STATE(495), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_declaration] = STATE(495), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [aux_sym_case_statement_repeat1] = STATE(495), + [sym_switch_statement] = STATE(495), + [sym_return_statement] = STATE(495), + [sym_break_statement] = STATE(495), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_type_definition] = STATE(495), + [sym_char_literal] = STATE(34), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_labeled_statement] = STATE(495), + [sym_while_statement] = STATE(495), + [sym_continue_statement] = STATE(495), + [sym_goto_statement] = STATE(495), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), + [sym_compound_statement] = STATE(495), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym_expression_statement] = STATE(495), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_case] = ACTIONS(1928), + [sym_true] = ACTIONS(5), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(5), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_const] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_default] = ACTIONS(1928), + [anon_sym_typedef] = ACTIONS(11), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(1664), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_static] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [sym_false] = ACTIONS(5), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_long] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), }, [458] = { - [sym_char_literal] = STATE(497), - [sym__expression] = STATE(497), - [sym_comma_expression] = STATE(498), - [sym_binary_expression] = STATE(497), - [sym_update_expression] = STATE(497), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(497), - [sym_sizeof_expression] = STATE(497), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(497), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(497), - [sym_assignment_expression] = STATE(497), - [sym_cast_expression] = STATE(497), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(497), - [sym_false] = ACTIONS(1953), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1955), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1953), - [sym_null] = ACTIONS(1953), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_COLON] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym__Atomic] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_inline] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1934), }, [459] = { - [anon_sym_case] = ACTIONS(1959), - [sym_false] = ACTIONS(1959), - [anon_sym_restrict] = ACTIONS(1959), - [sym_identifier] = ACTIONS(1959), - [anon_sym_goto] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [anon_sym_typedef] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_default] = ACTIONS(1959), - [anon_sym__Atomic] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1959), - [sym_number_literal] = ACTIONS(1961), - [anon_sym_volatile] = ACTIONS(1959), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_signed] = ACTIONS(1959), - [anon_sym_long] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1959), - [anon_sym_L] = ACTIONS(1959), - [anon_sym___attribute__] = ACTIONS(1959), - [anon_sym_sizeof] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_union] = ACTIONS(1959), - [anon_sym_unsigned] = ACTIONS(1959), - [anon_sym_short] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [sym_preproc_directive] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), - [aux_sym_preproc_if_token1] = ACTIONS(1959), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_LPAREN2] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1959), - [sym_primitive_type] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1961), - [aux_sym_preproc_include_token1] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_static] = ACTIONS(1959), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_switch] = ACTIONS(1959), - [sym_true] = ACTIONS(1959), - [anon_sym_enum] = ACTIONS(1959), - [sym_null] = ACTIONS(1959), - [ts_builtin_sym_end] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [aux_sym_preproc_def_token1] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_auto] = ACTIONS(1959), - [anon_sym_inline] = ACTIONS(1959), + [sym_enumerator] = STATE(385), + [sym_identifier] = ACTIONS(513), + [sym_comment] = ACTIONS(3), }, [460] = { - [sym_if_statement] = STATE(499), - [sym_do_statement] = STATE(499), - [sym_for_statement] = STATE(499), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(499), - [sym_return_statement] = STATE(499), - [sym_break_statement] = STATE(499), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(499), - [sym_while_statement] = STATE(499), - [sym_continue_statement] = STATE(499), - [sym_goto_statement] = STATE(499), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(499), - [sym_expression_statement] = STATE(499), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(1936), + [anon_sym_RPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), }, [461] = { - [sym_if_statement] = STATE(500), - [sym_do_statement] = STATE(500), - [sym_for_statement] = STATE(500), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(500), - [sym_return_statement] = STATE(500), - [sym_break_statement] = STATE(500), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(500), - [sym_while_statement] = STATE(500), - [sym_continue_statement] = STATE(500), - [sym_goto_statement] = STATE(500), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(500), - [sym_expression_statement] = STATE(500), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(1938), + [sym_preproc_arg] = ACTIONS(1938), }, [462] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_preproc_params_repeat1] = STATE(462), + [anon_sym_COMMA] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), }, [463] = { - [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_EQ] = ACTIONS(1943), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1943), + [anon_sym_COMMA] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1943), + [anon_sym_RPAREN] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), }, [464] = { - [sym_if_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_declaration] = STATE(502), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [aux_sym_case_statement_repeat1] = STATE(502), - [sym_switch_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_type_definition] = STATE(502), - [sym_char_literal] = STATE(35), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_labeled_statement] = STATE(502), - [sym_while_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_compound_statement] = STATE(502), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_expression_statement] = STATE(502), - [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_union] = ACTIONS(7), - [anon_sym_case] = ACTIONS(1965), - [sym_false] = ACTIONS(11), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(1700), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_const] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_default] = ACTIONS(1965), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_static] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [anon_sym_register] = ACTIONS(9), - [sym_null] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [sym_preproc_else_in_field_declaration_list] = STATE(496), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(496), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1945), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [465] = { - [sym_if_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_declaration] = STATE(503), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [aux_sym_case_statement_repeat1] = STATE(503), - [sym_switch_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_type_definition] = STATE(503), - [sym_char_literal] = STATE(35), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_labeled_statement] = STATE(503), - [sym_while_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_compound_statement] = STATE(503), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_expression_statement] = STATE(503), - [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_union] = ACTIONS(7), - [anon_sym_case] = ACTIONS(1969), - [sym_false] = ACTIONS(11), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(1700), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_const] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_default] = ACTIONS(1969), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_static] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [anon_sym_register] = ACTIONS(9), - [sym_null] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_preproc_if_token2] = ACTIONS(1947), + [sym_comment] = ACTIONS(3), }, [466] = { - [anon_sym_restrict] = ACTIONS(1973), - [sym_identifier] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_volatile] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_extern] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(1975), - [anon_sym_const] = ACTIONS(1973), - [anon_sym_LPAREN2] = ACTIONS(1975), - [anon_sym_COLON] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym__Atomic] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1975), - [anon_sym_inline] = ACTIONS(1973), - [anon_sym___attribute__] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1949), + [anon_sym_union] = ACTIONS(1949), + [anon_sym_unsigned] = ACTIONS(1949), + [anon_sym_restrict] = ACTIONS(1949), + [anon_sym_short] = ACTIONS(1949), + [anon_sym_static] = ACTIONS(1949), + [anon_sym_volatile] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_struct] = ACTIONS(1949), + [sym_preproc_directive] = ACTIONS(1949), + [anon_sym_signed] = ACTIONS(1949), + [aux_sym_preproc_if_token1] = ACTIONS(1949), + [anon_sym_long] = ACTIONS(1949), + [anon_sym_enum] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1951), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1949), + [aux_sym_preproc_def_token1] = ACTIONS(1949), + [anon_sym__Atomic] = ACTIONS(1949), + [anon_sym_auto] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1949), + [anon_sym_inline] = ACTIONS(1949), + [anon_sym___attribute__] = ACTIONS(1949), + [sym_identifier] = ACTIONS(1949), }, [467] = { - [sym_enumerator] = STATE(393), - [sym_identifier] = ACTIONS(527), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [sym_preproc_directive] = ACTIONS(1953), + [anon_sym_signed] = ACTIONS(1953), + [aux_sym_preproc_if_token1] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1955), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), + [aux_sym_preproc_def_token1] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym_auto] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [sym_identifier] = ACTIONS(1953), }, [468] = { - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1977), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1957), + [anon_sym_COMMA] = ACTIONS(1957), + [anon_sym_COLON] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_LBRACK] = ACTIONS(1957), }, [469] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(1979), - [sym_preproc_arg] = ACTIONS(1979), + [sym_char_literal] = STATE(54), + [sym__expression] = STATE(54), + [sym_binary_expression] = STATE(54), + [sym_update_expression] = STATE(54), + [sym_call_expression] = STATE(54), + [sym_pointer_expression] = STATE(54), + [sym_unary_expression] = STATE(54), + [sym_sizeof_expression] = STATE(54), + [sym_subscript_expression] = STATE(54), + [sym_parenthesized_expression] = STATE(54), + [sym_concatenated_string] = STATE(54), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(54), + [sym_assignment_expression] = STATE(54), + [sym_cast_expression] = STATE(54), + [sym_field_expression] = STATE(54), + [sym_compound_literal_expression] = STATE(54), + [sym_true] = ACTIONS(153), + [sym_null] = ACTIONS(153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1959), + [anon_sym_sizeof] = ACTIONS(165), }, [470] = { - [aux_sym_preproc_params_repeat1] = STATE(470), - [anon_sym_COMMA] = ACTIONS(1981), - [anon_sym_RPAREN] = ACTIONS(1977), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_COMMA] = ACTIONS(1961), + [anon_sym_COLON] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1961), }, [471] = { - [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1984), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [472] = { - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(569), - [sym_field_declaration] = STATE(569), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), - [sym_preproc_else_in_field_declaration_list] = STATE(504), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(504), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_field_declaration_list] = STATE(569), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token2] = ACTIONS(1986), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1963), + [anon_sym_union] = ACTIONS(1963), + [anon_sym_unsigned] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym_short] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym_struct] = ACTIONS(1963), + [sym_preproc_directive] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1963), + [aux_sym_preproc_if_token1] = ACTIONS(1963), + [anon_sym_long] = ACTIONS(1963), + [anon_sym_enum] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1963), + [aux_sym_preproc_def_token1] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [sym_primitive_type] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [sym_identifier] = ACTIONS(1963), }, [473] = { - [aux_sym_preproc_if_token2] = ACTIONS(1988), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), }, [474] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_unsigned] = ACTIONS(1990), - [anon_sym_restrict] = ACTIONS(1990), - [anon_sym_short] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_volatile] = ACTIONS(1990), - [anon_sym_register] = ACTIONS(1990), - [anon_sym_extern] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1990), - [anon_sym_struct] = ACTIONS(1990), - [sym_preproc_directive] = ACTIONS(1990), - [anon_sym_signed] = ACTIONS(1990), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [anon_sym_long] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), - [aux_sym_preproc_def_token1] = ACTIONS(1990), - [anon_sym__Atomic] = ACTIONS(1990), - [anon_sym_auto] = ACTIONS(1990), - [sym_primitive_type] = ACTIONS(1990), - [anon_sym_inline] = ACTIONS(1990), - [anon_sym___attribute__] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(1969), + [anon_sym_PERCENT_EQ] = ACTIONS(1971), + [anon_sym_DASH_EQ] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_EQ_EQ] = ACTIONS(1971), + [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1969), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_EQ] = ACTIONS(1971), + [anon_sym_LT_LT_EQ] = ACTIONS(1971), + [anon_sym_QMARK] = ACTIONS(1971), + [anon_sym_BANG_EQ] = ACTIONS(1971), + [anon_sym_CARET_EQ] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1971), + [anon_sym_GT] = ACTIONS(1969), + [anon_sym_PIPE_EQ] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_RBRACK] = ACTIONS(1971), + [anon_sym_AMP_EQ] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_COLON] = ACTIONS(1971), + [anon_sym_STAR_EQ] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_SLASH_EQ] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1971), }, [475] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [sym_preproc_directive] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [aux_sym_preproc_def_token1] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_COMMA] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [476] = { - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_COMMA] = ACTIONS(1998), - [anon_sym_COLON] = ACTIONS(1998), - [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_COMMA] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), }, [477] = { - [sym_char_literal] = STATE(58), - [sym__expression] = STATE(58), - [sym_binary_expression] = STATE(58), - [sym_update_expression] = STATE(58), - [sym_call_expression] = STATE(58), - [sym_pointer_expression] = STATE(58), - [sym_unary_expression] = STATE(58), - [sym_sizeof_expression] = STATE(58), - [sym_subscript_expression] = STATE(58), - [sym_parenthesized_expression] = STATE(58), - [sym_concatenated_string] = STATE(58), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(58), - [sym_assignment_expression] = STATE(58), - [sym_cast_expression] = STATE(58), - [sym_field_expression] = STATE(58), - [sym_compound_literal_expression] = STATE(58), - [sym_false] = ACTIONS(177), - [sym_identifier] = ACTIONS(177), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(177), - [sym_null] = ACTIONS(177), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(189), + [sym__expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_update_expression] = STATE(475), + [sym_call_expression] = STATE(36), + [sym_initializer_pair] = STATE(476), + [sym_subscript_designator] = STATE(335), + [sym_conditional_expression] = STATE(475), + [sym_assignment_expression] = STATE(475), + [sym_cast_expression] = STATE(475), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(475), + [sym_field_designator] = STATE(335), + [sym_char_literal] = STATE(475), + [aux_sym_initializer_pair_repeat1] = STATE(335), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(475), + [sym_sizeof_expression] = STATE(475), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_initializer_list] = STATE(476), + [sym_concatenated_string] = STATE(475), + [sym_string_literal] = STATE(41), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(1244), + [sym_true] = ACTIONS(1852), + [sym_null] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(1975), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(33), }, [478] = { - [anon_sym_LPAREN2] = ACTIONS(2002), - [anon_sym_COMMA] = ACTIONS(2002), - [anon_sym_COLON] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), + [aux_sym_initializer_list_repeat1] = STATE(478), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1973), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), }, [479] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_RBRACK] = ACTIONS(2000), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [480] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsigned] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym_short] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [sym_preproc_directive] = ACTIONS(2004), - [anon_sym_signed] = ACTIONS(2004), - [aux_sym_preproc_if_token1] = ACTIONS(2004), - [anon_sym_long] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), - [aux_sym_preproc_def_token1] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym_auto] = ACTIONS(2004), - [sym_primitive_type] = ACTIONS(2004), - [anon_sym_inline] = ACTIONS(2004), - [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), [sym_comment] = ACTIONS(3), }, [481] = { - [anon_sym_EQ] = ACTIONS(2008), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_LPAREN2] = ACTIONS(1982), + [anon_sym_COMMA] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), }, [482] = { - [anon_sym_GT_GT] = ACTIONS(2010), - [anon_sym_PERCENT_EQ] = ACTIONS(2012), - [anon_sym_DASH_EQ] = ACTIONS(2012), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_EQ_EQ] = ACTIONS(2012), - [anon_sym_SLASH] = ACTIONS(2010), - [anon_sym_DASH_GT] = ACTIONS(2012), - [anon_sym_LT_LT] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(2012), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(2012), - [anon_sym_LT_LT_EQ] = ACTIONS(2012), - [anon_sym_QMARK] = ACTIONS(2012), - [anon_sym_BANG_EQ] = ACTIONS(2012), - [anon_sym_CARET_EQ] = ACTIONS(2012), - [anon_sym_COMMA] = ACTIONS(2012), - [anon_sym_PLUS_PLUS] = ACTIONS(2012), - [anon_sym_GT_GT_EQ] = ACTIONS(2012), - [anon_sym_GT] = ACTIONS(2010), - [anon_sym_PIPE_EQ] = ACTIONS(2012), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_RBRACK] = ACTIONS(2012), - [anon_sym_AMP_EQ] = ACTIONS(2012), - [anon_sym_PERCENT] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_EQ] = ACTIONS(2010), - [anon_sym_LPAREN2] = ACTIONS(2012), - [anon_sym_GT_EQ] = ACTIONS(2012), - [anon_sym_RBRACE] = ACTIONS(2012), - [anon_sym_COLON] = ACTIONS(2012), - [anon_sym_STAR_EQ] = ACTIONS(2012), - [anon_sym_PIPE_PIPE] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_LT_EQ] = ACTIONS(2012), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_SLASH_EQ] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_CARET] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_DOT] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(1984), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1984), + [anon_sym_LPAREN2] = ACTIONS(1984), + [anon_sym_COMMA] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1984), }, [483] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_COMMA] = ACTIONS(2014), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_case] = ACTIONS(1986), + [sym_true] = ACTIONS(1986), + [anon_sym_restrict] = ACTIONS(1986), + [sym_null] = ACTIONS(1986), + [anon_sym_goto] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1986), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1986), + [anon_sym__Atomic] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), + [sym_number_literal] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_signed] = ACTIONS(1986), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1986), + [anon_sym_unsigned] = ACTIONS(1986), + [anon_sym_short] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [sym_preproc_directive] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1988), + [aux_sym_preproc_if_token1] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_L_DQUOTE] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1986), + [sym_primitive_type] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_switch] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [sym_false] = ACTIONS(1986), + [ts_builtin_sym_end] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1988), + [aux_sym_preproc_def_token1] = ACTIONS(1986), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_auto] = ACTIONS(1986), + [anon_sym_inline] = ACTIONS(1986), }, [484] = { - [anon_sym_COMMA] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_case] = ACTIONS(1990), + [sym_true] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_signed] = ACTIONS(1990), [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1992), + [aux_sym_preproc_if_token1] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1992), + [anon_sym_L_DQUOTE] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [sym_false] = ACTIONS(1990), + [ts_builtin_sym_end] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1992), + [aux_sym_preproc_def_token1] = ACTIONS(1990), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_auto] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), }, [485] = { - [sym__expression] = STATE(483), - [sym_binary_expression] = STATE(483), - [sym_update_expression] = STATE(483), - [sym_call_expression] = STATE(37), - [sym_initializer_pair] = STATE(484), - [sym_subscript_designator] = STATE(343), - [sym_conditional_expression] = STATE(483), - [sym_assignment_expression] = STATE(483), - [sym_cast_expression] = STATE(483), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(483), - [sym_field_designator] = STATE(343), - [sym_char_literal] = STATE(483), - [aux_sym_initializer_pair_repeat1] = STATE(343), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(483), - [sym_sizeof_expression] = STATE(483), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_initializer_list] = STATE(484), - [sym_concatenated_string] = STATE(483), - [sym_string_literal] = STATE(42), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(1278), - [sym_false] = ACTIONS(1893), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2016), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1893), - [sym_null] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(500), + [sym_do_statement] = STATE(500), + [sym_for_statement] = STATE(500), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(500), + [sym_return_statement] = STATE(500), + [sym_break_statement] = STATE(500), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(500), + [sym_while_statement] = STATE(500), + [sym_continue_statement] = STATE(500), + [sym_goto_statement] = STATE(500), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(500), + [sym_expression_statement] = STATE(500), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [486] = { - [aux_sym_initializer_list_repeat1] = STATE(486), - [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_case] = ACTIONS(1994), + [sym_true] = ACTIONS(1994), + [anon_sym_restrict] = ACTIONS(1994), + [sym_null] = ACTIONS(1994), + [anon_sym_goto] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1994), + [anon_sym__Atomic] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), + [sym_number_literal] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1994), [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_unsigned] = ACTIONS(1994), + [anon_sym_short] = ACTIONS(1994), + [anon_sym_do] = ACTIONS(1994), + [sym_preproc_directive] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1996), + [aux_sym_preproc_if_token1] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1996), + [anon_sym_L_DQUOTE] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1994), + [sym_primitive_type] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1994), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_switch] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [sym_false] = ACTIONS(1994), + [ts_builtin_sym_end] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1996), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [anon_sym_PLUS] = ACTIONS(1994), + [anon_sym_auto] = ACTIONS(1994), + [anon_sym_inline] = ACTIONS(1994), }, [487] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_COMMA] = ACTIONS(2021), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(501), + [sym_do_statement] = STATE(501), + [sym_for_statement] = STATE(501), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(501), + [sym_return_statement] = STATE(501), + [sym_break_statement] = STATE(501), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(501), + [sym_while_statement] = STATE(501), + [sym_continue_statement] = STATE(501), + [sym_goto_statement] = STATE(501), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(501), + [sym_expression_statement] = STATE(501), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [488] = { - [anon_sym_COMMA] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(502), + [sym_do_statement] = STATE(502), + [sym_for_statement] = STATE(502), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(502), + [sym_return_statement] = STATE(502), + [sym_break_statement] = STATE(502), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(502), + [sym_while_statement] = STATE(502), + [sym_continue_statement] = STATE(502), + [sym_goto_statement] = STATE(502), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(502), + [sym_expression_statement] = STATE(502), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [489] = { - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_LPAREN2] = ACTIONS(2023), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2023), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(1998), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [490] = { - [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_RPAREN] = ACTIONS(1998), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2025), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_COMMA] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2025), }, [491] = { - [anon_sym_case] = ACTIONS(2027), - [sym_false] = ACTIONS(2027), - [anon_sym_restrict] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2027), - [anon_sym_goto] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [anon_sym_typedef] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_default] = ACTIONS(2027), - [anon_sym__Atomic] = ACTIONS(2027), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2027), - [sym_number_literal] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2027), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_struct] = ACTIONS(2027), - [anon_sym_signed] = ACTIONS(2027), - [anon_sym_long] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2027), - [anon_sym_L] = ACTIONS(2027), - [anon_sym___attribute__] = ACTIONS(2027), - [anon_sym_sizeof] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2027), - [anon_sym_unsigned] = ACTIONS(2027), - [anon_sym_short] = ACTIONS(2027), - [anon_sym_do] = ACTIONS(2027), - [sym_preproc_directive] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2029), - [aux_sym_preproc_if_token1] = ACTIONS(2027), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_else] = ACTIONS(2027), - [sym_primitive_type] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_BANG] = ACTIONS(2029), - [aux_sym_preproc_include_token1] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_static] = ACTIONS(2027), - [anon_sym_register] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_switch] = ACTIONS(2027), - [sym_true] = ACTIONS(2027), - [anon_sym_enum] = ACTIONS(2027), - [sym_null] = ACTIONS(2027), - [ts_builtin_sym_end] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2029), - [aux_sym_preproc_def_token1] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_auto] = ACTIONS(2027), - [anon_sym_inline] = ACTIONS(2027), + [anon_sym_case] = ACTIONS(2000), + [sym_true] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [sym_null] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2000), + [anon_sym__Atomic] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [sym_preproc_directive] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_else] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [aux_sym_preproc_include_token1] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [ts_builtin_sym_end] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2002), + [aux_sym_preproc_def_token1] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), }, [492] = { - [anon_sym_case] = ACTIONS(2031), - [sym_false] = ACTIONS(2031), - [anon_sym_restrict] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2031), - [anon_sym_goto] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_typedef] = ACTIONS(2031), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym_default] = ACTIONS(2031), - [anon_sym__Atomic] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2031), - [sym_number_literal] = ACTIONS(2033), - [anon_sym_volatile] = ACTIONS(2031), - [anon_sym_SQUOTE] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_struct] = ACTIONS(2031), - [anon_sym_signed] = ACTIONS(2031), - [anon_sym_long] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2031), - [anon_sym_L] = ACTIONS(2031), - [anon_sym___attribute__] = ACTIONS(2031), - [anon_sym_sizeof] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_union] = ACTIONS(2031), - [anon_sym_unsigned] = ACTIONS(2031), - [anon_sym_short] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [sym_preproc_directive] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2033), - [aux_sym_preproc_if_token1] = ACTIONS(2031), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2031), - [sym_primitive_type] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [aux_sym_preproc_include_token1] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2031), - [anon_sym_STAR] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_switch] = ACTIONS(2031), - [sym_true] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [sym_null] = ACTIONS(2031), - [ts_builtin_sym_end] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2033), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_auto] = ACTIONS(2031), - [anon_sym_inline] = ACTIONS(2031), + [anon_sym_case] = ACTIONS(2004), + [sym_true] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_default] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym_sizeof] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [sym_preproc_directive] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2006), + [aux_sym_preproc_include_token1] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [ts_builtin_sym_end] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), }, [493] = { - [sym_if_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(504), + [sym_do_statement] = STATE(504), + [sym_for_statement] = STATE(504), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(504), + [sym_return_statement] = STATE(504), + [sym_break_statement] = STATE(504), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(504), + [sym_while_statement] = STATE(504), + [sym_continue_statement] = STATE(504), + [sym_goto_statement] = STATE(504), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(504), + [sym_expression_statement] = STATE(504), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [494] = { - [anon_sym_case] = ACTIONS(2035), - [sym_false] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [sym_identifier] = ACTIONS(2035), - [anon_sym_goto] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_typedef] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_default] = ACTIONS(2035), - [anon_sym__Atomic] = ACTIONS(2035), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2035), - [sym_number_literal] = ACTIONS(2037), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_SQUOTE] = ACTIONS(2037), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_signed] = ACTIONS(2035), - [anon_sym_long] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2035), - [anon_sym_L] = ACTIONS(2035), - [anon_sym___attribute__] = ACTIONS(2035), - [anon_sym_sizeof] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_union] = ACTIONS(2035), - [anon_sym_unsigned] = ACTIONS(2035), - [anon_sym_short] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [sym_preproc_directive] = ACTIONS(2035), - [anon_sym_AMP] = ACTIONS(2037), - [aux_sym_preproc_if_token1] = ACTIONS(2035), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2037), - [anon_sym_LPAREN2] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_else] = ACTIONS(2035), - [sym_primitive_type] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [aux_sym_preproc_include_token1] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [sym_true] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [sym_null] = ACTIONS(2035), - [ts_builtin_sym_end] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2037), - [aux_sym_preproc_def_token1] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_auto] = ACTIONS(2035), - [anon_sym_inline] = ACTIONS(2035), + [sym_if_statement] = STATE(495), + [sym_do_statement] = STATE(495), + [sym_for_statement] = STATE(495), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_declaration] = STATE(495), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [aux_sym_case_statement_repeat1] = STATE(495), + [sym_switch_statement] = STATE(495), + [sym_return_statement] = STATE(495), + [sym_break_statement] = STATE(495), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_type_definition] = STATE(495), + [sym_char_literal] = STATE(34), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_labeled_statement] = STATE(495), + [sym_while_statement] = STATE(495), + [sym_continue_statement] = STATE(495), + [sym_goto_statement] = STATE(495), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), + [sym_compound_statement] = STATE(495), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym_expression_statement] = STATE(495), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_union] = ACTIONS(37), + [anon_sym_case] = ACTIONS(2008), + [sym_true] = ACTIONS(5), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(5), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_const] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_typedef] = ACTIONS(11), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(1664), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_static] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [sym_false] = ACTIONS(5), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_long] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), }, [495] = { - [sym_if_statement] = STATE(509), - [sym_do_statement] = STATE(509), - [sym_for_statement] = STATE(509), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(509), - [sym_return_statement] = STATE(509), - [sym_break_statement] = STATE(509), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(509), - [sym_while_statement] = STATE(509), - [sym_continue_statement] = STATE(509), - [sym_goto_statement] = STATE(509), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(509), - [sym_expression_statement] = STATE(509), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(495), + [sym_do_statement] = STATE(495), + [sym_for_statement] = STATE(495), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_declaration] = STATE(495), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [aux_sym_case_statement_repeat1] = STATE(495), + [sym_switch_statement] = STATE(495), + [sym_return_statement] = STATE(495), + [sym_break_statement] = STATE(495), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_type_definition] = STATE(495), + [sym_char_literal] = STATE(34), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_labeled_statement] = STATE(495), + [sym_while_statement] = STATE(495), + [sym_continue_statement] = STATE(495), + [sym_goto_statement] = STATE(495), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), + [sym_compound_statement] = STATE(495), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym_expression_statement] = STATE(495), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2018), + [anon_sym_unsigned] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2023), + [anon_sym_short] = ACTIONS(2020), + [sym_true] = ACTIONS(2026), + [sym_null] = ACTIONS(2026), + [sym_comment] = ACTIONS(3), + [anon_sym_do] = ACTIONS(2029), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2035), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2023), + [anon_sym_LPAREN2] = ACTIONS(2041), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2023), + [sym_primitive_type] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_volatile] = ACTIONS(2023), + [anon_sym_register] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_STAR] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2076), + [anon_sym_switch] = ACTIONS(2079), + [anon_sym_signed] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_long] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [sym_number_literal] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_DQUOTE] = ACTIONS(2052), + [sym_false] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_auto] = ACTIONS(2070), + [anon_sym_L_SQUOTE] = ACTIONS(2097), + [anon_sym_inline] = ACTIONS(2070), + [anon_sym___attribute__] = ACTIONS(2103), + [anon_sym_sizeof] = ACTIONS(2106), }, [496] = { - [sym_if_statement] = STATE(510), - [sym_do_statement] = STATE(510), - [sym_for_statement] = STATE(510), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(510), - [sym_return_statement] = STATE(510), - [sym_break_statement] = STATE(510), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(510), - [sym_while_statement] = STATE(510), - [sym_continue_statement] = STATE(510), - [sym_goto_statement] = STATE(510), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(510), - [sym_expression_statement] = STATE(510), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_preproc_if_token2] = ACTIONS(2109), + [sym_comment] = ACTIONS(3), }, [497] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2039), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_COLON] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_RPAREN] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), }, [498] = { - [anon_sym_RPAREN] = ACTIONS(2039), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(2113), + [anon_sym_PERCENT_EQ] = ACTIONS(2115), + [anon_sym_DASH_EQ] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2113), + [anon_sym_EQ_EQ] = ACTIONS(2115), + [anon_sym_SLASH] = ACTIONS(2113), + [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LT_LT] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_PLUS_EQ] = ACTIONS(2115), + [anon_sym_LT_LT_EQ] = ACTIONS(2115), + [anon_sym_QMARK] = ACTIONS(2115), + [anon_sym_BANG_EQ] = ACTIONS(2115), + [anon_sym_CARET_EQ] = ACTIONS(2115), + [anon_sym_COMMA] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(2115), + [anon_sym_GT] = ACTIONS(2113), + [anon_sym_PIPE_EQ] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_RBRACK] = ACTIONS(2115), + [anon_sym_AMP_EQ] = ACTIONS(2115), + [anon_sym_PERCENT] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), + [anon_sym_EQ] = ACTIONS(2113), + [anon_sym_LPAREN2] = ACTIONS(2115), + [anon_sym_GT_EQ] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_COLON] = ACTIONS(2115), + [anon_sym_STAR_EQ] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_LT_EQ] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2113), + [anon_sym_SLASH_EQ] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_CARET] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_DOT] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2115), }, [499] = { - [anon_sym_case] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [anon_sym_restrict] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2041), - [anon_sym_goto] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_typedef] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_default] = ACTIONS(2041), - [anon_sym__Atomic] = ACTIONS(2041), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2041), - [sym_number_literal] = ACTIONS(2043), - [anon_sym_volatile] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_signed] = ACTIONS(2041), - [anon_sym_long] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2041), - [anon_sym_L] = ACTIONS(2041), - [anon_sym___attribute__] = ACTIONS(2041), - [anon_sym_sizeof] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_unsigned] = ACTIONS(2041), - [anon_sym_short] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [sym_preproc_directive] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2043), - [aux_sym_preproc_if_token1] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_LPAREN2] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2041), - [sym_primitive_type] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [aux_sym_preproc_include_token1] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_register] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [sym_null] = ACTIONS(2041), - [ts_builtin_sym_end] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2043), - [aux_sym_preproc_def_token1] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_auto] = ACTIONS(2041), - [anon_sym_inline] = ACTIONS(2041), + [sym_char_literal] = STATE(475), + [sym__expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_update_expression] = STATE(475), + [sym_call_expression] = STATE(36), + [aux_sym_initializer_pair_repeat1] = STATE(335), + [sym_initializer_pair] = STATE(476), + [sym_subscript_designator] = STATE(335), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(475), + [sym_sizeof_expression] = STATE(475), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_initializer_list] = STATE(476), + [sym_concatenated_string] = STATE(475), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(475), + [sym_assignment_expression] = STATE(475), + [sym_cast_expression] = STATE(475), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(475), + [sym_field_designator] = STATE(335), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_sizeof] = ACTIONS(33), + [sym_true] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_null] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(43), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1852), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(1244), }, [500] = { - [anon_sym_case] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [anon_sym_restrict] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_typedef] = ACTIONS(2045), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_default] = ACTIONS(2045), - [anon_sym__Atomic] = ACTIONS(2045), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2045), - [sym_number_literal] = ACTIONS(2047), - [anon_sym_volatile] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_signed] = ACTIONS(2045), - [anon_sym_long] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2045), - [anon_sym_L] = ACTIONS(2045), - [anon_sym___attribute__] = ACTIONS(2045), - [anon_sym_sizeof] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_union] = ACTIONS(2045), - [anon_sym_unsigned] = ACTIONS(2045), - [anon_sym_short] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2047), - [aux_sym_preproc_if_token1] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2047), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2045), - [sym_primitive_type] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [aux_sym_preproc_include_token1] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_register] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [sym_null] = ACTIONS(2045), - [ts_builtin_sym_end] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2047), - [aux_sym_preproc_def_token1] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_auto] = ACTIONS(2045), - [anon_sym_inline] = ACTIONS(2045), + [anon_sym_case] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [anon_sym_restrict] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [anon_sym_goto] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_typedef] = ACTIONS(2117), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_default] = ACTIONS(2117), + [anon_sym__Atomic] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2117), + [sym_number_literal] = ACTIONS(2119), + [anon_sym_volatile] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_signed] = ACTIONS(2117), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2119), + [anon_sym___attribute__] = ACTIONS(2117), + [anon_sym_sizeof] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2117), + [anon_sym_unsigned] = ACTIONS(2117), + [anon_sym_short] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [sym_preproc_directive] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2119), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_L_DQUOTE] = ACTIONS(2119), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_else] = ACTIONS(2117), + [sym_primitive_type] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2119), + [aux_sym_preproc_include_token1] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2119), + [anon_sym_register] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [ts_builtin_sym_end] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2119), + [aux_sym_preproc_def_token1] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_auto] = ACTIONS(2117), + [anon_sym_inline] = ACTIONS(2117), }, [501] = { - [sym_if_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_case] = ACTIONS(2121), + [sym_true] = ACTIONS(2121), + [anon_sym_restrict] = ACTIONS(2121), + [sym_null] = ACTIONS(2121), + [anon_sym_goto] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_typedef] = ACTIONS(2121), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(2121), + [anon_sym__Atomic] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [sym_number_literal] = ACTIONS(2123), + [anon_sym_volatile] = ACTIONS(2121), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_signed] = ACTIONS(2121), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [anon_sym_L_SQUOTE] = ACTIONS(2123), + [anon_sym___attribute__] = ACTIONS(2121), + [anon_sym_sizeof] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_unsigned] = ACTIONS(2121), + [anon_sym_short] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [sym_preproc_directive] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(2121), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_LPAREN2] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_else] = ACTIONS(2121), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2123), + [aux_sym_preproc_include_token1] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2123), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [sym_false] = ACTIONS(2121), + [ts_builtin_sym_end] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2123), + [aux_sym_preproc_def_token1] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_auto] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), }, [502] = { - [sym_if_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_declaration] = STATE(503), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [aux_sym_case_statement_repeat1] = STATE(503), - [sym_switch_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_type_definition] = STATE(503), - [sym_char_literal] = STATE(35), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_labeled_statement] = STATE(503), - [sym_while_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_compound_statement] = STATE(503), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_expression_statement] = STATE(503), - [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_union] = ACTIONS(7), - [anon_sym_case] = ACTIONS(2049), - [sym_false] = ACTIONS(11), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(1700), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_const] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_static] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [anon_sym_register] = ACTIONS(9), - [sym_null] = ACTIONS(11), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_case] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [anon_sym_restrict] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [anon_sym_goto] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_typedef] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2125), + [anon_sym__Atomic] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2125), + [sym_number_literal] = ACTIONS(2127), + [anon_sym_volatile] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_signed] = ACTIONS(2125), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2125), + [anon_sym_L_SQUOTE] = ACTIONS(2127), + [anon_sym___attribute__] = ACTIONS(2125), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsigned] = ACTIONS(2125), + [anon_sym_short] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [sym_preproc_directive] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2127), + [aux_sym_preproc_if_token1] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_L_DQUOTE] = ACTIONS(2127), + [anon_sym_LPAREN2] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_else] = ACTIONS(2125), + [sym_primitive_type] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2127), + [aux_sym_preproc_include_token1] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_register] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [ts_builtin_sym_end] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2127), + [aux_sym_preproc_def_token1] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_auto] = ACTIONS(2125), + [anon_sym_inline] = ACTIONS(2125), }, [503] = { - [sym_if_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_declaration] = STATE(503), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [aux_sym_case_statement_repeat1] = STATE(503), - [sym_switch_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_type_definition] = STATE(503), - [sym_char_literal] = STATE(35), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_labeled_statement] = STATE(503), - [sym_while_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_compound_statement] = STATE(503), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_expression_statement] = STATE(503), - [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_union] = ACTIONS(2056), - [anon_sym_case] = ACTIONS(2059), - [anon_sym_unsigned] = ACTIONS(2061), - [anon_sym_restrict] = ACTIONS(2064), - [anon_sym_short] = ACTIONS(2061), - [sym_false] = ACTIONS(2067), - [sym_identifier] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2073), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2079), - [anon_sym_TILDE] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2064), - [anon_sym_LPAREN2] = ACTIONS(2085), - [anon_sym_typedef] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym__Atomic] = ACTIONS(2064), - [sym_primitive_type] = ACTIONS(2099), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_volatile] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2111), - [anon_sym_extern] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2120), - [anon_sym_signed] = ACTIONS(2061), - [anon_sym_enum] = ACTIONS(2123), - [anon_sym_long] = ACTIONS(2061), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [sym_number_literal] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2132), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2141), - [sym_true] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_auto] = ACTIONS(2111), - [anon_sym_L] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2111), - [anon_sym___attribute__] = ACTIONS(2147), - [anon_sym_sizeof] = ACTIONS(2150), + [sym_if_statement] = STATE(505), + [sym_do_statement] = STATE(505), + [sym_for_statement] = STATE(505), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(505), + [sym_return_statement] = STATE(505), + [sym_break_statement] = STATE(505), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(505), + [sym_while_statement] = STATE(505), + [sym_continue_statement] = STATE(505), + [sym_goto_statement] = STATE(505), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(505), + [sym_expression_statement] = STATE(505), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(39), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(477), + [anon_sym_for] = ACTIONS(55), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(65), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [504] = { - [aux_sym_preproc_if_token2] = ACTIONS(2153), - [sym_comment] = ACTIONS(3), + [anon_sym_case] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [anon_sym_restrict] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [anon_sym_goto] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_typedef] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2129), + [anon_sym__Atomic] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2129), + [sym_number_literal] = ACTIONS(2131), + [anon_sym_volatile] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_signed] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2129), + [anon_sym_L_SQUOTE] = ACTIONS(2131), + [anon_sym___attribute__] = ACTIONS(2129), + [anon_sym_sizeof] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsigned] = ACTIONS(2129), + [anon_sym_short] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [sym_preproc_directive] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2131), + [aux_sym_preproc_if_token1] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_L_DQUOTE] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2129), + [sym_primitive_type] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2131), + [aux_sym_preproc_include_token1] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [ts_builtin_sym_end] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2131), + [aux_sym_preproc_def_token1] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_auto] = ACTIONS(2129), + [anon_sym_inline] = ACTIONS(2129), }, [505] = { - [anon_sym_LPAREN2] = ACTIONS(2155), - [anon_sym_COMMA] = ACTIONS(2155), - [anon_sym_COLON] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2155), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_case] = ACTIONS(2133), + [sym_true] = ACTIONS(2133), + [anon_sym_restrict] = ACTIONS(2133), + [sym_null] = ACTIONS(2133), + [anon_sym_goto] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_typedef] = ACTIONS(2133), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym_default] = ACTIONS(2133), + [anon_sym__Atomic] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2133), + [sym_number_literal] = ACTIONS(2135), + [anon_sym_volatile] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_signed] = ACTIONS(2133), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2133), + [anon_sym_L_SQUOTE] = ACTIONS(2135), + [anon_sym___attribute__] = ACTIONS(2133), + [anon_sym_sizeof] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_unsigned] = ACTIONS(2133), + [anon_sym_short] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [sym_preproc_directive] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_L_DQUOTE] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_else] = ACTIONS(2133), + [sym_primitive_type] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2135), + [aux_sym_preproc_include_token1] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2135), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_switch] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [ts_builtin_sym_end] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2135), + [aux_sym_preproc_def_token1] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_auto] = ACTIONS(2133), + [anon_sym_inline] = ACTIONS(2133), }, [506] = { - [anon_sym_GT_GT] = ACTIONS(2157), - [anon_sym_PERCENT_EQ] = ACTIONS(2159), - [anon_sym_DASH_EQ] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_EQ_EQ] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2157), - [anon_sym_DASH_GT] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(2159), - [anon_sym_LT_LT_EQ] = ACTIONS(2159), - [anon_sym_QMARK] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_CARET_EQ] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_GT_GT_EQ] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2157), - [anon_sym_PIPE_EQ] = ACTIONS(2159), - [anon_sym_RPAREN] = ACTIONS(2159), - [anon_sym_RBRACK] = ACTIONS(2159), - [anon_sym_AMP_EQ] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_EQ] = ACTIONS(2157), - [anon_sym_LPAREN2] = ACTIONS(2159), - [anon_sym_GT_EQ] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_COLON] = ACTIONS(2159), - [anon_sym_STAR_EQ] = ACTIONS(2159), - [anon_sym_PIPE_PIPE] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_LT_EQ] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_SLASH_EQ] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_const] = ACTIONS(201), + [anon_sym_LPAREN2] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym__Atomic] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_static] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(203), }, [507] = { - [sym_char_literal] = STATE(483), - [sym__expression] = STATE(483), - [sym_binary_expression] = STATE(483), - [sym_update_expression] = STATE(483), - [sym_call_expression] = STATE(37), - [aux_sym_initializer_pair_repeat1] = STATE(343), - [sym_initializer_pair] = STATE(484), - [sym_subscript_designator] = STATE(343), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(483), - [sym_sizeof_expression] = STATE(483), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_initializer_list] = STATE(484), - [sym_concatenated_string] = STATE(483), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(483), - [sym_assignment_expression] = STATE(483), - [sym_cast_expression] = STATE(483), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(483), - [sym_field_designator] = STATE(343), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_sizeof] = ACTIONS(25), - [sym_false] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_identifier] = ACTIONS(195), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(29), - [sym_null] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_DOT] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1278), + [sym_true] = ACTIONS(255), + [anon_sym_restrict] = ACTIONS(255), + [sym_null] = ACTIONS(255), + [anon_sym_goto] = ACTIONS(255), + [anon_sym_const] = ACTIONS(255), + [anon_sym_typedef] = ACTIONS(255), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym__Atomic] = ACTIONS(255), + [sym_identifier] = ACTIONS(255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(255), + [sym_number_literal] = ACTIONS(257), + [anon_sym_volatile] = ACTIONS(255), + [anon_sym_SQUOTE] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_struct] = ACTIONS(255), + [anon_sym_signed] = ACTIONS(255), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(255), + [anon_sym_L_SQUOTE] = ACTIONS(257), + [anon_sym___attribute__] = ACTIONS(255), + [anon_sym_sizeof] = ACTIONS(255), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_union] = ACTIONS(255), + [anon_sym_unsigned] = ACTIONS(255), + [anon_sym_short] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [sym_preproc_directive] = ACTIONS(255), + [anon_sym_AMP] = ACTIONS(257), + [aux_sym_preproc_if_token1] = ACTIONS(255), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_L_DQUOTE] = ACTIONS(257), + [anon_sym_LPAREN2] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_else] = ACTIONS(255), + [sym_primitive_type] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(257), + [aux_sym_preproc_include_token1] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_static] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [anon_sym_register] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_enum] = ACTIONS(255), + [sym_false] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(257), + [aux_sym_preproc_def_token1] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_auto] = ACTIONS(255), + [anon_sym_inline] = ACTIONS(255), }, [508] = { - [anon_sym_case] = ACTIONS(2161), - [sym_false] = ACTIONS(2161), - [anon_sym_restrict] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2161), - [anon_sym_goto] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_typedef] = ACTIONS(2161), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2161), - [anon_sym__Atomic] = ACTIONS(2161), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2161), - [sym_number_literal] = ACTIONS(2163), - [anon_sym_volatile] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_extern] = ACTIONS(2161), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_signed] = ACTIONS(2161), - [anon_sym_long] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2161), - [anon_sym_L] = ACTIONS(2161), - [anon_sym___attribute__] = ACTIONS(2161), - [anon_sym_sizeof] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsigned] = ACTIONS(2161), - [anon_sym_short] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [sym_preproc_directive] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2163), - [aux_sym_preproc_if_token1] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2161), - [sym_primitive_type] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2163), - [aux_sym_preproc_include_token1] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_register] = ACTIONS(2161), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_switch] = ACTIONS(2161), - [sym_true] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [sym_null] = ACTIONS(2161), - [ts_builtin_sym_end] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2163), - [aux_sym_preproc_def_token1] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_auto] = ACTIONS(2161), - [anon_sym_inline] = ACTIONS(2161), + [aux_sym_sized_type_specifier_repeat1] = STATE(116), + [anon_sym_unsigned] = ACTIONS(313), + [anon_sym_restrict] = ACTIONS(315), + [anon_sym_short] = ACTIONS(313), + [anon_sym_volatile] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_signed] = ACTIONS(313), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(313), + [anon_sym_const] = ACTIONS(315), + [anon_sym_LPAREN2] = ACTIONS(317), + [anon_sym__Atomic] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(317), + [sym_identifier] = ACTIONS(2137), + [sym_primitive_type] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(317), }, [509] = { - [anon_sym_case] = ACTIONS(2165), - [sym_false] = ACTIONS(2165), - [anon_sym_restrict] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2165), - [anon_sym_goto] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_typedef] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2165), - [anon_sym__Atomic] = ACTIONS(2165), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2165), - [sym_number_literal] = ACTIONS(2167), - [anon_sym_volatile] = ACTIONS(2165), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_signed] = ACTIONS(2165), - [anon_sym_long] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2165), - [anon_sym_L] = ACTIONS(2165), - [anon_sym___attribute__] = ACTIONS(2165), - [anon_sym_sizeof] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2165), - [anon_sym_unsigned] = ACTIONS(2165), - [anon_sym_short] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [sym_preproc_directive] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2167), - [aux_sym_preproc_if_token1] = ACTIONS(2165), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2167), - [aux_sym_preproc_include_token1] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_switch] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [sym_null] = ACTIONS(2165), - [ts_builtin_sym_end] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2167), - [aux_sym_preproc_def_token1] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_auto] = ACTIONS(2165), - [anon_sym_inline] = ACTIONS(2165), + [sym_true] = ACTIONS(336), + [anon_sym_restrict] = ACTIONS(336), + [sym_null] = ACTIONS(336), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_const] = ACTIONS(336), + [anon_sym_typedef] = ACTIONS(336), + [anon_sym_DASH_DASH] = ACTIONS(338), + [anon_sym__Atomic] = ACTIONS(336), + [sym_identifier] = ACTIONS(336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(336), + [sym_number_literal] = ACTIONS(338), + [anon_sym_volatile] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(338), + [anon_sym_extern] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(338), + [anon_sym_struct] = ACTIONS(336), + [anon_sym_signed] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(336), + [anon_sym_while] = ACTIONS(336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(336), + [anon_sym_L_SQUOTE] = ACTIONS(338), + [anon_sym___attribute__] = ACTIONS(336), + [anon_sym_sizeof] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_union] = ACTIONS(336), + [anon_sym_unsigned] = ACTIONS(336), + [anon_sym_short] = ACTIONS(336), + [anon_sym_do] = ACTIONS(336), + [sym_preproc_directive] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(338), + [aux_sym_preproc_if_token1] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_L_DQUOTE] = ACTIONS(338), + [anon_sym_LPAREN2] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_else] = ACTIONS(336), + [sym_primitive_type] = ACTIONS(336), + [anon_sym_for] = ACTIONS(336), + [anon_sym_break] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [aux_sym_preproc_include_token1] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_static] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_register] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_if] = ACTIONS(336), + [anon_sym_switch] = ACTIONS(336), + [anon_sym_enum] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [anon_sym_return] = ACTIONS(336), + [anon_sym_continue] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(338), + [aux_sym_preproc_def_token1] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_auto] = ACTIONS(336), + [anon_sym_inline] = ACTIONS(336), }, [510] = { - [anon_sym_case] = ACTIONS(2169), - [sym_false] = ACTIONS(2169), - [anon_sym_restrict] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2169), - [anon_sym_goto] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_typedef] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(2169), - [anon_sym__Atomic] = ACTIONS(2169), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2169), - [sym_number_literal] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_signed] = ACTIONS(2169), - [anon_sym_long] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2169), - [anon_sym_L] = ACTIONS(2169), - [anon_sym___attribute__] = ACTIONS(2169), - [anon_sym_sizeof] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_unsigned] = ACTIONS(2169), - [anon_sym_short] = ACTIONS(2169), - [anon_sym_do] = ACTIONS(2169), - [sym_preproc_directive] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2171), - [aux_sym_preproc_if_token1] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_LPAREN2] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_else] = ACTIONS(2169), - [sym_primitive_type] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2171), - [aux_sym_preproc_include_token1] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_register] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_switch] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [sym_null] = ACTIONS(2169), - [ts_builtin_sym_end] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2171), - [aux_sym_preproc_def_token1] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_auto] = ACTIONS(2169), - [anon_sym_inline] = ACTIONS(2169), + [sym_true] = ACTIONS(368), + [anon_sym_restrict] = ACTIONS(368), + [sym_null] = ACTIONS(368), + [anon_sym_goto] = ACTIONS(368), + [anon_sym_const] = ACTIONS(368), + [anon_sym_typedef] = ACTIONS(368), + [anon_sym_DASH_DASH] = ACTIONS(370), + [anon_sym__Atomic] = ACTIONS(368), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(368), + [sym_number_literal] = ACTIONS(370), + [anon_sym_volatile] = ACTIONS(368), + [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_extern] = ACTIONS(368), + [anon_sym_PLUS_PLUS] = ACTIONS(370), + [anon_sym_struct] = ACTIONS(368), + [anon_sym_signed] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(368), + [anon_sym_while] = ACTIONS(368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(370), + [anon_sym___attribute__] = ACTIONS(368), + [anon_sym_sizeof] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_union] = ACTIONS(368), + [anon_sym_unsigned] = ACTIONS(368), + [anon_sym_short] = ACTIONS(368), + [anon_sym_do] = ACTIONS(368), + [sym_preproc_directive] = ACTIONS(368), + [anon_sym_AMP] = ACTIONS(370), + [aux_sym_preproc_if_token1] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_L_DQUOTE] = ACTIONS(370), + [anon_sym_LPAREN2] = ACTIONS(370), + [anon_sym_RBRACE] = ACTIONS(370), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_for] = ACTIONS(368), + [anon_sym_break] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [aux_sym_preproc_include_token1] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_static] = ACTIONS(368), + [anon_sym_DQUOTE] = ACTIONS(370), + [anon_sym_register] = ACTIONS(368), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_if] = ACTIONS(368), + [anon_sym_switch] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(368), + [sym_false] = ACTIONS(368), + [anon_sym_return] = ACTIONS(368), + [anon_sym_continue] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_auto] = ACTIONS(368), + [anon_sym_inline] = ACTIONS(368), }, [511] = { - [sym_if_statement] = STATE(513), - [sym_do_statement] = STATE(513), - [sym_for_statement] = STATE(513), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(513), - [sym_return_statement] = STATE(513), - [sym_break_statement] = STATE(513), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(513), - [sym_while_statement] = STATE(513), - [sym_continue_statement] = STATE(513), - [sym_goto_statement] = STATE(513), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(513), - [sym_expression_statement] = STATE(513), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(378), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(59), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_const] = ACTIONS(201), + [anon_sym_LPAREN2] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym__Atomic] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_static] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(203), }, [512] = { - [anon_sym_case] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [anon_sym_restrict] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2173), - [anon_sym_goto] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_typedef] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2173), - [anon_sym__Atomic] = ACTIONS(2173), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2173), - [sym_number_literal] = ACTIONS(2175), - [anon_sym_volatile] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_signed] = ACTIONS(2173), - [anon_sym_long] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2173), - [anon_sym_L] = ACTIONS(2173), - [anon_sym___attribute__] = ACTIONS(2173), - [anon_sym_sizeof] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_unsigned] = ACTIONS(2173), - [anon_sym_short] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [sym_preproc_directive] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2175), - [aux_sym_preproc_if_token1] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2173), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2175), - [aux_sym_preproc_include_token1] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_register] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [ts_builtin_sym_end] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2175), - [aux_sym_preproc_def_token1] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_auto] = ACTIONS(2173), - [anon_sym_inline] = ACTIONS(2173), + [sym_true] = ACTIONS(465), + [anon_sym_restrict] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [anon_sym_goto] = ACTIONS(465), + [anon_sym_const] = ACTIONS(465), + [anon_sym_typedef] = ACTIONS(465), + [anon_sym_DASH_DASH] = ACTIONS(467), + [anon_sym__Atomic] = ACTIONS(465), + [sym_identifier] = ACTIONS(465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(465), + [sym_number_literal] = ACTIONS(467), + [anon_sym_volatile] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_extern] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(467), + [anon_sym_struct] = ACTIONS(465), + [anon_sym_signed] = ACTIONS(465), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(465), + [anon_sym_while] = ACTIONS(465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(465), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym___attribute__] = ACTIONS(465), + [anon_sym_sizeof] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_union] = ACTIONS(465), + [anon_sym_unsigned] = ACTIONS(465), + [anon_sym_short] = ACTIONS(465), + [anon_sym_do] = ACTIONS(465), + [sym_preproc_directive] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(467), + [aux_sym_preproc_if_token1] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(467), + [anon_sym_LPAREN2] = ACTIONS(467), + [sym_primitive_type] = ACTIONS(465), + [anon_sym_for] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [aux_sym_preproc_include_token1] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_static] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_register] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(465), + [anon_sym_switch] = ACTIONS(465), + [anon_sym_enum] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [ts_builtin_sym_end] = ACTIONS(467), + [anon_sym_return] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(467), + [aux_sym_preproc_def_token1] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_auto] = ACTIONS(465), + [anon_sym_inline] = ACTIONS(465), }, [513] = { - [anon_sym_case] = ACTIONS(2177), - [sym_false] = ACTIONS(2177), - [anon_sym_restrict] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2177), - [anon_sym_goto] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_typedef] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_default] = ACTIONS(2177), - [anon_sym__Atomic] = ACTIONS(2177), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2177), - [sym_number_literal] = ACTIONS(2179), - [anon_sym_volatile] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_extern] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_signed] = ACTIONS(2177), - [anon_sym_long] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2177), - [anon_sym_L] = ACTIONS(2177), - [anon_sym___attribute__] = ACTIONS(2177), - [anon_sym_sizeof] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsigned] = ACTIONS(2177), - [anon_sym_short] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [sym_preproc_directive] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2179), - [aux_sym_preproc_if_token1] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(2179), - [anon_sym_LPAREN2] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_else] = ACTIONS(2177), - [sym_primitive_type] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2179), - [aux_sym_preproc_include_token1] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_register] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [sym_null] = ACTIONS(2177), - [ts_builtin_sym_end] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_SEMI] = ACTIONS(2179), - [aux_sym_preproc_def_token1] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_auto] = ACTIONS(2177), - [anon_sym_inline] = ACTIONS(2177), + [sym_if_statement] = STATE(541), + [sym_do_statement] = STATE(541), + [sym_for_statement] = STATE(541), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(541), + [sym_return_statement] = STATE(541), + [sym_break_statement] = STATE(541), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(541), + [sym_while_statement] = STATE(541), + [sym_continue_statement] = STATE(541), + [sym_goto_statement] = STATE(541), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(541), + [sym_expression_statement] = STATE(541), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [514] = { - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_restrict] = ACTIONS(141), - [sym_identifier] = ACTIONS(141), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_const] = ACTIONS(141), - [anon_sym_LPAREN2] = ACTIONS(145), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(151), - [anon_sym__Atomic] = ACTIONS(141), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_static] = ACTIONS(141), - [anon_sym_volatile] = ACTIONS(141), - [anon_sym_register] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_auto] = ACTIONS(141), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_inline] = ACTIONS(141), - [anon_sym___attribute__] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), + [sym_true] = ACTIONS(487), + [anon_sym_restrict] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [anon_sym_goto] = ACTIONS(487), + [anon_sym_const] = ACTIONS(487), + [anon_sym_typedef] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym__Atomic] = ACTIONS(487), + [sym_identifier] = ACTIONS(487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [sym_number_literal] = ACTIONS(489), + [anon_sym_volatile] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [anon_sym_extern] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_signed] = ACTIONS(487), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [anon_sym_L_SQUOTE] = ACTIONS(489), + [anon_sym___attribute__] = ACTIONS(487), + [anon_sym_sizeof] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_union] = ACTIONS(487), + [anon_sym_unsigned] = ACTIONS(487), + [anon_sym_short] = ACTIONS(487), + [anon_sym_do] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(489), + [aux_sym_preproc_if_token1] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_L_DQUOTE] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_else] = ACTIONS(487), + [sym_primitive_type] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(489), + [aux_sym_preproc_include_token1] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_DQUOTE] = ACTIONS(489), + [anon_sym_register] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_if] = ACTIONS(487), + [anon_sym_switch] = ACTIONS(487), + [anon_sym_enum] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [aux_sym_preproc_def_token1] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_auto] = ACTIONS(487), + [anon_sym_inline] = ACTIONS(487), }, [515] = { - [sym_false] = ACTIONS(257), - [anon_sym_restrict] = ACTIONS(257), - [sym_identifier] = ACTIONS(257), - [anon_sym_goto] = ACTIONS(257), - [anon_sym_const] = ACTIONS(257), - [anon_sym_typedef] = ACTIONS(257), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(257), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(257), - [sym_number_literal] = ACTIONS(259), - [anon_sym_volatile] = ACTIONS(257), - [anon_sym_SQUOTE] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_struct] = ACTIONS(257), - [anon_sym_signed] = ACTIONS(257), - [anon_sym_long] = ACTIONS(257), - [anon_sym_while] = ACTIONS(257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(257), - [anon_sym_L] = ACTIONS(257), - [anon_sym___attribute__] = ACTIONS(257), - [anon_sym_sizeof] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_union] = ACTIONS(257), - [anon_sym_unsigned] = ACTIONS(257), - [anon_sym_short] = ACTIONS(257), - [anon_sym_do] = ACTIONS(257), - [sym_preproc_directive] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(259), - [aux_sym_preproc_if_token1] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(259), - [anon_sym_LPAREN2] = ACTIONS(259), - [anon_sym_RBRACE] = ACTIONS(259), - [anon_sym_else] = ACTIONS(257), - [sym_primitive_type] = ACTIONS(257), - [anon_sym_for] = ACTIONS(257), - [anon_sym_break] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(259), - [aux_sym_preproc_include_token1] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_static] = ACTIONS(257), - [anon_sym_register] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(259), - [anon_sym_if] = ACTIONS(257), - [anon_sym_switch] = ACTIONS(257), - [sym_true] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(257), - [sym_null] = ACTIONS(257), - [anon_sym_return] = ACTIONS(257), - [anon_sym_continue] = ACTIONS(257), - [anon_sym_SEMI] = ACTIONS(259), - [aux_sym_preproc_def_token1] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_auto] = ACTIONS(257), - [anon_sym_inline] = ACTIONS(257), + [sym_true] = ACTIONS(493), + [anon_sym_restrict] = ACTIONS(493), + [sym_null] = ACTIONS(493), + [anon_sym_goto] = ACTIONS(493), + [anon_sym_const] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(495), + [anon_sym__Atomic] = ACTIONS(493), + [sym_identifier] = ACTIONS(493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(493), + [sym_number_literal] = ACTIONS(495), + [anon_sym_volatile] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(495), + [anon_sym_struct] = ACTIONS(493), + [anon_sym_signed] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(493), + [anon_sym_while] = ACTIONS(493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(493), + [anon_sym_L_SQUOTE] = ACTIONS(495), + [anon_sym___attribute__] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(495), + [anon_sym_union] = ACTIONS(493), + [anon_sym_unsigned] = ACTIONS(493), + [anon_sym_short] = ACTIONS(493), + [anon_sym_do] = ACTIONS(493), + [sym_preproc_directive] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(495), + [aux_sym_preproc_if_token1] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_L_DQUOTE] = ACTIONS(495), + [anon_sym_LPAREN2] = ACTIONS(495), + [anon_sym_RBRACE] = ACTIONS(495), + [sym_primitive_type] = ACTIONS(493), + [anon_sym_for] = ACTIONS(493), + [anon_sym_break] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(495), + [aux_sym_preproc_include_token1] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_static] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [anon_sym_register] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_if] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(493), + [anon_sym_enum] = ACTIONS(493), + [sym_false] = ACTIONS(493), + [anon_sym_return] = ACTIONS(493), + [anon_sym_continue] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(495), + [aux_sym_preproc_def_token1] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_auto] = ACTIONS(493), + [anon_sym_inline] = ACTIONS(493), }, [516] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(120), - [anon_sym_unsigned] = ACTIONS(323), - [anon_sym_restrict] = ACTIONS(325), - [anon_sym_short] = ACTIONS(323), - [sym_identifier] = ACTIONS(2181), - [anon_sym_volatile] = ACTIONS(325), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_signed] = ACTIONS(323), - [anon_sym_long] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [anon_sym_LPAREN2] = ACTIONS(330), - [anon_sym__Atomic] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(330), - [sym_primitive_type] = ACTIONS(332), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(330), - }, - [517] = { - [sym_false] = ACTIONS(348), - [anon_sym_restrict] = ACTIONS(348), - [sym_identifier] = ACTIONS(348), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_const] = ACTIONS(348), - [anon_sym_typedef] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym__Atomic] = ACTIONS(348), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(348), - [sym_number_literal] = ACTIONS(350), - [anon_sym_volatile] = ACTIONS(348), - [anon_sym_SQUOTE] = ACTIONS(350), - [anon_sym_extern] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_struct] = ACTIONS(348), - [anon_sym_signed] = ACTIONS(348), - [anon_sym_long] = ACTIONS(348), - [anon_sym_while] = ACTIONS(348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(348), - [anon_sym_L] = ACTIONS(348), - [anon_sym___attribute__] = ACTIONS(348), - [anon_sym_sizeof] = ACTIONS(348), - [anon_sym_LBRACE] = ACTIONS(350), - [anon_sym_union] = ACTIONS(348), - [anon_sym_unsigned] = ACTIONS(348), - [anon_sym_short] = ACTIONS(348), - [anon_sym_do] = ACTIONS(348), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(350), - [aux_sym_preproc_if_token1] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(350), - [anon_sym_LPAREN2] = ACTIONS(350), - [anon_sym_RBRACE] = ACTIONS(350), - [anon_sym_else] = ACTIONS(348), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_for] = ACTIONS(348), - [anon_sym_break] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(350), - [aux_sym_preproc_include_token1] = ACTIONS(348), - [anon_sym_DASH] = ACTIONS(348), - [anon_sym_static] = ACTIONS(348), - [anon_sym_register] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_if] = ACTIONS(348), - [anon_sym_switch] = ACTIONS(348), - [sym_true] = ACTIONS(348), - [anon_sym_enum] = ACTIONS(348), - [sym_null] = ACTIONS(348), - [anon_sym_return] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [aux_sym_preproc_def_token1] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(348), - [anon_sym_auto] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(348), - }, - [518] = { [sym_if_statement] = STATE(544), [sym_do_statement] = STATE(544), [sym_for_statement] = STATE(544), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(544), [sym_return_statement] = STATE(544), [sym_break_statement] = STATE(544), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), [sym_labeled_statement] = STATE(544), [sym_while_statement] = STATE(544), [sym_continue_statement] = STATE(544), [sym_goto_statement] = STATE(544), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(544), [sym_expression_statement] = STATE(544), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [517] = { + [sym_true] = ACTIONS(529), + [anon_sym_restrict] = ACTIONS(529), + [sym_null] = ACTIONS(529), + [anon_sym_goto] = ACTIONS(529), + [anon_sym_const] = ACTIONS(529), + [anon_sym_typedef] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(531), + [anon_sym__Atomic] = ACTIONS(529), + [sym_identifier] = ACTIONS(529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(529), + [sym_number_literal] = ACTIONS(531), + [anon_sym_volatile] = ACTIONS(529), + [anon_sym_SQUOTE] = ACTIONS(531), + [anon_sym_extern] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(531), + [anon_sym_struct] = ACTIONS(529), + [anon_sym_signed] = ACTIONS(529), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(529), + [anon_sym_while] = ACTIONS(529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(529), + [anon_sym_L_SQUOTE] = ACTIONS(531), + [anon_sym___attribute__] = ACTIONS(529), + [anon_sym_sizeof] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(531), + [anon_sym_union] = ACTIONS(529), + [anon_sym_unsigned] = ACTIONS(529), + [anon_sym_short] = ACTIONS(529), + [anon_sym_do] = ACTIONS(529), + [sym_preproc_directive] = ACTIONS(529), + [anon_sym_AMP] = ACTIONS(531), + [aux_sym_preproc_if_token1] = ACTIONS(529), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_L_DQUOTE] = ACTIONS(531), + [anon_sym_LPAREN2] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_else] = ACTIONS(529), + [sym_primitive_type] = ACTIONS(529), + [anon_sym_for] = ACTIONS(529), + [anon_sym_break] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(531), + [aux_sym_preproc_include_token1] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_static] = ACTIONS(529), + [anon_sym_DQUOTE] = ACTIONS(531), + [anon_sym_register] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_if] = ACTIONS(529), + [anon_sym_switch] = ACTIONS(529), + [anon_sym_enum] = ACTIONS(529), + [sym_false] = ACTIONS(529), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(529), + [anon_sym_SEMI] = ACTIONS(531), + [aux_sym_preproc_def_token1] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_auto] = ACTIONS(529), + [anon_sym_inline] = ACTIONS(529), + }, + [518] = { + [sym_if_statement] = STATE(547), + [sym_do_statement] = STATE(547), + [sym_for_statement] = STATE(547), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(547), + [sym_return_statement] = STATE(547), + [sym_break_statement] = STATE(547), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(547), + [sym_while_statement] = STATE(547), + [sym_continue_statement] = STATE(547), + [sym_goto_statement] = STATE(547), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(547), + [sym_expression_statement] = STATE(547), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [519] = { - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(2185), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(143), + [sym_true] = ACTIONS(535), + [anon_sym_restrict] = ACTIONS(535), + [sym_null] = ACTIONS(535), + [anon_sym_goto] = ACTIONS(535), + [anon_sym_const] = ACTIONS(535), + [anon_sym_typedef] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym__Atomic] = ACTIONS(535), + [sym_identifier] = ACTIONS(535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(535), + [sym_number_literal] = ACTIONS(537), + [anon_sym_volatile] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [anon_sym_extern] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_struct] = ACTIONS(535), + [anon_sym_signed] = ACTIONS(535), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(535), + [anon_sym_L_SQUOTE] = ACTIONS(537), + [anon_sym___attribute__] = ACTIONS(535), + [anon_sym_sizeof] = ACTIONS(535), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_union] = ACTIONS(535), + [anon_sym_unsigned] = ACTIONS(535), + [anon_sym_short] = ACTIONS(535), + [anon_sym_do] = ACTIONS(535), + [sym_preproc_directive] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(537), + [aux_sym_preproc_if_token1] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_L_DQUOTE] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_else] = ACTIONS(535), + [sym_primitive_type] = ACTIONS(535), + [anon_sym_for] = ACTIONS(535), + [anon_sym_break] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(537), + [aux_sym_preproc_include_token1] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_static] = ACTIONS(535), + [anon_sym_DQUOTE] = ACTIONS(537), + [anon_sym_register] = ACTIONS(535), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(535), + [anon_sym_enum] = ACTIONS(535), + [sym_false] = ACTIONS(535), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(535), + [anon_sym_SEMI] = ACTIONS(537), + [aux_sym_preproc_def_token1] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(535), + [anon_sym_auto] = ACTIONS(535), + [anon_sym_inline] = ACTIONS(535), }, [520] = { - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_union] = ACTIONS(388), - [sym_true] = ACTIONS(388), - [anon_sym_unsigned] = ACTIONS(388), - [anon_sym_restrict] = ACTIONS(388), - [anon_sym_short] = ACTIONS(388), - [sym_false] = ACTIONS(388), - [sym_null] = ACTIONS(388), - [sym_identifier] = ACTIONS(388), - [anon_sym_do] = ACTIONS(388), - [anon_sym_goto] = ACTIONS(388), - [sym_preproc_directive] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(386), - [aux_sym_preproc_if_token1] = ACTIONS(388), - [anon_sym_TILDE] = ACTIONS(386), - [anon_sym_const] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(386), - [anon_sym_typedef] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(386), - [anon_sym_DASH_DASH] = ACTIONS(386), - [anon_sym_DQUOTE] = ACTIONS(386), - [anon_sym__Atomic] = ACTIONS(388), - [sym_primitive_type] = ACTIONS(388), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(388), - [anon_sym_break] = ACTIONS(388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [anon_sym_BANG] = ACTIONS(386), - [aux_sym_preproc_include_token1] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_static] = ACTIONS(388), - [anon_sym_volatile] = ACTIONS(388), - [anon_sym_register] = ACTIONS(388), - [anon_sym_extern] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_if] = ACTIONS(388), - [anon_sym_struct] = ACTIONS(388), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_signed] = ACTIONS(388), - [anon_sym_enum] = ACTIONS(388), - [anon_sym_long] = ACTIONS(388), - [anon_sym_PLUS_PLUS] = ACTIONS(386), - [sym_number_literal] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_while] = ACTIONS(388), - [anon_sym_continue] = ACTIONS(388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [anon_sym_SEMI] = ACTIONS(386), - [anon_sym_SQUOTE] = ACTIONS(386), - [aux_sym_preproc_def_token1] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_auto] = ACTIONS(388), - [anon_sym_L] = ACTIONS(388), - [anon_sym_inline] = ACTIONS(388), - [anon_sym___attribute__] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(388), + [sym_char_literal] = STATE(549), + [sym__expression] = STATE(549), + [sym_binary_expression] = STATE(549), + [sym_update_expression] = STATE(549), + [sym_call_expression] = STATE(549), + [sym_pointer_expression] = STATE(549), + [sym_unary_expression] = STATE(549), + [sym_sizeof_expression] = STATE(549), + [sym_subscript_expression] = STATE(549), + [sym_parenthesized_expression] = STATE(549), + [sym_concatenated_string] = STATE(549), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(549), + [sym_assignment_expression] = STATE(549), + [sym_cast_expression] = STATE(549), + [sym_field_expression] = STATE(549), + [sym_compound_literal_expression] = STATE(549), + [sym_true] = ACTIONS(2141), + [sym_null] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [521] = { - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_restrict] = ACTIONS(141), - [sym_identifier] = ACTIONS(141), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_const] = ACTIONS(141), - [anon_sym_LPAREN2] = ACTIONS(145), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym__Atomic] = ACTIONS(141), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_static] = ACTIONS(141), - [anon_sym_volatile] = ACTIONS(141), - [anon_sym_register] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_auto] = ACTIONS(141), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_inline] = ACTIONS(141), - [anon_sym___attribute__] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), + [sym_char_literal] = STATE(550), + [sym__expression] = STATE(550), + [sym_binary_expression] = STATE(550), + [sym_update_expression] = STATE(550), + [sym_call_expression] = STATE(550), + [sym_pointer_expression] = STATE(550), + [sym_unary_expression] = STATE(550), + [sym_sizeof_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym_parenthesized_expression] = STATE(550), + [sym_concatenated_string] = STATE(550), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(550), + [sym_assignment_expression] = STATE(550), + [sym_cast_expression] = STATE(550), + [sym_field_expression] = STATE(550), + [sym_compound_literal_expression] = STATE(550), + [sym_true] = ACTIONS(2145), + [sym_null] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [522] = { - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_union] = ACTIONS(483), - [sym_true] = ACTIONS(483), - [anon_sym_unsigned] = ACTIONS(483), - [anon_sym_restrict] = ACTIONS(483), - [anon_sym_short] = ACTIONS(483), - [sym_false] = ACTIONS(483), - [sym_null] = ACTIONS(483), - [sym_identifier] = ACTIONS(483), - [anon_sym_do] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(483), - [ts_builtin_sym_end] = ACTIONS(485), - [sym_preproc_directive] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(485), - [aux_sym_preproc_if_token1] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_const] = ACTIONS(483), - [anon_sym_LPAREN2] = ACTIONS(485), - [anon_sym_typedef] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_DQUOTE] = ACTIONS(485), - [anon_sym__Atomic] = ACTIONS(483), - [sym_primitive_type] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(483), - [anon_sym_BANG] = ACTIONS(485), - [aux_sym_preproc_include_token1] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_register] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(485), - [anon_sym_if] = ACTIONS(483), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_signed] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [anon_sym_long] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [sym_number_literal] = ACTIONS(485), - [anon_sym_return] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(483), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_SQUOTE] = ACTIONS(485), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_auto] = ACTIONS(483), - [anon_sym_L] = ACTIONS(483), - [anon_sym_inline] = ACTIONS(483), - [anon_sym___attribute__] = ACTIONS(483), - [anon_sym_sizeof] = ACTIONS(483), + [sym_char_literal] = STATE(551), + [sym__expression] = STATE(551), + [sym_binary_expression] = STATE(551), + [sym_update_expression] = STATE(551), + [sym_call_expression] = STATE(551), + [sym_pointer_expression] = STATE(551), + [sym_unary_expression] = STATE(551), + [sym_sizeof_expression] = STATE(551), + [sym_subscript_expression] = STATE(551), + [sym_parenthesized_expression] = STATE(551), + [sym_concatenated_string] = STATE(551), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(551), + [sym_assignment_expression] = STATE(551), + [sym_cast_expression] = STATE(551), + [sym_field_expression] = STATE(551), + [sym_compound_literal_expression] = STATE(551), + [sym_true] = ACTIONS(2149), + [sym_null] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [523] = { - [sym_false] = ACTIONS(499), - [anon_sym_restrict] = ACTIONS(499), - [sym_identifier] = ACTIONS(499), - [anon_sym_goto] = ACTIONS(499), - [anon_sym_const] = ACTIONS(499), - [anon_sym_typedef] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym__Atomic] = ACTIONS(499), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(499), - [sym_number_literal] = ACTIONS(501), - [anon_sym_volatile] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(501), - [anon_sym_extern] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_struct] = ACTIONS(499), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_while] = ACTIONS(499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(499), - [anon_sym_L] = ACTIONS(499), - [anon_sym___attribute__] = ACTIONS(499), - [anon_sym_sizeof] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_union] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [anon_sym_do] = ACTIONS(499), - [sym_preproc_directive] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [aux_sym_preproc_if_token1] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_LPAREN2] = ACTIONS(501), - [anon_sym_RBRACE] = ACTIONS(501), - [anon_sym_else] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(499), - [anon_sym_for] = ACTIONS(499), - [anon_sym_break] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(501), - [aux_sym_preproc_include_token1] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_static] = ACTIONS(499), - [anon_sym_register] = ACTIONS(499), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_if] = ACTIONS(499), - [anon_sym_switch] = ACTIONS(499), - [sym_true] = ACTIONS(499), - [anon_sym_enum] = ACTIONS(499), - [sym_null] = ACTIONS(499), - [anon_sym_return] = ACTIONS(499), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(501), - [aux_sym_preproc_def_token1] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_auto] = ACTIONS(499), - [anon_sym_inline] = ACTIONS(499), + [sym_char_literal] = STATE(552), + [sym__expression] = STATE(552), + [sym_binary_expression] = STATE(552), + [sym_update_expression] = STATE(552), + [sym_call_expression] = STATE(552), + [sym_pointer_expression] = STATE(552), + [sym_unary_expression] = STATE(552), + [sym_sizeof_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_parenthesized_expression] = STATE(552), + [sym_concatenated_string] = STATE(552), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(552), + [sym_assignment_expression] = STATE(552), + [sym_cast_expression] = STATE(552), + [sym_field_expression] = STATE(552), + [sym_compound_literal_expression] = STATE(552), + [sym_true] = ACTIONS(2153), + [sym_null] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [524] = { - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_union] = ACTIONS(507), - [sym_true] = ACTIONS(507), - [anon_sym_unsigned] = ACTIONS(507), - [anon_sym_restrict] = ACTIONS(507), - [anon_sym_short] = ACTIONS(507), - [sym_false] = ACTIONS(507), - [sym_null] = ACTIONS(507), - [sym_identifier] = ACTIONS(507), - [anon_sym_do] = ACTIONS(507), - [anon_sym_goto] = ACTIONS(507), - [sym_preproc_directive] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(505), - [aux_sym_preproc_if_token1] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_const] = ACTIONS(507), - [anon_sym_LPAREN2] = ACTIONS(505), - [anon_sym_typedef] = ACTIONS(507), - [anon_sym_RBRACE] = ACTIONS(505), - [anon_sym_DASH_DASH] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym__Atomic] = ACTIONS(507), - [sym_primitive_type] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(507), - [anon_sym_break] = ACTIONS(507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(505), - [aux_sym_preproc_include_token1] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_volatile] = ACTIONS(507), - [anon_sym_register] = ACTIONS(507), - [anon_sym_extern] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_struct] = ACTIONS(507), - [anon_sym_switch] = ACTIONS(507), - [anon_sym_signed] = ACTIONS(507), - [anon_sym_enum] = ACTIONS(507), - [anon_sym_long] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(505), - [sym_number_literal] = ACTIONS(505), - [anon_sym_return] = ACTIONS(507), - [anon_sym_while] = ACTIONS(507), - [anon_sym_continue] = ACTIONS(507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(505), - [aux_sym_preproc_def_token1] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_auto] = ACTIONS(507), - [anon_sym_L] = ACTIONS(507), - [anon_sym_inline] = ACTIONS(507), - [anon_sym___attribute__] = ACTIONS(507), - [anon_sym_sizeof] = ACTIONS(507), + [sym_char_literal] = STATE(553), + [sym__expression] = STATE(553), + [sym_binary_expression] = STATE(553), + [sym_update_expression] = STATE(553), + [sym_call_expression] = STATE(553), + [sym_pointer_expression] = STATE(553), + [sym_unary_expression] = STATE(553), + [sym_sizeof_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym_parenthesized_expression] = STATE(553), + [sym_concatenated_string] = STATE(553), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(553), + [sym_assignment_expression] = STATE(553), + [sym_cast_expression] = STATE(553), + [sym_field_expression] = STATE(553), + [sym_compound_literal_expression] = STATE(553), + [sym_true] = ACTIONS(2157), + [sym_null] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [525] = { - [sym_if_statement] = STATE(553), - [sym_do_statement] = STATE(553), - [sym_for_statement] = STATE(553), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(553), - [sym_return_statement] = STATE(553), - [sym_break_statement] = STATE(553), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(553), - [sym_while_statement] = STATE(553), - [sym_continue_statement] = STATE(553), - [sym_goto_statement] = STATE(553), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(553), - [sym_expression_statement] = STATE(553), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [526] = { - [sym_false] = ACTIONS(541), - [anon_sym_restrict] = ACTIONS(541), - [sym_identifier] = ACTIONS(541), - [anon_sym_goto] = ACTIONS(541), - [anon_sym_const] = ACTIONS(541), - [anon_sym_typedef] = ACTIONS(541), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym__Atomic] = ACTIONS(541), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_volatile] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_struct] = ACTIONS(541), - [anon_sym_signed] = ACTIONS(541), - [anon_sym_long] = ACTIONS(541), - [anon_sym_while] = ACTIONS(541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(541), - [anon_sym_L] = ACTIONS(541), - [anon_sym___attribute__] = ACTIONS(541), - [anon_sym_sizeof] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_union] = ACTIONS(541), - [anon_sym_unsigned] = ACTIONS(541), - [anon_sym_short] = ACTIONS(541), - [anon_sym_do] = ACTIONS(541), - [sym_preproc_directive] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [aux_sym_preproc_if_token1] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [anon_sym_LPAREN2] = ACTIONS(543), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_else] = ACTIONS(541), - [sym_primitive_type] = ACTIONS(541), - [anon_sym_for] = ACTIONS(541), - [anon_sym_break] = ACTIONS(541), - [anon_sym_BANG] = ACTIONS(543), - [aux_sym_preproc_include_token1] = ACTIONS(541), - [anon_sym_DASH] = ACTIONS(541), - [anon_sym_static] = ACTIONS(541), - [anon_sym_register] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_if] = ACTIONS(541), - [anon_sym_switch] = ACTIONS(541), - [sym_true] = ACTIONS(541), - [anon_sym_enum] = ACTIONS(541), - [sym_null] = ACTIONS(541), - [anon_sym_return] = ACTIONS(541), - [anon_sym_continue] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(543), - [aux_sym_preproc_def_token1] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(541), - [anon_sym_auto] = ACTIONS(541), - [anon_sym_inline] = ACTIONS(541), - }, - [527] = { - [sym_if_statement] = STATE(556), - [sym_do_statement] = STATE(556), - [sym_for_statement] = STATE(556), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(556), - [sym_return_statement] = STATE(556), - [sym_break_statement] = STATE(556), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(556), - [sym_while_statement] = STATE(556), - [sym_continue_statement] = STATE(556), - [sym_goto_statement] = STATE(556), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(556), - [sym_expression_statement] = STATE(556), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [528] = { - [sym_false] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_goto] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym__Atomic] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(547), - [sym_number_literal] = ACTIONS(549), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_SQUOTE] = ACTIONS(549), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_struct] = ACTIONS(547), - [anon_sym_signed] = ACTIONS(547), - [anon_sym_long] = ACTIONS(547), - [anon_sym_while] = ACTIONS(547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(547), - [anon_sym_L] = ACTIONS(547), - [anon_sym___attribute__] = ACTIONS(547), - [anon_sym_sizeof] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_union] = ACTIONS(547), - [anon_sym_unsigned] = ACTIONS(547), - [anon_sym_short] = ACTIONS(547), - [anon_sym_do] = ACTIONS(547), - [sym_preproc_directive] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(549), - [aux_sym_preproc_if_token1] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_LPAREN2] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_else] = ACTIONS(547), - [sym_primitive_type] = ACTIONS(547), - [anon_sym_for] = ACTIONS(547), - [anon_sym_break] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(549), - [aux_sym_preproc_include_token1] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_if] = ACTIONS(547), - [anon_sym_switch] = ACTIONS(547), - [sym_true] = ACTIONS(547), - [anon_sym_enum] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_return] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(549), - [aux_sym_preproc_def_token1] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_auto] = ACTIONS(547), - [anon_sym_inline] = ACTIONS(547), + [sym_char_literal] = STATE(196), + [sym__expression] = STATE(196), + [sym_binary_expression] = STATE(196), + [sym_update_expression] = STATE(196), + [sym_call_expression] = STATE(196), + [sym_pointer_expression] = STATE(196), + [sym_unary_expression] = STATE(196), + [sym_sizeof_expression] = STATE(196), + [sym_subscript_expression] = STATE(196), + [sym_parenthesized_expression] = STATE(196), + [sym_concatenated_string] = STATE(196), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(196), + [sym_assignment_expression] = STATE(196), + [sym_cast_expression] = STATE(196), + [sym_field_expression] = STATE(196), + [sym_compound_literal_expression] = STATE(196), + [sym_true] = ACTIONS(577), + [sym_null] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(579), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), + }, + [526] = { + [sym_char_literal] = STATE(554), + [sym__expression] = STATE(554), + [sym_binary_expression] = STATE(554), + [sym_update_expression] = STATE(554), + [sym_call_expression] = STATE(554), + [sym_pointer_expression] = STATE(554), + [sym_unary_expression] = STATE(554), + [sym_sizeof_expression] = STATE(554), + [sym_subscript_expression] = STATE(554), + [sym_parenthesized_expression] = STATE(554), + [sym_concatenated_string] = STATE(554), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(554), + [sym_assignment_expression] = STATE(554), + [sym_cast_expression] = STATE(554), + [sym_field_expression] = STATE(554), + [sym_compound_literal_expression] = STATE(554), + [sym_true] = ACTIONS(2161), + [sym_null] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), + }, + [527] = { + [sym_char_literal] = STATE(555), + [sym__expression] = STATE(555), + [sym_binary_expression] = STATE(555), + [sym_update_expression] = STATE(555), + [sym_call_expression] = STATE(555), + [sym_pointer_expression] = STATE(555), + [sym_unary_expression] = STATE(555), + [sym_sizeof_expression] = STATE(555), + [sym_subscript_expression] = STATE(555), + [sym_parenthesized_expression] = STATE(555), + [sym_concatenated_string] = STATE(555), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(555), + [sym_assignment_expression] = STATE(555), + [sym_cast_expression] = STATE(555), + [sym_field_expression] = STATE(555), + [sym_compound_literal_expression] = STATE(555), + [sym_true] = ACTIONS(2165), + [sym_null] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2165), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), + }, + [528] = { + [sym_char_literal] = STATE(556), + [sym__expression] = STATE(556), + [sym_binary_expression] = STATE(556), + [sym_update_expression] = STATE(556), + [sym_call_expression] = STATE(556), + [sym_pointer_expression] = STATE(556), + [sym_unary_expression] = STATE(556), + [sym_sizeof_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_parenthesized_expression] = STATE(556), + [sym_concatenated_string] = STATE(556), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(556), + [sym_assignment_expression] = STATE(556), + [sym_cast_expression] = STATE(556), + [sym_field_expression] = STATE(556), + [sym_compound_literal_expression] = STATE(556), + [sym_true] = ACTIONS(2169), + [sym_null] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [529] = { - [sym_char_literal] = STATE(558), - [sym__expression] = STATE(558), - [sym_binary_expression] = STATE(558), - [sym_update_expression] = STATE(558), - [sym_call_expression] = STATE(558), - [sym_pointer_expression] = STATE(558), - [sym_unary_expression] = STATE(558), - [sym_sizeof_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_parenthesized_expression] = STATE(558), - [sym_concatenated_string] = STATE(558), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(558), - [sym_assignment_expression] = STATE(558), - [sym_cast_expression] = STATE(558), - [sym_field_expression] = STATE(558), - [sym_compound_literal_expression] = STATE(558), - [sym_false] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2187), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2187), - [sym_null] = ACTIONS(2187), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_true] = ACTIONS(605), + [anon_sym_restrict] = ACTIONS(605), + [sym_null] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_typedef] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym__Atomic] = ACTIONS(605), + [sym_identifier] = ACTIONS(605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(605), + [sym_number_literal] = ACTIONS(607), + [anon_sym_volatile] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(605), + [anon_sym_signed] = ACTIONS(605), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(605), + [anon_sym_while] = ACTIONS(605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(605), + [anon_sym_L_SQUOTE] = ACTIONS(607), + [anon_sym___attribute__] = ACTIONS(605), + [anon_sym_sizeof] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_union] = ACTIONS(605), + [anon_sym_unsigned] = ACTIONS(605), + [anon_sym_short] = ACTIONS(605), + [anon_sym_do] = ACTIONS(605), + [sym_preproc_directive] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(607), + [aux_sym_preproc_if_token1] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_L_DQUOTE] = ACTIONS(607), + [anon_sym_LPAREN2] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_else] = ACTIONS(605), + [sym_primitive_type] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(607), + [aux_sym_preproc_include_token1] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_static] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_register] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_if] = ACTIONS(605), + [anon_sym_switch] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_SEMI] = ACTIONS(607), + [aux_sym_preproc_def_token1] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_auto] = ACTIONS(605), + [anon_sym_inline] = ACTIONS(605), }, [530] = { - [sym_char_literal] = STATE(559), - [sym__expression] = STATE(559), - [sym_binary_expression] = STATE(559), - [sym_update_expression] = STATE(559), - [sym_call_expression] = STATE(559), - [sym_pointer_expression] = STATE(559), - [sym_unary_expression] = STATE(559), - [sym_sizeof_expression] = STATE(559), - [sym_subscript_expression] = STATE(559), - [sym_parenthesized_expression] = STATE(559), - [sym_concatenated_string] = STATE(559), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(559), - [sym_assignment_expression] = STATE(559), - [sym_cast_expression] = STATE(559), - [sym_field_expression] = STATE(559), - [sym_compound_literal_expression] = STATE(559), - [sym_false] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2191), - [sym_null] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_char_literal] = STATE(557), + [sym__expression] = STATE(557), + [sym_binary_expression] = STATE(557), + [sym_update_expression] = STATE(557), + [sym_call_expression] = STATE(557), + [sym_pointer_expression] = STATE(557), + [sym_unary_expression] = STATE(557), + [sym_sizeof_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_parenthesized_expression] = STATE(557), + [sym_concatenated_string] = STATE(557), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(557), + [sym_assignment_expression] = STATE(557), + [sym_cast_expression] = STATE(557), + [sym_field_expression] = STATE(557), + [sym_compound_literal_expression] = STATE(557), + [sym_true] = ACTIONS(2173), + [sym_null] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [531] = { - [sym_char_literal] = STATE(560), - [sym__expression] = STATE(560), - [sym_binary_expression] = STATE(560), - [sym_update_expression] = STATE(560), - [sym_call_expression] = STATE(560), - [sym_pointer_expression] = STATE(560), - [sym_unary_expression] = STATE(560), - [sym_sizeof_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_parenthesized_expression] = STATE(560), - [sym_concatenated_string] = STATE(560), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(560), - [sym_assignment_expression] = STATE(560), - [sym_cast_expression] = STATE(560), - [sym_field_expression] = STATE(560), - [sym_compound_literal_expression] = STATE(560), - [sym_false] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_true] = ACTIONS(621), + [anon_sym_restrict] = ACTIONS(621), + [sym_null] = ACTIONS(621), + [anon_sym_goto] = ACTIONS(621), + [anon_sym_const] = ACTIONS(621), + [anon_sym_typedef] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym__Atomic] = ACTIONS(621), + [sym_identifier] = ACTIONS(621), + [aux_sym_preproc_ifdef_token1] = ACTIONS(621), + [sym_number_literal] = ACTIONS(623), + [anon_sym_volatile] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_extern] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_struct] = ACTIONS(621), + [anon_sym_signed] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(621), + [anon_sym_while] = ACTIONS(621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(621), + [anon_sym_L_SQUOTE] = ACTIONS(623), + [anon_sym___attribute__] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_union] = ACTIONS(621), + [anon_sym_unsigned] = ACTIONS(621), + [anon_sym_short] = ACTIONS(621), + [anon_sym_do] = ACTIONS(621), + [sym_preproc_directive] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(623), + [aux_sym_preproc_if_token1] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_L_DQUOTE] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [sym_primitive_type] = ACTIONS(621), + [anon_sym_for] = ACTIONS(621), + [anon_sym_break] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [aux_sym_preproc_include_token1] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_static] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_register] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_if] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(621), + [anon_sym_enum] = ACTIONS(621), + [sym_false] = ACTIONS(621), + [anon_sym_return] = ACTIONS(621), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_auto] = ACTIONS(621), + [anon_sym_inline] = ACTIONS(621), }, [532] = { - [sym_char_literal] = STATE(561), - [sym__expression] = STATE(561), - [sym_binary_expression] = STATE(561), - [sym_update_expression] = STATE(561), - [sym_call_expression] = STATE(561), - [sym_pointer_expression] = STATE(561), - [sym_unary_expression] = STATE(561), - [sym_sizeof_expression] = STATE(561), - [sym_subscript_expression] = STATE(561), - [sym_parenthesized_expression] = STATE(561), - [sym_concatenated_string] = STATE(561), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(561), - [sym_assignment_expression] = STATE(561), - [sym_cast_expression] = STATE(561), - [sym_field_expression] = STATE(561), - [sym_compound_literal_expression] = STATE(561), - [sym_false] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2201), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_if_statement] = STATE(532), + [sym_preproc_def] = STATE(532), + [sym_preproc_function_def] = STATE(532), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(532), + [sym_declaration] = STATE(532), + [sym_do_statement] = STATE(532), + [sym_for_statement] = STATE(532), + [aux_sym_translation_unit_repeat1] = STATE(532), + [sym_expression_statement] = STATE(532), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(868), + [sym_union_specifier] = STATE(868), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(532), + [sym_return_statement] = STATE(532), + [sym_preproc_call] = STATE(532), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(532), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_break_statement] = STATE(532), + [sym__empty_declaration] = STATE(532), + [sym_sized_type_specifier] = STATE(868), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(532), + [sym_preproc_include] = STATE(532), + [sym_preproc_if] = STATE(532), + [sym_preproc_ifdef] = STATE(532), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(532), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(868), + [sym_while_statement] = STATE(532), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(532), + [sym_struct_specifier] = STATE(868), + [sym_goto_statement] = STATE(532), + [sym_true] = ACTIONS(2177), + [anon_sym_restrict] = ACTIONS(665), + [sym_null] = ACTIONS(2177), + [anon_sym_goto] = ACTIONS(2180), + [anon_sym_const] = ACTIONS(665), + [anon_sym_typedef] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym__Atomic] = ACTIONS(665), + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2189), + [sym_number_literal] = ACTIONS(2192), + [anon_sym_volatile] = ACTIONS(665), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(692), + [anon_sym_signed] = ACTIONS(695), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(695), + [anon_sym_while] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2189), + [anon_sym_L_SQUOTE] = ACTIONS(686), + [anon_sym___attribute__] = ACTIONS(701), + [anon_sym_sizeof] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(710), + [anon_sym_unsigned] = ACTIONS(695), + [anon_sym_short] = ACTIONS(695), + [anon_sym_do] = ACTIONS(2204), + [sym_preproc_directive] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(719), + [aux_sym_preproc_if_token1] = ACTIONS(2210), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_L_DQUOTE] = ACTIONS(728), + [anon_sym_LPAREN2] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(761), + [sym_primitive_type] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2216), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(725), + [aux_sym_preproc_include_token1] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_static] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_register] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2228), + [anon_sym_enum] = ACTIONS(758), + [sym_false] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2237), + [aux_sym_preproc_def_token1] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(746), + [anon_sym_auto] = ACTIONS(749), + [anon_sym_inline] = ACTIONS(749), }, [533] = { - [sym_char_literal] = STATE(562), - [sym__expression] = STATE(562), - [sym_binary_expression] = STATE(562), - [sym_update_expression] = STATE(562), - [sym_call_expression] = STATE(562), - [sym_pointer_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_sizeof_expression] = STATE(562), - [sym_subscript_expression] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_concatenated_string] = STATE(562), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(562), - [sym_assignment_expression] = STATE(562), - [sym_cast_expression] = STATE(562), - [sym_field_expression] = STATE(562), - [sym_compound_literal_expression] = STATE(562), - [sym_false] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2203), - [sym_null] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_true] = ACTIONS(792), + [anon_sym_restrict] = ACTIONS(792), + [sym_null] = ACTIONS(792), + [anon_sym_goto] = ACTIONS(792), + [anon_sym_const] = ACTIONS(792), + [anon_sym_typedef] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym__Atomic] = ACTIONS(792), + [sym_identifier] = ACTIONS(792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(792), + [sym_number_literal] = ACTIONS(794), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(792), + [anon_sym_signed] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(792), + [anon_sym_while] = ACTIONS(792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(792), + [anon_sym_L_SQUOTE] = ACTIONS(794), + [anon_sym___attribute__] = ACTIONS(792), + [anon_sym_sizeof] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(794), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsigned] = ACTIONS(792), + [anon_sym_short] = ACTIONS(792), + [anon_sym_do] = ACTIONS(792), + [sym_preproc_directive] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [aux_sym_preproc_if_token1] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(794), + [anon_sym_L_DQUOTE] = ACTIONS(794), + [anon_sym_LPAREN2] = ACTIONS(794), + [anon_sym_RBRACE] = ACTIONS(794), + [anon_sym_else] = ACTIONS(792), + [sym_primitive_type] = ACTIONS(792), + [anon_sym_for] = ACTIONS(792), + [anon_sym_break] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(794), + [aux_sym_preproc_include_token1] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_static] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_register] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_if] = ACTIONS(792), + [anon_sym_switch] = ACTIONS(792), + [anon_sym_enum] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [anon_sym_return] = ACTIONS(792), + [anon_sym_continue] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(794), + [aux_sym_preproc_def_token1] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_auto] = ACTIONS(792), + [anon_sym_inline] = ACTIONS(792), }, [534] = { - [sym_char_literal] = STATE(202), - [sym__expression] = STATE(202), - [sym_binary_expression] = STATE(202), - [sym_update_expression] = STATE(202), - [sym_call_expression] = STATE(202), - [sym_pointer_expression] = STATE(202), - [sym_unary_expression] = STATE(202), - [sym_sizeof_expression] = STATE(202), - [sym_subscript_expression] = STATE(202), - [sym_parenthesized_expression] = STATE(202), - [sym_concatenated_string] = STATE(202), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(202), - [sym_assignment_expression] = STATE(202), - [sym_cast_expression] = STATE(202), - [sym_field_expression] = STATE(202), - [sym_compound_literal_expression] = STATE(202), - [sym_false] = ACTIONS(597), - [sym_identifier] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(599), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(597), - [sym_null] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_true] = ACTIONS(822), + [anon_sym_restrict] = ACTIONS(822), + [sym_null] = ACTIONS(822), + [anon_sym_goto] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_typedef] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(824), + [anon_sym__Atomic] = ACTIONS(822), + [sym_identifier] = ACTIONS(822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [sym_number_literal] = ACTIONS(824), + [anon_sym_volatile] = ACTIONS(822), + [anon_sym_SQUOTE] = ACTIONS(824), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_struct] = ACTIONS(822), + [anon_sym_signed] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(822), + [anon_sym_L_SQUOTE] = ACTIONS(824), + [anon_sym___attribute__] = ACTIONS(822), + [anon_sym_sizeof] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_union] = ACTIONS(822), + [anon_sym_unsigned] = ACTIONS(822), + [anon_sym_short] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [sym_preproc_directive] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [aux_sym_preproc_if_token1] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_L_DQUOTE] = ACTIONS(824), + [anon_sym_LPAREN2] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_else] = ACTIONS(822), + [sym_primitive_type] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(824), + [aux_sym_preproc_include_token1] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_register] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [sym_false] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(824), + [aux_sym_preproc_def_token1] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_auto] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(822), }, [535] = { - [sym_char_literal] = STATE(563), - [sym__expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_call_expression] = STATE(563), - [sym_pointer_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_sizeof_expression] = STATE(563), - [sym_subscript_expression] = STATE(563), - [sym_parenthesized_expression] = STATE(563), - [sym_concatenated_string] = STATE(563), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(563), - [sym_assignment_expression] = STATE(563), - [sym_cast_expression] = STATE(563), - [sym_field_expression] = STATE(563), - [sym_compound_literal_expression] = STATE(563), - [sym_false] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2209), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2207), - [sym_null] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_true] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [sym_null] = ACTIONS(826), + [anon_sym_goto] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_typedef] = ACTIONS(826), + [anon_sym_DASH_DASH] = ACTIONS(828), + [anon_sym__Atomic] = ACTIONS(826), + [sym_identifier] = ACTIONS(826), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), + [sym_number_literal] = ACTIONS(828), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_struct] = ACTIONS(826), + [anon_sym_signed] = ACTIONS(826), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [anon_sym_L_SQUOTE] = ACTIONS(828), + [anon_sym___attribute__] = ACTIONS(826), + [anon_sym_sizeof] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsigned] = ACTIONS(826), + [anon_sym_short] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [sym_preproc_directive] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(828), + [aux_sym_preproc_if_token1] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(828), + [anon_sym_L_DQUOTE] = ACTIONS(828), + [anon_sym_LPAREN2] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(828), + [sym_primitive_type] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(828), + [aux_sym_preproc_include_token1] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_register] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_if] = ACTIONS(826), + [anon_sym_switch] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [sym_false] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(828), + [aux_sym_preproc_def_token1] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_auto] = ACTIONS(826), + [anon_sym_inline] = ACTIONS(826), }, [536] = { - [sym_char_literal] = STATE(564), - [sym__expression] = STATE(564), - [sym_binary_expression] = STATE(564), - [sym_update_expression] = STATE(564), - [sym_call_expression] = STATE(564), - [sym_pointer_expression] = STATE(564), - [sym_unary_expression] = STATE(564), - [sym_sizeof_expression] = STATE(564), - [sym_subscript_expression] = STATE(564), - [sym_parenthesized_expression] = STATE(564), - [sym_concatenated_string] = STATE(564), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(564), - [sym_assignment_expression] = STATE(564), - [sym_cast_expression] = STATE(564), - [sym_field_expression] = STATE(564), - [sym_compound_literal_expression] = STATE(564), - [sym_false] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2211), - [sym_null] = ACTIONS(2211), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_true] = ACTIONS(830), + [anon_sym_restrict] = ACTIONS(830), + [sym_null] = ACTIONS(830), + [anon_sym_goto] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_typedef] = ACTIONS(830), + [anon_sym_DASH_DASH] = ACTIONS(832), + [anon_sym__Atomic] = ACTIONS(830), + [sym_identifier] = ACTIONS(830), + [aux_sym_preproc_ifdef_token1] = ACTIONS(830), + [sym_number_literal] = ACTIONS(832), + [anon_sym_volatile] = ACTIONS(830), + [anon_sym_SQUOTE] = ACTIONS(832), + [anon_sym_extern] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(832), + [anon_sym_struct] = ACTIONS(830), + [anon_sym_signed] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(830), + [anon_sym_L_SQUOTE] = ACTIONS(832), + [anon_sym___attribute__] = ACTIONS(830), + [anon_sym_sizeof] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_union] = ACTIONS(830), + [anon_sym_unsigned] = ACTIONS(830), + [anon_sym_short] = ACTIONS(830), + [anon_sym_do] = ACTIONS(830), + [sym_preproc_directive] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [aux_sym_preproc_if_token1] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(832), + [anon_sym_L_DQUOTE] = ACTIONS(832), + [anon_sym_LPAREN2] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), + [sym_primitive_type] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(832), + [aux_sym_preproc_include_token1] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_register] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(832), + [anon_sym_if] = ACTIONS(830), + [anon_sym_switch] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [sym_false] = ACTIONS(830), + [anon_sym_return] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(832), + [aux_sym_preproc_def_token1] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_auto] = ACTIONS(830), + [anon_sym_inline] = ACTIONS(830), }, [537] = { - [sym_char_literal] = STATE(565), - [sym__expression] = STATE(565), - [sym_binary_expression] = STATE(565), - [sym_update_expression] = STATE(565), - [sym_call_expression] = STATE(565), - [sym_pointer_expression] = STATE(565), - [sym_unary_expression] = STATE(565), - [sym_sizeof_expression] = STATE(565), - [sym_subscript_expression] = STATE(565), - [sym_parenthesized_expression] = STATE(565), - [sym_concatenated_string] = STATE(565), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(565), - [sym_assignment_expression] = STATE(565), - [sym_cast_expression] = STATE(565), - [sym_field_expression] = STATE(565), - [sym_compound_literal_expression] = STATE(565), - [sym_false] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2215), - [sym_null] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_char_literal] = STATE(236), + [sym__expression] = STATE(236), + [sym_binary_expression] = STATE(236), + [sym_update_expression] = STATE(236), + [sym_call_expression] = STATE(236), + [sym_pointer_expression] = STATE(236), + [sym_unary_expression] = STATE(236), + [sym_sizeof_expression] = STATE(236), + [sym_subscript_expression] = STATE(236), + [sym_parenthesized_expression] = STATE(236), + [sym_initializer_list] = STATE(237), + [sym_concatenated_string] = STATE(236), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(236), + [sym_assignment_expression] = STATE(236), + [sym_cast_expression] = STATE(236), + [sym_field_expression] = STATE(236), + [sym_compound_literal_expression] = STATE(236), + [anon_sym_LBRACE] = ACTIONS(886), + [sym_true] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(890), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [538] = { - [sym_false] = ACTIONS(625), - [anon_sym_restrict] = ACTIONS(625), - [sym_identifier] = ACTIONS(625), - [anon_sym_goto] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_typedef] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym__Atomic] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(625), - [sym_number_literal] = ACTIONS(627), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_SQUOTE] = ACTIONS(627), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_struct] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(625), - [anon_sym_long] = ACTIONS(625), - [anon_sym_while] = ACTIONS(625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(625), - [anon_sym_L] = ACTIONS(625), - [anon_sym___attribute__] = ACTIONS(625), - [anon_sym_sizeof] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_union] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(625), - [anon_sym_short] = ACTIONS(625), - [anon_sym_do] = ACTIONS(625), - [sym_preproc_directive] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(625), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_LPAREN2] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_else] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(625), - [anon_sym_for] = ACTIONS(625), - [anon_sym_break] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(627), - [aux_sym_preproc_include_token1] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_register] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_if] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(625), - [sym_true] = ACTIONS(625), - [anon_sym_enum] = ACTIONS(625), - [sym_null] = ACTIONS(625), - [anon_sym_return] = ACTIONS(625), - [anon_sym_continue] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_auto] = ACTIONS(625), - [anon_sym_inline] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_case] = ACTIONS(892), + [sym_true] = ACTIONS(892), + [sym_null] = ACTIONS(892), + [anon_sym_do] = ACTIONS(892), + [anon_sym_goto] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_L_DQUOTE] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_default] = ACTIONS(892), + [anon_sym_else] = ACTIONS(892), + [sym_identifier] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_break] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(892), + [sym_number_literal] = ACTIONS(894), + [anon_sym_DQUOTE] = ACTIONS(894), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_if] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_switch] = ACTIONS(892), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(892), + [anon_sym_return] = ACTIONS(892), + [anon_sym_while] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(894), + [anon_sym_sizeof] = ACTIONS(892), }, [539] = { - [sym_char_literal] = STATE(566), - [sym__expression] = STATE(566), - [sym_binary_expression] = STATE(566), - [sym_update_expression] = STATE(566), - [sym_call_expression] = STATE(566), - [sym_pointer_expression] = STATE(566), - [sym_unary_expression] = STATE(566), - [sym_sizeof_expression] = STATE(566), - [sym_subscript_expression] = STATE(566), - [sym_parenthesized_expression] = STATE(566), - [sym_concatenated_string] = STATE(566), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(566), - [sym_assignment_expression] = STATE(566), - [sym_cast_expression] = STATE(566), - [sym_field_expression] = STATE(566), - [sym_compound_literal_expression] = STATE(566), - [sym_false] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2219), - [sym_null] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_true] = ACTIONS(937), + [anon_sym_restrict] = ACTIONS(937), + [sym_null] = ACTIONS(937), + [anon_sym_goto] = ACTIONS(937), + [anon_sym_const] = ACTIONS(937), + [anon_sym_typedef] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym__Atomic] = ACTIONS(937), + [sym_identifier] = ACTIONS(937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(937), + [sym_number_literal] = ACTIONS(939), + [anon_sym_volatile] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(937), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(937), + [anon_sym_signed] = ACTIONS(937), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(937), + [anon_sym_while] = ACTIONS(937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(937), + [anon_sym_L_SQUOTE] = ACTIONS(939), + [anon_sym___attribute__] = ACTIONS(937), + [anon_sym_sizeof] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_union] = ACTIONS(937), + [anon_sym_unsigned] = ACTIONS(937), + [anon_sym_short] = ACTIONS(937), + [anon_sym_do] = ACTIONS(937), + [sym_preproc_directive] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(939), + [aux_sym_preproc_if_token1] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_L_DQUOTE] = ACTIONS(939), + [anon_sym_LPAREN2] = ACTIONS(939), + [sym_primitive_type] = ACTIONS(937), + [anon_sym_for] = ACTIONS(937), + [anon_sym_break] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(939), + [aux_sym_preproc_include_token1] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_static] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_register] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_if] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [ts_builtin_sym_end] = ACTIONS(939), + [anon_sym_return] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), + [aux_sym_preproc_def_token1] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_auto] = ACTIONS(937), + [anon_sym_inline] = ACTIONS(937), }, [540] = { - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_union] = ACTIONS(643), - [sym_true] = ACTIONS(643), - [anon_sym_unsigned] = ACTIONS(643), - [anon_sym_restrict] = ACTIONS(643), - [anon_sym_short] = ACTIONS(643), - [sym_false] = ACTIONS(643), - [sym_null] = ACTIONS(643), - [sym_identifier] = ACTIONS(643), - [anon_sym_do] = ACTIONS(643), - [anon_sym_goto] = ACTIONS(643), - [sym_preproc_directive] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(641), - [aux_sym_preproc_if_token1] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_const] = ACTIONS(643), - [anon_sym_LPAREN2] = ACTIONS(641), - [anon_sym_typedef] = ACTIONS(643), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(641), - [anon_sym__Atomic] = ACTIONS(643), - [sym_primitive_type] = ACTIONS(643), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(641), - [aux_sym_preproc_include_token1] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_static] = ACTIONS(643), - [anon_sym_volatile] = ACTIONS(643), - [anon_sym_register] = ACTIONS(643), - [anon_sym_extern] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_if] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_switch] = ACTIONS(643), - [anon_sym_signed] = ACTIONS(643), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_long] = ACTIONS(643), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [sym_number_literal] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(643), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_SQUOTE] = ACTIONS(641), - [aux_sym_preproc_def_token1] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_auto] = ACTIONS(643), - [anon_sym_L] = ACTIONS(643), - [anon_sym_inline] = ACTIONS(643), - [anon_sym___attribute__] = ACTIONS(643), - [anon_sym_sizeof] = ACTIONS(643), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(946), + [anon_sym_DASH_EQ] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(946), + [anon_sym_LT_LT_EQ] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(946), + [anon_sym_BANG_EQ] = ACTIONS(2247), + [anon_sym_CARET_EQ] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_PIPE_EQ] = ACTIONS(946), + [anon_sym_RPAREN] = ACTIONS(946), + [anon_sym_RBRACK] = ACTIONS(946), + [anon_sym_AMP_EQ] = ACTIONS(946), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_EQ] = ACTIONS(2255), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_COLON] = ACTIONS(946), + [anon_sym_STAR_EQ] = ACTIONS(946), + [anon_sym_PIPE_PIPE] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(946), + [anon_sym_AMP_AMP] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(305), }, [541] = { - [sym_if_statement] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(541), - [sym_declaration] = STATE(541), - [sym_do_statement] = STATE(541), - [sym_for_statement] = STATE(541), - [aux_sym_translation_unit_repeat1] = STATE(541), - [sym_expression_statement] = STATE(541), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(883), - [sym_union_specifier] = STATE(883), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(541), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_break_statement] = STATE(541), - [sym__empty_declaration] = STATE(541), - [sym_sized_type_specifier] = STATE(883), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(541), - [sym_preproc_include] = STATE(541), - [sym_preproc_if] = STATE(541), - [sym_preproc_ifdef] = STATE(541), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(541), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(883), - [sym_while_statement] = STATE(541), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(541), - [sym_struct_specifier] = STATE(883), - [sym_goto_statement] = STATE(541), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_union] = ACTIONS(685), - [sym_true] = ACTIONS(2226), - [anon_sym_unsigned] = ACTIONS(691), - [anon_sym_restrict] = ACTIONS(694), - [anon_sym_short] = ACTIONS(691), - [sym_false] = ACTIONS(2226), - [sym_null] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2232), - [anon_sym_goto] = ACTIONS(2235), - [sym_preproc_directive] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(711), - [aux_sym_preproc_if_token1] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_const] = ACTIONS(694), - [anon_sym_LPAREN2] = ACTIONS(720), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_DASH_DASH] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym__Atomic] = ACTIONS(694), - [sym_primitive_type] = ACTIONS(2247), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2256), - [anon_sym_BANG] = ACTIONS(717), - [aux_sym_preproc_include_token1] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_static] = ACTIONS(750), - [anon_sym_volatile] = ACTIONS(694), - [anon_sym_register] = ACTIONS(750), - [anon_sym_extern] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_struct] = ACTIONS(759), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_signed] = ACTIONS(691), - [anon_sym_enum] = ACTIONS(765), - [anon_sym_long] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(726), - [sym_number_literal] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_SQUOTE] = ACTIONS(783), - [aux_sym_preproc_def_token1] = ACTIONS(2286), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_auto] = ACTIONS(750), - [anon_sym_L] = ACTIONS(789), - [anon_sym_inline] = ACTIONS(750), - [anon_sym___attribute__] = ACTIONS(792), - [anon_sym_sizeof] = ACTIONS(795), + [sym_true] = ACTIONS(950), + [anon_sym_restrict] = ACTIONS(950), + [sym_null] = ACTIONS(950), + [anon_sym_goto] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(950), + [sym_identifier] = ACTIONS(950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(950), + [sym_number_literal] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_signed] = ACTIONS(950), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_union] = ACTIONS(950), + [anon_sym_unsigned] = ACTIONS(950), + [anon_sym_short] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [sym_preproc_directive] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_L_DQUOTE] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_else] = ACTIONS(950), + [sym_primitive_type] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_static] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(950), + [sym_false] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_auto] = ACTIONS(950), + [anon_sym_inline] = ACTIONS(950), }, [542] = { - [sym_false] = ACTIONS(815), - [anon_sym_restrict] = ACTIONS(815), - [sym_identifier] = ACTIONS(815), - [anon_sym_goto] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_typedef] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym__Atomic] = ACTIONS(815), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(815), - [sym_number_literal] = ACTIONS(817), - [anon_sym_volatile] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(815), - [anon_sym_signed] = ACTIONS(815), - [anon_sym_long] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(815), - [anon_sym_L] = ACTIONS(815), - [anon_sym___attribute__] = ACTIONS(815), - [anon_sym_sizeof] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_union] = ACTIONS(815), - [anon_sym_unsigned] = ACTIONS(815), - [anon_sym_short] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [sym_preproc_directive] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(817), - [aux_sym_preproc_if_token1] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_LPAREN2] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_else] = ACTIONS(815), - [sym_primitive_type] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [aux_sym_preproc_include_token1] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_static] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_if] = ACTIONS(815), - [anon_sym_switch] = ACTIONS(815), - [sym_true] = ACTIONS(815), - [anon_sym_enum] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(817), - [aux_sym_preproc_def_token1] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_auto] = ACTIONS(815), - [anon_sym_inline] = ACTIONS(815), + [sym_true] = ACTIONS(970), + [anon_sym_restrict] = ACTIONS(970), + [sym_null] = ACTIONS(970), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(970), + [sym_identifier] = ACTIONS(970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(970), + [anon_sym_signed] = ACTIONS(970), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_union] = ACTIONS(970), + [anon_sym_unsigned] = ACTIONS(970), + [anon_sym_short] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [sym_preproc_directive] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(972), + [anon_sym_L_DQUOTE] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_static] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(972), + [anon_sym_register] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_if] = ACTIONS(970), + [anon_sym_switch] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [sym_false] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_auto] = ACTIONS(970), + [anon_sym_inline] = ACTIONS(970), }, [543] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(843), - [anon_sym_DASH_EQ] = ACTIONS(843), - [anon_sym_PIPE] = ACTIONS(2291), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(843), - [anon_sym_LT_LT_EQ] = ACTIONS(843), - [anon_sym_QMARK] = ACTIONS(843), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_CARET_EQ] = ACTIONS(843), - [anon_sym_COMMA] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_PIPE_EQ] = ACTIONS(843), - [anon_sym_RPAREN] = ACTIONS(843), - [anon_sym_RBRACK] = ACTIONS(843), - [anon_sym_AMP_EQ] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(2301), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_COLON] = ACTIONS(843), - [anon_sym_STAR_EQ] = ACTIONS(843), - [anon_sym_PIPE_PIPE] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(843), - [anon_sym_AMP_AMP] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(843), - [anon_sym_CARET] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_true] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym__Atomic] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_union] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(982), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_static] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(982), + [anon_sym_register] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_if] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), }, [544] = { - [sym_false] = ACTIONS(847), - [anon_sym_restrict] = ACTIONS(847), - [sym_identifier] = ACTIONS(847), - [anon_sym_goto] = ACTIONS(847), - [anon_sym_const] = ACTIONS(847), - [anon_sym_typedef] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym__Atomic] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(847), - [sym_number_literal] = ACTIONS(849), - [anon_sym_volatile] = ACTIONS(847), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_extern] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(847), - [anon_sym_signed] = ACTIONS(847), - [anon_sym_long] = ACTIONS(847), - [anon_sym_while] = ACTIONS(847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(847), - [anon_sym_L] = ACTIONS(847), - [anon_sym___attribute__] = ACTIONS(847), - [anon_sym_sizeof] = ACTIONS(847), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_union] = ACTIONS(847), - [anon_sym_unsigned] = ACTIONS(847), - [anon_sym_short] = ACTIONS(847), - [anon_sym_do] = ACTIONS(847), - [sym_preproc_directive] = ACTIONS(847), - [anon_sym_AMP] = ACTIONS(849), - [aux_sym_preproc_if_token1] = ACTIONS(847), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_else] = ACTIONS(847), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_for] = ACTIONS(847), - [anon_sym_break] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(849), - [aux_sym_preproc_include_token1] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_static] = ACTIONS(847), - [anon_sym_register] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_if] = ACTIONS(847), - [anon_sym_switch] = ACTIONS(847), - [sym_true] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(847), - [sym_null] = ACTIONS(847), - [anon_sym_return] = ACTIONS(847), - [anon_sym_continue] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(849), - [aux_sym_preproc_def_token1] = ACTIONS(847), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_auto] = ACTIONS(847), - [anon_sym_inline] = ACTIONS(847), + [sym_true] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym__Atomic] = ACTIONS(984), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_union] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(986), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_else] = ACTIONS(2267), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(986), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [anon_sym_register] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_if] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), }, [545] = { - [sym_false] = ACTIONS(853), - [anon_sym_restrict] = ACTIONS(853), - [sym_identifier] = ACTIONS(853), - [anon_sym_goto] = ACTIONS(853), - [anon_sym_const] = ACTIONS(853), - [anon_sym_typedef] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(855), - [anon_sym__Atomic] = ACTIONS(853), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(853), - [sym_number_literal] = ACTIONS(855), - [anon_sym_volatile] = ACTIONS(853), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_extern] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(855), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_signed] = ACTIONS(853), - [anon_sym_long] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(853), - [anon_sym_L] = ACTIONS(853), - [anon_sym___attribute__] = ACTIONS(853), - [anon_sym_sizeof] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_union] = ACTIONS(853), - [anon_sym_unsigned] = ACTIONS(853), - [anon_sym_short] = ACTIONS(853), - [anon_sym_do] = ACTIONS(853), - [sym_preproc_directive] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), - [aux_sym_preproc_if_token1] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [anon_sym_LPAREN2] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_else] = ACTIONS(853), - [sym_primitive_type] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(855), - [aux_sym_preproc_include_token1] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_static] = ACTIONS(853), - [anon_sym_register] = ACTIONS(853), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_if] = ACTIONS(853), - [anon_sym_switch] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [anon_sym_return] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [aux_sym_preproc_def_token1] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_auto] = ACTIONS(853), - [anon_sym_inline] = ACTIONS(853), + [sym_true] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym__Atomic] = ACTIONS(1028), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1030), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), }, [546] = { - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_union] = ACTIONS(859), - [sym_true] = ACTIONS(859), - [anon_sym_unsigned] = ACTIONS(859), - [anon_sym_restrict] = ACTIONS(859), - [anon_sym_short] = ACTIONS(859), - [sym_false] = ACTIONS(859), - [sym_null] = ACTIONS(859), - [sym_identifier] = ACTIONS(859), - [anon_sym_do] = ACTIONS(859), - [anon_sym_goto] = ACTIONS(859), - [sym_preproc_directive] = ACTIONS(859), - [anon_sym_AMP] = ACTIONS(857), - [aux_sym_preproc_if_token1] = ACTIONS(859), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_const] = ACTIONS(859), - [anon_sym_LPAREN2] = ACTIONS(857), - [anon_sym_typedef] = ACTIONS(859), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym__Atomic] = ACTIONS(859), - [sym_primitive_type] = ACTIONS(859), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(859), - [anon_sym_break] = ACTIONS(859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(859), - [anon_sym_BANG] = ACTIONS(857), - [aux_sym_preproc_include_token1] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_static] = ACTIONS(859), - [anon_sym_volatile] = ACTIONS(859), - [anon_sym_register] = ACTIONS(859), - [anon_sym_extern] = ACTIONS(859), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_if] = ACTIONS(859), - [anon_sym_struct] = ACTIONS(859), - [anon_sym_switch] = ACTIONS(859), - [anon_sym_signed] = ACTIONS(859), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_long] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [sym_number_literal] = ACTIONS(857), - [anon_sym_return] = ACTIONS(859), - [anon_sym_while] = ACTIONS(859), - [anon_sym_continue] = ACTIONS(859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(857), - [aux_sym_preproc_def_token1] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_auto] = ACTIONS(859), - [anon_sym_L] = ACTIONS(859), - [anon_sym_inline] = ACTIONS(859), - [anon_sym___attribute__] = ACTIONS(859), - [anon_sym_sizeof] = ACTIONS(859), + [sym_true] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym__Atomic] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_sizeof] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), }, [547] = { - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_union] = ACTIONS(863), - [sym_true] = ACTIONS(863), - [anon_sym_unsigned] = ACTIONS(863), - [anon_sym_restrict] = ACTIONS(863), - [anon_sym_short] = ACTIONS(863), - [sym_false] = ACTIONS(863), - [sym_null] = ACTIONS(863), - [sym_identifier] = ACTIONS(863), - [anon_sym_do] = ACTIONS(863), - [anon_sym_goto] = ACTIONS(863), - [sym_preproc_directive] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(861), - [aux_sym_preproc_if_token1] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(861), - [anon_sym_const] = ACTIONS(863), - [anon_sym_LPAREN2] = ACTIONS(861), - [anon_sym_typedef] = ACTIONS(863), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym__Atomic] = ACTIONS(863), - [sym_primitive_type] = ACTIONS(863), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(861), - [aux_sym_preproc_include_token1] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_static] = ACTIONS(863), - [anon_sym_volatile] = ACTIONS(863), - [anon_sym_register] = ACTIONS(863), - [anon_sym_extern] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_if] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_switch] = ACTIONS(863), - [anon_sym_signed] = ACTIONS(863), - [anon_sym_enum] = ACTIONS(863), - [anon_sym_long] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_number_literal] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_SQUOTE] = ACTIONS(861), - [aux_sym_preproc_def_token1] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_auto] = ACTIONS(863), - [anon_sym_L] = ACTIONS(863), - [anon_sym_inline] = ACTIONS(863), - [anon_sym___attribute__] = ACTIONS(863), - [anon_sym_sizeof] = ACTIONS(863), + [sym_true] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym__Atomic] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), }, [548] = { - [sym_char_literal] = STATE(243), - [sym__expression] = STATE(243), - [sym_binary_expression] = STATE(243), - [sym_update_expression] = STATE(243), - [sym_call_expression] = STATE(243), - [sym_pointer_expression] = STATE(243), - [sym_unary_expression] = STATE(243), - [sym_sizeof_expression] = STATE(243), - [sym_subscript_expression] = STATE(243), - [sym_parenthesized_expression] = STATE(243), - [sym_initializer_list] = STATE(244), - [sym_concatenated_string] = STATE(243), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(243), - [sym_assignment_expression] = STATE(243), - [sym_cast_expression] = STATE(243), - [sym_field_expression] = STATE(243), - [sym_compound_literal_expression] = STATE(243), - [anon_sym_LBRACE] = ACTIONS(917), - [sym_false] = ACTIONS(919), - [sym_identifier] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(919), - [sym_null] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_true] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [anon_sym_goto] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), + [sym_number_literal] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1062), + [anon_sym_signed] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_unsigned] = ACTIONS(1062), + [anon_sym_short] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_L_DQUOTE] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_switch] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_auto] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), }, [549] = { - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_case] = ACTIONS(923), - [sym_false] = ACTIONS(923), - [sym_identifier] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_goto] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_TILDE] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_DASH_DASH] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_default] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(923), - [sym_number_literal] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_if] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_switch] = ACTIONS(923), - [sym_true] = ACTIONS(923), - [sym_null] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_L] = ACTIONS(923), - [anon_sym_sizeof] = ACTIONS(923), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(305), }, [550] = { - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_union] = ACTIONS(968), - [sym_true] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [ts_builtin_sym_end] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_const] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_static] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_if] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [sym_number_literal] = ACTIONS(970), - [anon_sym_return] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_L] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(968), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(2247), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(305), }, [551] = { - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_union] = ACTIONS(995), - [sym_true] = ACTIONS(995), - [anon_sym_unsigned] = ACTIONS(995), - [anon_sym_restrict] = ACTIONS(995), - [anon_sym_short] = ACTIONS(995), - [sym_false] = ACTIONS(995), - [sym_null] = ACTIONS(995), - [sym_identifier] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_goto] = ACTIONS(995), - [sym_preproc_directive] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(993), - [aux_sym_preproc_if_token1] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(993), - [anon_sym_const] = ACTIONS(995), - [anon_sym_LPAREN2] = ACTIONS(993), - [anon_sym_typedef] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_DASH_DASH] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(993), - [anon_sym__Atomic] = ACTIONS(995), - [sym_primitive_type] = ACTIONS(995), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_static] = ACTIONS(995), - [anon_sym_volatile] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_if] = ACTIONS(995), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_switch] = ACTIONS(995), - [anon_sym_signed] = ACTIONS(995), - [anon_sym_enum] = ACTIONS(995), - [anon_sym_long] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(993), - [sym_number_literal] = ACTIONS(993), - [anon_sym_return] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_SQUOTE] = ACTIONS(993), - [aux_sym_preproc_def_token1] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_auto] = ACTIONS(995), - [anon_sym_L] = ACTIONS(995), - [anon_sym_inline] = ACTIONS(995), - [anon_sym___attribute__] = ACTIONS(995), - [anon_sym_sizeof] = ACTIONS(995), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(305), }, [552] = { - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_union] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [anon_sym_unsigned] = ACTIONS(1005), - [anon_sym_restrict] = ACTIONS(1005), - [anon_sym_short] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [sym_null] = ACTIONS(1005), - [sym_identifier] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_goto] = ACTIONS(1005), - [sym_preproc_directive] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(1003), - [aux_sym_preproc_if_token1] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(1003), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1003), - [anon_sym_typedef] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1003), - [anon_sym__Atomic] = ACTIONS(1005), - [sym_primitive_type] = ACTIONS(1005), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [aux_sym_preproc_include_token1] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_static] = ACTIONS(1005), - [anon_sym_volatile] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_struct] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [anon_sym_signed] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1005), - [anon_sym_long] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [sym_number_literal] = ACTIONS(1003), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1003), - [aux_sym_preproc_def_token1] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_auto] = ACTIONS(1005), - [anon_sym_L] = ACTIONS(1005), - [anon_sym_inline] = ACTIONS(1005), - [anon_sym___attribute__] = ACTIONS(1005), - [anon_sym_sizeof] = ACTIONS(1005), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(305), }, [553] = { - [sym_false] = ACTIONS(1007), - [anon_sym_restrict] = ACTIONS(1007), - [sym_identifier] = ACTIONS(1007), - [anon_sym_goto] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_typedef] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym__Atomic] = ACTIONS(1007), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1007), - [sym_number_literal] = ACTIONS(1009), - [anon_sym_volatile] = ACTIONS(1007), - [anon_sym_SQUOTE] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_signed] = ACTIONS(1007), - [anon_sym_long] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1007), - [anon_sym_L] = ACTIONS(1007), - [anon_sym___attribute__] = ACTIONS(1007), - [anon_sym_sizeof] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsigned] = ACTIONS(1007), - [anon_sym_short] = ACTIONS(1007), - [anon_sym_do] = ACTIONS(1007), - [sym_preproc_directive] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), - [aux_sym_preproc_if_token1] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [anon_sym_LPAREN2] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_else] = ACTIONS(2313), - [sym_primitive_type] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1009), - [aux_sym_preproc_include_token1] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_register] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_switch] = ACTIONS(1007), - [sym_true] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [sym_null] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [aux_sym_preproc_def_token1] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_auto] = ACTIONS(1007), - [anon_sym_inline] = ACTIONS(1007), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(1078), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(305), }, [554] = { - [sym_false] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [anon_sym_goto] = ACTIONS(1051), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_typedef] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1053), - [anon_sym__Atomic] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [sym_number_literal] = ACTIONS(1053), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_extern] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), - [anon_sym_L] = ACTIONS(1051), - [anon_sym___attribute__] = ACTIONS(1051), - [anon_sym_sizeof] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1051), - [anon_sym_short] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(1051), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1053), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1053), - [anon_sym_LPAREN2] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1053), - [aux_sym_preproc_include_token1] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_switch] = ACTIONS(1051), - [sym_true] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [sym_null] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1053), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [anon_sym_inline] = ACTIONS(1051), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(2247), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(305), }, [555] = { - [sym_false] = ACTIONS(1071), - [anon_sym_restrict] = ACTIONS(1071), - [sym_identifier] = ACTIONS(1071), - [anon_sym_goto] = ACTIONS(1071), - [anon_sym_const] = ACTIONS(1071), - [anon_sym_typedef] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym__Atomic] = ACTIONS(1071), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1071), - [sym_number_literal] = ACTIONS(1073), - [anon_sym_volatile] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_extern] = ACTIONS(1071), - [anon_sym_PLUS_PLUS] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(1071), - [anon_sym_signed] = ACTIONS(1071), - [anon_sym_long] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1071), - [anon_sym_L] = ACTIONS(1071), - [anon_sym___attribute__] = ACTIONS(1071), - [anon_sym_sizeof] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_union] = ACTIONS(1071), - [anon_sym_unsigned] = ACTIONS(1071), - [anon_sym_short] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(1071), - [sym_preproc_directive] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - [aux_sym_preproc_if_token1] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1073), - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_RBRACE] = ACTIONS(1073), - [anon_sym_else] = ACTIONS(1071), - [sym_primitive_type] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1073), - [aux_sym_preproc_include_token1] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_static] = ACTIONS(1071), - [anon_sym_register] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_switch] = ACTIONS(1071), - [sym_true] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1071), - [sym_null] = ACTIONS(1071), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [aux_sym_preproc_def_token1] = ACTIONS(1071), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_auto] = ACTIONS(1071), - [anon_sym_inline] = ACTIONS(1071), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(2247), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(305), }, [556] = { - [sym_false] = ACTIONS(1075), - [anon_sym_restrict] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [anon_sym_goto] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_typedef] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym__Atomic] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), - [sym_number_literal] = ACTIONS(1077), - [anon_sym_volatile] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_extern] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_signed] = ACTIONS(1075), - [anon_sym_long] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), - [anon_sym_L] = ACTIONS(1075), - [anon_sym___attribute__] = ACTIONS(1075), - [anon_sym_sizeof] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_union] = ACTIONS(1075), - [anon_sym_unsigned] = ACTIONS(1075), - [anon_sym_short] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(1075), - [sym_preproc_directive] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - [aux_sym_preproc_if_token1] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_LPAREN2] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_else] = ACTIONS(1075), - [sym_primitive_type] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), - [aux_sym_preproc_include_token1] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_register] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_switch] = ACTIONS(1075), - [sym_true] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [sym_null] = ACTIONS(1075), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1077), - [aux_sym_preproc_def_token1] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_auto] = ACTIONS(1075), - [anon_sym_inline] = ACTIONS(1075), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(2247), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(305), }, [557] = { - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_union] = ACTIONS(1087), - [sym_true] = ACTIONS(1087), - [anon_sym_unsigned] = ACTIONS(1087), - [anon_sym_restrict] = ACTIONS(1087), - [anon_sym_short] = ACTIONS(1087), - [sym_false] = ACTIONS(1087), - [sym_null] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1087), - [anon_sym_do] = ACTIONS(1087), - [anon_sym_goto] = ACTIONS(1087), - [sym_preproc_directive] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1085), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_LPAREN2] = ACTIONS(1085), - [anon_sym_typedef] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym__Atomic] = ACTIONS(1087), - [sym_primitive_type] = ACTIONS(1087), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1085), - [aux_sym_preproc_include_token1] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_volatile] = ACTIONS(1087), - [anon_sym_register] = ACTIONS(1087), - [anon_sym_extern] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_switch] = ACTIONS(1087), - [anon_sym_signed] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [anon_sym_long] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [sym_number_literal] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [aux_sym_preproc_def_token1] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_auto] = ACTIONS(1087), - [anon_sym_L] = ACTIONS(1087), - [anon_sym_inline] = ACTIONS(1087), - [anon_sym___attribute__] = ACTIONS(1087), - [anon_sym_sizeof] = ACTIONS(1087), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(1078), + [anon_sym_DASH_EQ] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1078), + [anon_sym_LT_LT_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_BANG_EQ] = ACTIONS(2247), + [anon_sym_CARET_EQ] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_PIPE_EQ] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_AMP_EQ] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1078), + [anon_sym_STAR_EQ] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(1078), + [anon_sym_AMP_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(305), }, [558] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_true] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [sym_null] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), }, [559] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(2291), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_true] = ACTIONS(1128), + [anon_sym_restrict] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [anon_sym_goto] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), + [sym_number_literal] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_unsigned] = ACTIONS(1128), + [anon_sym_short] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [sym_preproc_directive] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_L_DQUOTE] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_auto] = ACTIONS(1128), + [anon_sym_inline] = ACTIONS(1128), }, [560] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(1168), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [aux_sym_preproc_else_token1] = ACTIONS(2272), + [aux_sym_preproc_if_token2] = ACTIONS(2272), + [sym_preproc_directive] = ACTIONS(2274), + [anon_sym_signed] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(2277), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1180), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2269), + [aux_sym_preproc_elif_token1] = ACTIONS(2272), + [aux_sym_preproc_def_token1] = ACTIONS(2280), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1177), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1177), + [anon_sym___attribute__] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1203), }, [561] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(1107), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [aux_sym_preproc_else_token1] = ACTIONS(1214), + [aux_sym_preproc_if_token2] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), + [aux_sym_preproc_elif_token1] = ACTIONS(1214), + [aux_sym_preproc_def_token1] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1214), }, [562] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_true] = ACTIONS(1226), + [anon_sym_restrict] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym__Atomic] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym___attribute__] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [sym_preproc_directive] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1228), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1226), + [sym_primitive_type] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1228), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1228), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1228), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), }, [563] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_true] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [sym_null] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), }, [564] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_true] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [sym_null] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), }, [565] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(2291), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_true] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [sym_null] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), }, [566] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_LT_LT_EQ] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_CARET_EQ] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_PIPE_EQ] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_AMP_EQ] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_true] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [sym_null] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), }, [567] = { - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1137), - [sym_true] = ACTIONS(1137), - [anon_sym_unsigned] = ACTIONS(1137), - [anon_sym_restrict] = ACTIONS(1137), - [anon_sym_short] = ACTIONS(1137), - [sym_false] = ACTIONS(1137), - [sym_null] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [anon_sym_do] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1137), - [sym_preproc_directive] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_LPAREN2] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1137), - [sym_primitive_type] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1137), - [anon_sym_break] = ACTIONS(1137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_register] = ACTIONS(1137), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1137), - [anon_sym_struct] = ACTIONS(1137), - [anon_sym_switch] = ACTIONS(1137), - [anon_sym_signed] = ACTIONS(1137), - [anon_sym_enum] = ACTIONS(1137), - [anon_sym_long] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1137), - [anon_sym_while] = ACTIONS(1137), - [anon_sym_continue] = ACTIONS(1137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_auto] = ACTIONS(1137), - [anon_sym_L] = ACTIONS(1137), - [anon_sym_inline] = ACTIONS(1137), - [anon_sym___attribute__] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1137), + [sym_true] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [sym_null] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), }, [568] = { - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_true] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [sym_null] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_L] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym_sizeof] = ACTIONS(1157), + [sym_true] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [sym_null] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), }, [569] = { - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(569), - [sym_field_declaration] = STATE(569), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_field_declaration_list] = STATE(569), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1201), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1207), - [anon_sym_extern] = ACTIONS(1207), - [sym_identifier] = ACTIONS(1210), - [aux_sym_preproc_else_token1] = ACTIONS(2318), - [aux_sym_preproc_if_token2] = ACTIONS(2318), - [sym_preproc_directive] = ACTIONS(2320), - [anon_sym_signed] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(2323), - [anon_sym_long] = ACTIONS(1201), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2315), - [aux_sym_preproc_elif_token1] = ACTIONS(2318), - [aux_sym_preproc_def_token1] = ACTIONS(2326), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1207), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1207), - [anon_sym___attribute__] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [570] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_else_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [aux_sym_preproc_elif_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [sym_comment] = ACTIONS(3), + [sym_true] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [sym_null] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), }, [571] = { - [sym_false] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [anon_sym_L] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1262), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [sym_true] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [sym_null] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), + [sym_true] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), }, [572] = { - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1270), - [sym_true] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [sym_false] = ACTIONS(1270), - [sym_null] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1270), - [sym_primitive_type] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_L] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1270), - }, - [573] = { - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1274), - [sym_true] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_L] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1274), - }, - [574] = { - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1350), - [sym_true] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [sym_null] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_L] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1350), - }, - [575] = { - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), - [anon_sym_restrict] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_null] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1392), - [sym_primitive_type] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_L] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1392), - }, - [576] = { - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_restrict] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_null] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1396), - [anon_sym_do] = ACTIONS(1396), - [anon_sym_goto] = ACTIONS(1396), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1396), - [sym_primitive_type] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_volatile] = ACTIONS(1396), - [anon_sym_register] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_auto] = ACTIONS(1396), - [anon_sym_L] = ACTIONS(1396), - [anon_sym_inline] = ACTIONS(1396), - [anon_sym___attribute__] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1396), - }, - [577] = { - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [sym_null] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1400), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym__Atomic] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1400), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_L] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1402), - }, - [578] = { - [sym_if_statement] = STATE(597), - [sym_do_statement] = STATE(597), - [sym_for_statement] = STATE(597), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(597), - [sym_return_statement] = STATE(597), - [sym_break_statement] = STATE(597), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(597), - [sym_while_statement] = STATE(597), - [sym_continue_statement] = STATE(597), - [sym_goto_statement] = STATE(597), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(597), - [sym_expression_statement] = STATE(597), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [579] = { - [sym_false] = ACTIONS(1410), + [sym_true] = ACTIONS(1410), [anon_sym_restrict] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), + [sym_null] = ACTIONS(1410), [anon_sym_goto] = ACTIONS(1410), [anon_sym_const] = ACTIONS(1410), [anon_sym_typedef] = ACTIONS(1410), [anon_sym_DASH_DASH] = ACTIONS(1412), [anon_sym__Atomic] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), [sym_number_literal] = ACTIONS(1412), [anon_sym_volatile] = ACTIONS(1410), @@ -24989,10 +25144,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1412), [anon_sym_struct] = ACTIONS(1410), [anon_sym_signed] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), [anon_sym_long] = ACTIONS(1410), [anon_sym_while] = ACTIONS(1410), [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [anon_sym_L] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1412), [anon_sym___attribute__] = ACTIONS(1410), [anon_sym_sizeof] = ACTIONS(1410), [anon_sym_LBRACE] = ACTIONS(1412), @@ -25004,10 +25160,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1412), [aux_sym_preproc_if_token1] = ACTIONS(1410), [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), [anon_sym_LPAREN2] = ACTIONS(1412), [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_else] = ACTIONS(1410), [sym_primitive_type] = ACTIONS(1410), [anon_sym_for] = ACTIONS(1410), [anon_sym_break] = ACTIONS(1410), @@ -25015,13 +25170,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(1410), [anon_sym_DASH] = ACTIONS(1410), [anon_sym_static] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_register] = ACTIONS(1410), [anon_sym_STAR] = ACTIONS(1412), [anon_sym_if] = ACTIONS(1410), [anon_sym_switch] = ACTIONS(1410), - [sym_true] = ACTIONS(1410), [anon_sym_enum] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), [anon_sym_return] = ACTIONS(1410), [anon_sym_continue] = ACTIONS(1410), [anon_sym_SEMI] = ACTIONS(1412), @@ -25030,5587 +25185,5697 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1410), [anon_sym_inline] = ACTIONS(1410), }, - [580] = { - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1432), - [sym_true] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [sym_null] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_L] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1432), + [573] = { + [sym_char_literal] = STATE(236), + [sym__expression] = STATE(236), + [sym_binary_expression] = STATE(236), + [sym_update_expression] = STATE(236), + [sym_call_expression] = STATE(236), + [sym_pointer_expression] = STATE(236), + [sym_unary_expression] = STATE(236), + [sym_sizeof_expression] = STATE(236), + [sym_subscript_expression] = STATE(236), + [sym_parenthesized_expression] = STATE(236), + [sym_initializer_list] = STATE(237), + [sym_concatenated_string] = STATE(236), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(236), + [sym_assignment_expression] = STATE(236), + [sym_cast_expression] = STATE(236), + [sym_field_expression] = STATE(236), + [sym_compound_literal_expression] = STATE(236), + [anon_sym_GT_GT] = ACTIONS(1422), + [sym_true] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_EQ_EQ] = ACTIONS(1420), + [anon_sym_SLASH] = ACTIONS(1422), + [anon_sym_DASH_GT] = ACTIONS(1420), + [anon_sym_LT_LT] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(888), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1420), + [anon_sym_BANG_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(890), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1422), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RBRACK] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(886), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_EQ] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_COLON] = ACTIONS(1420), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_PIPE_PIPE] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_LT_EQ] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1424), + [sym_false] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(1422), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1420), }, - [581] = { - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1442), - [sym_true] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [sym_null] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_L] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1442), + [574] = { + [sym_char_literal] = STATE(590), + [sym__expression] = STATE(590), + [sym_binary_expression] = STATE(590), + [sym_update_expression] = STATE(590), + [sym_call_expression] = STATE(590), + [sym_pointer_expression] = STATE(590), + [sym_unary_expression] = STATE(590), + [sym_sizeof_expression] = STATE(590), + [sym_subscript_expression] = STATE(590), + [sym_parenthesized_expression] = STATE(590), + [sym_concatenated_string] = STATE(590), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(590), + [sym_assignment_expression] = STATE(590), + [sym_cast_expression] = STATE(590), + [sym_field_expression] = STATE(590), + [sym_compound_literal_expression] = STATE(590), + [sym_true] = ACTIONS(2283), + [sym_null] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, - [582] = { - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1450), - [sym_true] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), - [sym_null] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(1450), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_L] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1450), + [575] = { + [sym_true] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [sym_null] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), }, - [583] = { - [sym_char_literal] = STATE(243), - [sym__expression] = STATE(243), - [sym_binary_expression] = STATE(243), - [sym_update_expression] = STATE(243), - [sym_call_expression] = STATE(243), - [sym_pointer_expression] = STATE(243), - [sym_unary_expression] = STATE(243), - [sym_sizeof_expression] = STATE(243), - [sym_subscript_expression] = STATE(243), - [sym_parenthesized_expression] = STATE(243), - [sym_initializer_list] = STATE(244), - [sym_concatenated_string] = STATE(243), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(243), - [sym_assignment_expression] = STATE(243), - [sym_cast_expression] = STATE(243), - [sym_field_expression] = STATE(243), - [sym_compound_literal_expression] = STATE(243), - [anon_sym_GT_GT] = ACTIONS(1460), - [sym_false] = ACTIONS(919), - [sym_identifier] = ACTIONS(919), - [anon_sym_PERCENT_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_SLASH] = ACTIONS(1460), - [anon_sym_DASH_GT] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_LT_LT_EQ] = ACTIONS(1458), - [anon_sym_QMARK] = ACTIONS(1458), - [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_CARET_EQ] = ACTIONS(1458), - [anon_sym_COMMA] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [anon_sym_GT_GT_EQ] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_PIPE_EQ] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RBRACK] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_EQ] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_COLON] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1462), - [sym_true] = ACTIONS(919), - [sym_null] = ACTIONS(919), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1458), + [576] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), + [anon_sym_union] = ACTIONS(1485), + [anon_sym_unsigned] = ACTIONS(1485), + [anon_sym_restrict] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_volatile] = ACTIONS(1485), + [anon_sym_register] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1485), + [aux_sym_preproc_else_token1] = ACTIONS(1485), + [aux_sym_preproc_if_token2] = ACTIONS(1485), + [sym_preproc_directive] = ACTIONS(1485), + [anon_sym_signed] = ACTIONS(1485), + [aux_sym_preproc_if_token1] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_struct] = ACTIONS(1485), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), + [aux_sym_preproc_elif_token1] = ACTIONS(1485), + [aux_sym_preproc_def_token1] = ACTIONS(1485), + [anon_sym__Atomic] = ACTIONS(1485), + [anon_sym_auto] = ACTIONS(1485), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_inline] = ACTIONS(1485), + [anon_sym___attribute__] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1485), }, - [584] = { - [sym_char_literal] = STATE(600), - [sym__expression] = STATE(600), - [sym_binary_expression] = STATE(600), - [sym_update_expression] = STATE(600), - [sym_call_expression] = STATE(600), - [sym_pointer_expression] = STATE(600), - [sym_unary_expression] = STATE(600), - [sym_sizeof_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym_parenthesized_expression] = STATE(600), - [sym_concatenated_string] = STATE(600), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(600), - [sym_assignment_expression] = STATE(600), - [sym_cast_expression] = STATE(600), - [sym_field_expression] = STATE(600), - [sym_compound_literal_expression] = STATE(600), - [sym_false] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2331), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2329), - [sym_null] = ACTIONS(2329), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [577] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_unsigned] = ACTIONS(1495), + [anon_sym_restrict] = ACTIONS(1495), + [anon_sym_short] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_volatile] = ACTIONS(1495), + [anon_sym_register] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(1495), + [aux_sym_preproc_else_token1] = ACTIONS(1495), + [aux_sym_preproc_if_token2] = ACTIONS(1495), + [sym_preproc_directive] = ACTIONS(1495), + [anon_sym_signed] = ACTIONS(1495), + [aux_sym_preproc_if_token1] = ACTIONS(1495), + [anon_sym_long] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_struct] = ACTIONS(1495), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1495), + [aux_sym_preproc_elif_token1] = ACTIONS(1495), + [aux_sym_preproc_def_token1] = ACTIONS(1495), + [anon_sym__Atomic] = ACTIONS(1495), + [anon_sym_auto] = ACTIONS(1495), + [sym_primitive_type] = ACTIONS(1495), + [anon_sym_inline] = ACTIONS(1495), + [anon_sym___attribute__] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1495), }, - [585] = { - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1504), - [sym_true] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [sym_null] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1506), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym__Atomic] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1506), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_L] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_sizeof] = ACTIONS(1504), + [578] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_restrict] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [aux_sym_preproc_else_token1] = ACTIONS(1509), + [aux_sym_preproc_if_token2] = ACTIONS(1509), + [sym_preproc_directive] = ACTIONS(1509), + [anon_sym_signed] = ACTIONS(1509), + [aux_sym_preproc_if_token1] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), + [aux_sym_preproc_elif_token1] = ACTIONS(1509), + [aux_sym_preproc_def_token1] = ACTIONS(1509), + [anon_sym__Atomic] = ACTIONS(1509), + [anon_sym_auto] = ACTIONS(1509), + [sym_primitive_type] = ACTIONS(1509), + [anon_sym_inline] = ACTIONS(1509), + [anon_sym___attribute__] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1509), }, - [586] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_unsigned] = ACTIONS(1523), - [anon_sym_restrict] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_volatile] = ACTIONS(1523), - [anon_sym_register] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(1523), - [sym_identifier] = ACTIONS(1523), - [aux_sym_preproc_else_token1] = ACTIONS(1523), - [aux_sym_preproc_if_token2] = ACTIONS(1523), - [sym_preproc_directive] = ACTIONS(1523), - [anon_sym_signed] = ACTIONS(1523), - [aux_sym_preproc_if_token1] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1523), - [aux_sym_preproc_elif_token1] = ACTIONS(1523), - [aux_sym_preproc_def_token1] = ACTIONS(1523), - [anon_sym__Atomic] = ACTIONS(1523), - [anon_sym_auto] = ACTIONS(1523), - [sym_primitive_type] = ACTIONS(1523), - [anon_sym_inline] = ACTIONS(1523), - [anon_sym___attribute__] = ACTIONS(1523), + [579] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_unsigned] = ACTIONS(1513), + [anon_sym_restrict] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_volatile] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_if_token2] = ACTIONS(1513), + [sym_preproc_directive] = ACTIONS(1513), + [anon_sym_signed] = ACTIONS(1513), + [aux_sym_preproc_if_token1] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1513), + [aux_sym_preproc_def_token1] = ACTIONS(1513), + [anon_sym__Atomic] = ACTIONS(1513), + [anon_sym_auto] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1513), + [anon_sym_inline] = ACTIONS(1513), + [anon_sym___attribute__] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1513), }, - [587] = { + [580] = { + [sym_true] = ACTIONS(1533), + [anon_sym_restrict] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [anon_sym_goto] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_typedef] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym__Atomic] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1533), [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), + [sym_number_literal] = ACTIONS(1535), + [anon_sym_volatile] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_extern] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_signed] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), + [anon_sym_L_SQUOTE] = ACTIONS(1535), + [anon_sym___attribute__] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1535), [anon_sym_union] = ACTIONS(1533), [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), [anon_sym_short] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1535), [aux_sym_preproc_if_token1] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_L_DQUOTE] = ACTIONS(1535), + [anon_sym_LPAREN2] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [sym_primitive_type] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [aux_sym_preproc_include_token1] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_register] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), [anon_sym_enum] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), [aux_sym_preproc_def_token1] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), [anon_sym_auto] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), [anon_sym_inline] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), }, - [588] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1547), - [aux_sym_preproc_else_token1] = ACTIONS(1547), - [aux_sym_preproc_if_token2] = ACTIONS(1547), - [sym_preproc_directive] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [aux_sym_preproc_if_token1] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1547), - [aux_sym_preproc_elif_token1] = ACTIONS(1547), - [aux_sym_preproc_def_token1] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), + [581] = { + [sym_true] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym__Atomic] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), + [sym_number_literal] = ACTIONS(1609), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1609), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), + [anon_sym_L_SQUOTE] = ACTIONS(1609), + [anon_sym___attribute__] = ACTIONS(1607), + [anon_sym_sizeof] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [sym_preproc_directive] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1609), + [aux_sym_preproc_if_token1] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_L_DQUOTE] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [aux_sym_preproc_include_token1] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1609), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1609), + [aux_sym_preproc_def_token1] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), }, - [589] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1551), - [anon_sym_union] = ACTIONS(1551), - [anon_sym_unsigned] = ACTIONS(1551), - [anon_sym_restrict] = ACTIONS(1551), - [anon_sym_short] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_volatile] = ACTIONS(1551), - [anon_sym_register] = ACTIONS(1551), - [anon_sym_extern] = ACTIONS(1551), - [sym_identifier] = ACTIONS(1551), - [aux_sym_preproc_else_token1] = ACTIONS(1551), - [aux_sym_preproc_if_token2] = ACTIONS(1551), - [sym_preproc_directive] = ACTIONS(1551), - [anon_sym_signed] = ACTIONS(1551), - [aux_sym_preproc_if_token1] = ACTIONS(1551), - [anon_sym_long] = ACTIONS(1551), - [anon_sym_enum] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_struct] = ACTIONS(1551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1551), - [aux_sym_preproc_elif_token1] = ACTIONS(1551), - [aux_sym_preproc_def_token1] = ACTIONS(1551), - [anon_sym__Atomic] = ACTIONS(1551), - [anon_sym_auto] = ACTIONS(1551), - [sym_primitive_type] = ACTIONS(1551), - [anon_sym_inline] = ACTIONS(1551), - [anon_sym___attribute__] = ACTIONS(1551), - [sym_comment] = ACTIONS(3), + [582] = { + [sym_true] = ACTIONS(1616), + [anon_sym_restrict] = ACTIONS(1616), + [sym_null] = ACTIONS(1616), + [anon_sym_goto] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [anon_sym_typedef] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [anon_sym__Atomic] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1616), + [sym_number_literal] = ACTIONS(1618), + [anon_sym_volatile] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1616), + [anon_sym_signed] = ACTIONS(1616), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1616), + [anon_sym_L_SQUOTE] = ACTIONS(1618), + [anon_sym___attribute__] = ACTIONS(1616), + [anon_sym_sizeof] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_short] = ACTIONS(1616), + [anon_sym_do] = ACTIONS(1616), + [sym_preproc_directive] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1618), + [aux_sym_preproc_if_token1] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1618), + [anon_sym_L_DQUOTE] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [sym_primitive_type] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1618), + [aux_sym_preproc_include_token1] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_static] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_register] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_switch] = ACTIONS(1616), + [anon_sym_enum] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1618), + [aux_sym_preproc_def_token1] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_auto] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), }, - [590] = { - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_union] = ACTIONS(1573), - [sym_true] = ACTIONS(1573), - [anon_sym_unsigned] = ACTIONS(1573), - [anon_sym_restrict] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [sym_false] = ACTIONS(1573), - [sym_null] = ACTIONS(1573), - [sym_identifier] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_goto] = ACTIONS(1573), - [sym_preproc_directive] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1571), - [aux_sym_preproc_if_token1] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [anon_sym__Atomic] = ACTIONS(1573), - [sym_primitive_type] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1571), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_volatile] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_struct] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_signed] = ACTIONS(1573), - [anon_sym_enum] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_auto] = ACTIONS(1573), - [anon_sym_L] = ACTIONS(1573), - [anon_sym_inline] = ACTIONS(1573), - [anon_sym___attribute__] = ACTIONS(1573), - [anon_sym_sizeof] = ACTIONS(1573), + [583] = { + [sym_if_statement] = STATE(597), + [sym_do_statement] = STATE(597), + [sym_for_statement] = STATE(597), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(597), + [sym_return_statement] = STATE(597), + [sym_break_statement] = STATE(597), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(597), + [sym_while_statement] = STATE(597), + [sym_continue_statement] = STATE(597), + [sym_goto_statement] = STATE(597), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(597), + [sym_expression_statement] = STATE(597), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [591] = { - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_union] = ACTIONS(1645), - [sym_true] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [sym_false] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [sym_preproc_directive] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym__Atomic] = ACTIONS(1645), - [sym_primitive_type] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1647), - [aux_sym_preproc_include_token1] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [aux_sym_preproc_def_token1] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_auto] = ACTIONS(1645), - [anon_sym_L] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym_sizeof] = ACTIONS(1645), + [584] = { + [sym_if_statement] = STATE(601), + [sym_do_statement] = STATE(601), + [sym_for_statement] = STATE(601), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(601), + [sym_return_statement] = STATE(601), + [sym_break_statement] = STATE(601), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(601), + [sym_while_statement] = STATE(601), + [sym_continue_statement] = STATE(601), + [sym_goto_statement] = STATE(601), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(601), + [sym_expression_statement] = STATE(601), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [592] = { - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1654), + [585] = { + [sym_true] = ACTIONS(1646), + [anon_sym_restrict] = ACTIONS(1646), + [sym_null] = ACTIONS(1646), + [anon_sym_goto] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_typedef] = ACTIONS(1646), + [anon_sym_DASH_DASH] = ACTIONS(1648), + [anon_sym__Atomic] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(1648), + [anon_sym_volatile] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1646), + [anon_sym_PLUS_PLUS] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_signed] = ACTIONS(1646), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), + [anon_sym_L_SQUOTE] = ACTIONS(1648), + [anon_sym___attribute__] = ACTIONS(1646), + [anon_sym_sizeof] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_union] = ACTIONS(1646), + [anon_sym_unsigned] = ACTIONS(1646), + [anon_sym_short] = ACTIONS(1646), + [anon_sym_do] = ACTIONS(1646), + [sym_preproc_directive] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1648), + [aux_sym_preproc_if_token1] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_L_DQUOTE] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [sym_primitive_type] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1648), + [aux_sym_preproc_include_token1] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [sym_false] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1648), + [aux_sym_preproc_def_token1] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_auto] = ACTIONS(1646), + [anon_sym_inline] = ACTIONS(1646), + }, + [586] = { + [sym_true] = ACTIONS(1650), + [anon_sym_restrict] = ACTIONS(1650), + [sym_null] = ACTIONS(1650), + [anon_sym_goto] = ACTIONS(1650), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_typedef] = ACTIONS(1650), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [anon_sym__Atomic] = ACTIONS(1650), + [sym_identifier] = ACTIONS(1650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), + [sym_number_literal] = ACTIONS(1652), + [anon_sym_volatile] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_extern] = ACTIONS(1650), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_struct] = ACTIONS(1650), + [anon_sym_signed] = ACTIONS(1650), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1650), + [anon_sym_while] = ACTIONS(1650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), + [anon_sym_L_SQUOTE] = ACTIONS(1652), + [anon_sym___attribute__] = ACTIONS(1650), + [anon_sym_sizeof] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_union] = ACTIONS(1650), + [anon_sym_unsigned] = ACTIONS(1650), + [anon_sym_short] = ACTIONS(1650), + [anon_sym_do] = ACTIONS(1650), + [sym_preproc_directive] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1652), + [aux_sym_preproc_if_token1] = ACTIONS(1650), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_L_DQUOTE] = ACTIONS(1652), + [anon_sym_LPAREN2] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [sym_primitive_type] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1652), + [aux_sym_preproc_include_token1] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_static] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1652), + [anon_sym_register] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_switch] = ACTIONS(1650), + [anon_sym_enum] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1652), + [aux_sym_preproc_def_token1] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_auto] = ACTIONS(1650), + [anon_sym_inline] = ACTIONS(1650), + }, + [587] = { [sym_true] = ACTIONS(1654), - [anon_sym_unsigned] = ACTIONS(1654), [anon_sym_restrict] = ACTIONS(1654), - [anon_sym_short] = ACTIONS(1654), - [sym_false] = ACTIONS(1654), [sym_null] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), [anon_sym_goto] = ACTIONS(1654), - [sym_preproc_directive] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - [aux_sym_preproc_if_token1] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1656), [anon_sym_const] = ACTIONS(1654), - [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_typedef] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1656), [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), [anon_sym__Atomic] = ACTIONS(1654), - [sym_primitive_type] = ACTIONS(1654), + [sym_identifier] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1656), + [anon_sym_volatile] = ACTIONS(1654), + [anon_sym_SQUOTE] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1654), + [anon_sym_PLUS_PLUS] = ACTIONS(1656), + [anon_sym_struct] = ACTIONS(1654), + [anon_sym_signed] = ACTIONS(1654), [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), + [anon_sym_L_SQUOTE] = ACTIONS(1656), + [anon_sym___attribute__] = ACTIONS(1654), + [anon_sym_sizeof] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_union] = ACTIONS(1654), + [anon_sym_unsigned] = ACTIONS(1654), + [anon_sym_short] = ACTIONS(1654), + [anon_sym_do] = ACTIONS(1654), + [sym_preproc_directive] = ACTIONS(1654), + [anon_sym_AMP] = ACTIONS(1656), + [aux_sym_preproc_if_token1] = ACTIONS(1654), + [anon_sym_TILDE] = ACTIONS(1656), + [anon_sym_L_DQUOTE] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_else] = ACTIONS(1654), + [sym_primitive_type] = ACTIONS(1654), [anon_sym_for] = ACTIONS(1654), [anon_sym_break] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(1656), [aux_sym_preproc_include_token1] = ACTIONS(1654), [anon_sym_DASH] = ACTIONS(1654), [anon_sym_static] = ACTIONS(1654), - [anon_sym_volatile] = ACTIONS(1654), + [anon_sym_DQUOTE] = ACTIONS(1656), [anon_sym_register] = ACTIONS(1654), - [anon_sym_extern] = ACTIONS(1654), [anon_sym_STAR] = ACTIONS(1656), [anon_sym_if] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1654), [anon_sym_switch] = ACTIONS(1654), - [anon_sym_signed] = ACTIONS(1654), [anon_sym_enum] = ACTIONS(1654), - [anon_sym_long] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [sym_number_literal] = ACTIONS(1656), + [sym_false] = ACTIONS(1654), [anon_sym_return] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), [anon_sym_continue] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_SQUOTE] = ACTIONS(1656), [aux_sym_preproc_def_token1] = ACTIONS(1654), [anon_sym_PLUS] = ACTIONS(1654), [anon_sym_auto] = ACTIONS(1654), - [anon_sym_L] = ACTIONS(1654), [anon_sym_inline] = ACTIONS(1654), - [anon_sym___attribute__] = ACTIONS(1654), - [anon_sym_sizeof] = ACTIONS(1654), + }, + [588] = { + [sym_true] = ACTIONS(1666), + [anon_sym_restrict] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [anon_sym_goto] = ACTIONS(1666), + [anon_sym_const] = ACTIONS(1666), + [anon_sym_typedef] = ACTIONS(1666), + [anon_sym_DASH_DASH] = ACTIONS(1668), + [anon_sym__Atomic] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1666), + [sym_number_literal] = ACTIONS(1668), + [anon_sym_volatile] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1666), + [anon_sym_PLUS_PLUS] = ACTIONS(1668), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_signed] = ACTIONS(1666), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1666), + [anon_sym_L_SQUOTE] = ACTIONS(1668), + [anon_sym___attribute__] = ACTIONS(1666), + [anon_sym_sizeof] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_union] = ACTIONS(1666), + [anon_sym_unsigned] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_do] = ACTIONS(1666), + [sym_preproc_directive] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1668), + [aux_sym_preproc_if_token1] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1668), + [anon_sym_L_DQUOTE] = ACTIONS(1668), + [anon_sym_LPAREN2] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_else] = ACTIONS(1666), + [sym_primitive_type] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1668), + [aux_sym_preproc_include_token1] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_static] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1668), + [anon_sym_register] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1666), + [anon_sym_enum] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1668), + [aux_sym_preproc_def_token1] = ACTIONS(1666), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_auto] = ACTIONS(1666), + [anon_sym_inline] = ACTIONS(1666), + }, + [589] = { + [sym_true] = ACTIONS(1763), + [anon_sym_restrict] = ACTIONS(1763), + [sym_null] = ACTIONS(1763), + [anon_sym_goto] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_typedef] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym__Atomic] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), + [sym_number_literal] = ACTIONS(1765), + [anon_sym_volatile] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_struct] = ACTIONS(1763), + [anon_sym_signed] = ACTIONS(1763), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), + [anon_sym_L_SQUOTE] = ACTIONS(1765), + [anon_sym___attribute__] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1763), + [sym_preproc_directive] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + [aux_sym_preproc_if_token1] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_L_DQUOTE] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [sym_primitive_type] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1765), + [aux_sym_preproc_include_token1] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_switch] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [sym_false] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [aux_sym_preproc_def_token1] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_auto] = ACTIONS(1763), + [anon_sym_inline] = ACTIONS(1763), + }, + [590] = { + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(1776), + [anon_sym_DASH_EQ] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(1776), + [anon_sym_LT_LT_EQ] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(2287), + [anon_sym_BANG_EQ] = ACTIONS(2247), + [anon_sym_CARET_EQ] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_PIPE_EQ] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_AMP_EQ] = ACTIONS(1776), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_EQ] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_COLON] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(1776), + [anon_sym_AMP_AMP] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(305), + }, + [591] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_unsigned] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym_short] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_register] = ACTIONS(1793), + [anon_sym_extern] = ACTIONS(1793), + [aux_sym_preproc_else_token1] = ACTIONS(1793), + [aux_sym_preproc_if_token2] = ACTIONS(1793), + [sym_preproc_directive] = ACTIONS(1793), + [anon_sym_signed] = ACTIONS(1793), + [aux_sym_preproc_if_token1] = ACTIONS(1793), + [anon_sym_long] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1793), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1793), + [aux_sym_preproc_elif_token1] = ACTIONS(1793), + [aux_sym_preproc_def_token1] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym_auto] = ACTIONS(1793), + [sym_primitive_type] = ACTIONS(1793), + [anon_sym_inline] = ACTIONS(1793), + [anon_sym___attribute__] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1793), + }, + [592] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_unsigned] = ACTIONS(1799), + [anon_sym_restrict] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [aux_sym_preproc_else_token1] = ACTIONS(1799), + [aux_sym_preproc_if_token2] = ACTIONS(1799), + [sym_preproc_directive] = ACTIONS(1799), + [anon_sym_signed] = ACTIONS(1799), + [aux_sym_preproc_if_token1] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), + [aux_sym_preproc_elif_token1] = ACTIONS(1799), + [aux_sym_preproc_def_token1] = ACTIONS(1799), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_auto] = ACTIONS(1799), + [sym_primitive_type] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym___attribute__] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1799), }, [593] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), + [anon_sym_union] = ACTIONS(1803), + [anon_sym_unsigned] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_short] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [aux_sym_preproc_else_token1] = ACTIONS(1803), + [aux_sym_preproc_if_token2] = ACTIONS(1803), + [sym_preproc_directive] = ACTIONS(1803), + [anon_sym_signed] = ACTIONS(1803), + [aux_sym_preproc_if_token1] = ACTIONS(1803), + [anon_sym_long] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1803), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), + [aux_sym_preproc_elif_token1] = ACTIONS(1803), + [aux_sym_preproc_def_token1] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_auto] = ACTIONS(1803), + [sym_primitive_type] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym___attribute__] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1803), + }, + [594] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_unsigned] = ACTIONS(1809), + [anon_sym_restrict] = ACTIONS(1809), + [anon_sym_short] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_volatile] = ACTIONS(1809), + [anon_sym_register] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(1809), + [aux_sym_preproc_else_token1] = ACTIONS(1809), + [aux_sym_preproc_if_token2] = ACTIONS(1809), + [sym_preproc_directive] = ACTIONS(1809), + [anon_sym_signed] = ACTIONS(1809), + [aux_sym_preproc_if_token1] = ACTIONS(1809), + [anon_sym_long] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1809), + [aux_sym_preproc_elif_token1] = ACTIONS(1809), + [aux_sym_preproc_def_token1] = ACTIONS(1809), + [anon_sym__Atomic] = ACTIONS(1809), + [anon_sym_auto] = ACTIONS(1809), + [sym_primitive_type] = ACTIONS(1809), + [anon_sym_inline] = ACTIONS(1809), + [anon_sym___attribute__] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1809), + }, + [595] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), + [anon_sym_union] = ACTIONS(1831), + [anon_sym_unsigned] = ACTIONS(1831), + [anon_sym_restrict] = ACTIONS(1831), + [anon_sym_short] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_volatile] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [aux_sym_preproc_else_token1] = ACTIONS(1831), + [aux_sym_preproc_if_token2] = ACTIONS(1831), + [sym_preproc_directive] = ACTIONS(1831), + [anon_sym_signed] = ACTIONS(1831), + [aux_sym_preproc_if_token1] = ACTIONS(1831), + [anon_sym_long] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_struct] = ACTIONS(1831), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), + [aux_sym_preproc_elif_token1] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1831), + [anon_sym__Atomic] = ACTIONS(1831), + [anon_sym_auto] = ACTIONS(1831), + [sym_primitive_type] = ACTIONS(1831), + [anon_sym_inline] = ACTIONS(1831), + [anon_sym___attribute__] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1831), + }, + [596] = { + [sym_true] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [sym_null] = ACTIONS(1900), + [anon_sym_goto] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_typedef] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym__Atomic] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), + [sym_number_literal] = ACTIONS(1902), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_signed] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), + [anon_sym_L_SQUOTE] = ACTIONS(1902), + [anon_sym___attribute__] = ACTIONS(1900), + [anon_sym_sizeof] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsigned] = ACTIONS(1900), + [anon_sym_short] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [sym_preproc_directive] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [aux_sym_preproc_if_token1] = ACTIONS(1900), + [anon_sym_TILDE] = ACTIONS(1902), + [anon_sym_L_DQUOTE] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1902), + [aux_sym_preproc_include_token1] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1902), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_switch] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [sym_false] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1902), + [aux_sym_preproc_def_token1] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_auto] = ACTIONS(1900), + [anon_sym_inline] = ACTIONS(1900), + }, + [597] = { + [sym_true] = ACTIONS(1904), + [anon_sym_restrict] = ACTIONS(1904), + [sym_null] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_typedef] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym__Atomic] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), + [sym_number_literal] = ACTIONS(1906), + [anon_sym_volatile] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_signed] = ACTIONS(1904), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), + [anon_sym_L_SQUOTE] = ACTIONS(1906), + [anon_sym___attribute__] = ACTIONS(1904), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_unsigned] = ACTIONS(1904), + [anon_sym_short] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [sym_preproc_directive] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1906), + [aux_sym_preproc_if_token1] = ACTIONS(1904), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_L_DQUOTE] = ACTIONS(1906), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_else] = ACTIONS(1904), + [sym_primitive_type] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1906), + [aux_sym_preproc_include_token1] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [sym_false] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1906), + [aux_sym_preproc_def_token1] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_auto] = ACTIONS(1904), + [anon_sym_inline] = ACTIONS(1904), + }, + [598] = { [sym_if_statement] = STATE(607), [sym_do_statement] = STATE(607), [sym_for_statement] = STATE(607), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(607), [sym_return_statement] = STATE(607), [sym_break_statement] = STATE(607), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), [sym_labeled_statement] = STATE(607), [sym_while_statement] = STATE(607), [sym_continue_statement] = STATE(607), [sym_goto_statement] = STATE(607), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(607), [sym_expression_statement] = STATE(607), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [594] = { - [sym_if_statement] = STATE(611), - [sym_do_statement] = STATE(611), - [sym_for_statement] = STATE(611), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(611), - [sym_return_statement] = STATE(611), - [sym_break_statement] = STATE(611), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(611), - [sym_while_statement] = STATE(611), - [sym_continue_statement] = STATE(611), - [sym_goto_statement] = STATE(611), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(611), - [sym_expression_statement] = STATE(611), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [595] = { - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1686), - [sym_true] = ACTIONS(1686), - [anon_sym_unsigned] = ACTIONS(1686), - [anon_sym_restrict] = ACTIONS(1686), - [anon_sym_short] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_goto] = ACTIONS(1686), - [sym_preproc_directive] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1684), - [aux_sym_preproc_if_token1] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_LPAREN2] = ACTIONS(1684), - [anon_sym_typedef] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym__Atomic] = ACTIONS(1686), - [sym_primitive_type] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [aux_sym_preproc_include_token1] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1686), - [anon_sym_register] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_signed] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [anon_sym_long] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [sym_number_literal] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [aux_sym_preproc_def_token1] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_auto] = ACTIONS(1686), - [anon_sym_L] = ACTIONS(1686), - [anon_sym_inline] = ACTIONS(1686), - [anon_sym___attribute__] = ACTIONS(1686), - [anon_sym_sizeof] = ACTIONS(1686), - }, - [596] = { - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_union] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [anon_sym_unsigned] = ACTIONS(1690), - [anon_sym_restrict] = ACTIONS(1690), - [anon_sym_short] = ACTIONS(1690), - [sym_false] = ACTIONS(1690), - [sym_null] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1690), - [anon_sym_do] = ACTIONS(1690), - [anon_sym_goto] = ACTIONS(1690), - [sym_preproc_directive] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1688), - [aux_sym_preproc_if_token1] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1688), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1688), - [anon_sym_typedef] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1688), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym__Atomic] = ACTIONS(1690), - [sym_primitive_type] = ACTIONS(1690), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1688), - [aux_sym_preproc_include_token1] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_volatile] = ACTIONS(1690), - [anon_sym_register] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1690), - [anon_sym_signed] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_long] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1688), - [sym_number_literal] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_SQUOTE] = ACTIONS(1688), - [aux_sym_preproc_def_token1] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_auto] = ACTIONS(1690), - [anon_sym_L] = ACTIONS(1690), - [anon_sym_inline] = ACTIONS(1690), - [anon_sym___attribute__] = ACTIONS(1690), - [anon_sym_sizeof] = ACTIONS(1690), - }, - [597] = { - [sym_false] = ACTIONS(1692), - [anon_sym_restrict] = ACTIONS(1692), - [sym_identifier] = ACTIONS(1692), - [anon_sym_goto] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_typedef] = ACTIONS(1692), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym__Atomic] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1692), - [sym_number_literal] = ACTIONS(1694), - [anon_sym_volatile] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_struct] = ACTIONS(1692), - [anon_sym_signed] = ACTIONS(1692), - [anon_sym_long] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1692), - [anon_sym_L] = ACTIONS(1692), - [anon_sym___attribute__] = ACTIONS(1692), - [anon_sym_sizeof] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_union] = ACTIONS(1692), - [anon_sym_unsigned] = ACTIONS(1692), - [anon_sym_short] = ACTIONS(1692), - [anon_sym_do] = ACTIONS(1692), - [sym_preproc_directive] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1694), - [aux_sym_preproc_if_token1] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LPAREN2] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1692), - [sym_primitive_type] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1694), - [aux_sym_preproc_include_token1] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_register] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [sym_true] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [sym_null] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1694), - [aux_sym_preproc_def_token1] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_auto] = ACTIONS(1692), - [anon_sym_inline] = ACTIONS(1692), - }, - [598] = { - [sym_false] = ACTIONS(1704), - [anon_sym_restrict] = ACTIONS(1704), - [sym_identifier] = ACTIONS(1704), - [anon_sym_goto] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_typedef] = ACTIONS(1704), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym__Atomic] = ACTIONS(1704), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1704), - [sym_number_literal] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1704), - [anon_sym_signed] = ACTIONS(1704), - [anon_sym_long] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1704), - [anon_sym_L] = ACTIONS(1704), - [anon_sym___attribute__] = ACTIONS(1704), - [anon_sym_sizeof] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_unsigned] = ACTIONS(1704), - [anon_sym_short] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [sym_preproc_directive] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1706), - [aux_sym_preproc_if_token1] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1704), - [sym_primitive_type] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1706), - [aux_sym_preproc_include_token1] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_register] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1706), - [aux_sym_preproc_def_token1] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_auto] = ACTIONS(1704), - [anon_sym_inline] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [599] = { - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1806), - [sym_true] = ACTIONS(1806), - [anon_sym_unsigned] = ACTIONS(1806), - [anon_sym_restrict] = ACTIONS(1806), - [anon_sym_short] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1806), - [anon_sym_goto] = ACTIONS(1806), - [sym_preproc_directive] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [anon_sym__Atomic] = ACTIONS(1806), - [sym_primitive_type] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1804), - [aux_sym_preproc_include_token1] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_volatile] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_switch] = ACTIONS(1806), - [anon_sym_signed] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(1806), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [anon_sym_L] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [anon_sym___attribute__] = ACTIONS(1806), - [anon_sym_sizeof] = ACTIONS(1806), + [sym_if_statement] = STATE(608), + [sym_do_statement] = STATE(608), + [sym_for_statement] = STATE(608), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(608), + [sym_return_statement] = STATE(608), + [sym_break_statement] = STATE(608), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(608), + [sym_while_statement] = STATE(608), + [sym_continue_statement] = STATE(608), + [sym_goto_statement] = STATE(608), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(608), + [sym_expression_statement] = STATE(608), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [600] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(1817), - [anon_sym_DASH_EQ] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(2291), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(1817), - [anon_sym_LT_LT_EQ] = ACTIONS(1817), - [anon_sym_QMARK] = ACTIONS(2333), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_CARET_EQ] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_PIPE_EQ] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_AMP_EQ] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(2335), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_COLON] = ACTIONS(1817), - [anon_sym_STAR_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(610), + [sym_do_statement] = STATE(610), + [sym_for_statement] = STATE(610), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(610), + [sym_return_statement] = STATE(610), + [sym_break_statement] = STATE(610), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(610), + [sym_while_statement] = STATE(610), + [sym_continue_statement] = STATE(610), + [sym_goto_statement] = STATE(610), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(610), + [sym_expression_statement] = STATE(610), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [601] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1834), - [anon_sym_union] = ACTIONS(1834), - [anon_sym_unsigned] = ACTIONS(1834), - [anon_sym_restrict] = ACTIONS(1834), - [anon_sym_short] = ACTIONS(1834), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_volatile] = ACTIONS(1834), - [anon_sym_register] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1834), - [aux_sym_preproc_else_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1834), - [sym_preproc_directive] = ACTIONS(1834), - [anon_sym_signed] = ACTIONS(1834), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [anon_sym_long] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_const] = ACTIONS(1834), - [anon_sym_struct] = ACTIONS(1834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1834), - [aux_sym_preproc_elif_token1] = ACTIONS(1834), - [aux_sym_preproc_def_token1] = ACTIONS(1834), - [anon_sym__Atomic] = ACTIONS(1834), - [anon_sym_auto] = ACTIONS(1834), - [sym_primitive_type] = ACTIONS(1834), - [anon_sym_inline] = ACTIONS(1834), - [anon_sym___attribute__] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), + [sym_true] = ACTIONS(1918), + [anon_sym_restrict] = ACTIONS(1918), + [sym_null] = ACTIONS(1918), + [anon_sym_goto] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_typedef] = ACTIONS(1918), + [anon_sym_DASH_DASH] = ACTIONS(1920), + [anon_sym__Atomic] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), + [sym_number_literal] = ACTIONS(1920), + [anon_sym_volatile] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_signed] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), + [anon_sym_L_SQUOTE] = ACTIONS(1920), + [anon_sym___attribute__] = ACTIONS(1918), + [anon_sym_sizeof] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsigned] = ACTIONS(1918), + [anon_sym_short] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [sym_preproc_directive] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1920), + [aux_sym_preproc_if_token1] = ACTIONS(1918), + [anon_sym_TILDE] = ACTIONS(1920), + [anon_sym_L_DQUOTE] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_else] = ACTIONS(1918), + [sym_primitive_type] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1920), + [aux_sym_preproc_include_token1] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_register] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [sym_false] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1920), + [aux_sym_preproc_def_token1] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_auto] = ACTIONS(1918), + [anon_sym_inline] = ACTIONS(1918), }, [602] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsigned] = ACTIONS(1840), - [anon_sym_restrict] = ACTIONS(1840), - [anon_sym_short] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_volatile] = ACTIONS(1840), - [anon_sym_register] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [sym_identifier] = ACTIONS(1840), - [aux_sym_preproc_else_token1] = ACTIONS(1840), - [aux_sym_preproc_if_token2] = ACTIONS(1840), - [sym_preproc_directive] = ACTIONS(1840), - [anon_sym_signed] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1840), - [anon_sym_long] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1840), - [aux_sym_preproc_elif_token1] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [anon_sym__Atomic] = ACTIONS(1840), - [anon_sym_auto] = ACTIONS(1840), - [sym_primitive_type] = ACTIONS(1840), - [anon_sym_inline] = ACTIONS(1840), - [anon_sym___attribute__] = ACTIONS(1840), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(613), + [sym_do_statement] = STATE(613), + [sym_for_statement] = STATE(613), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(613), + [sym_return_statement] = STATE(613), + [sym_break_statement] = STATE(613), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(613), + [sym_while_statement] = STATE(613), + [sym_continue_statement] = STATE(613), + [sym_goto_statement] = STATE(613), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(613), + [sym_expression_statement] = STATE(613), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [603] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsigned] = ACTIONS(1844), - [anon_sym_restrict] = ACTIONS(1844), - [anon_sym_short] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_volatile] = ACTIONS(1844), - [anon_sym_register] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [sym_identifier] = ACTIONS(1844), - [aux_sym_preproc_else_token1] = ACTIONS(1844), - [aux_sym_preproc_if_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1844), - [anon_sym_signed] = ACTIONS(1844), - [aux_sym_preproc_if_token1] = ACTIONS(1844), - [anon_sym_long] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1844), - [aux_sym_preproc_elif_token1] = ACTIONS(1844), - [aux_sym_preproc_def_token1] = ACTIONS(1844), - [anon_sym__Atomic] = ACTIONS(1844), - [anon_sym_auto] = ACTIONS(1844), - [sym_primitive_type] = ACTIONS(1844), - [anon_sym_inline] = ACTIONS(1844), - [anon_sym___attribute__] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(614), + [sym_do_statement] = STATE(614), + [sym_for_statement] = STATE(614), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(614), + [sym_return_statement] = STATE(614), + [sym_break_statement] = STATE(614), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(614), + [sym_while_statement] = STATE(614), + [sym_continue_statement] = STATE(614), + [sym_goto_statement] = STATE(614), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(614), + [sym_expression_statement] = STATE(614), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [604] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1850), - [anon_sym_union] = ACTIONS(1850), - [anon_sym_unsigned] = ACTIONS(1850), - [anon_sym_restrict] = ACTIONS(1850), - [anon_sym_short] = ACTIONS(1850), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_volatile] = ACTIONS(1850), - [anon_sym_register] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1850), - [aux_sym_preproc_else_token1] = ACTIONS(1850), - [aux_sym_preproc_if_token2] = ACTIONS(1850), - [sym_preproc_directive] = ACTIONS(1850), - [anon_sym_signed] = ACTIONS(1850), - [aux_sym_preproc_if_token1] = ACTIONS(1850), - [anon_sym_long] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1850), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1850), - [aux_sym_preproc_elif_token1] = ACTIONS(1850), - [aux_sym_preproc_def_token1] = ACTIONS(1850), - [anon_sym__Atomic] = ACTIONS(1850), - [anon_sym_auto] = ACTIONS(1850), - [sym_primitive_type] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [anon_sym___attribute__] = ACTIONS(1850), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1949), + [anon_sym_union] = ACTIONS(1949), + [anon_sym_unsigned] = ACTIONS(1949), + [anon_sym_restrict] = ACTIONS(1949), + [anon_sym_short] = ACTIONS(1949), + [anon_sym_static] = ACTIONS(1949), + [anon_sym_volatile] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [aux_sym_preproc_else_token1] = ACTIONS(1949), + [aux_sym_preproc_if_token2] = ACTIONS(1949), + [sym_preproc_directive] = ACTIONS(1949), + [anon_sym_signed] = ACTIONS(1949), + [aux_sym_preproc_if_token1] = ACTIONS(1949), + [anon_sym_long] = ACTIONS(1949), + [anon_sym_enum] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [anon_sym_struct] = ACTIONS(1949), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1949), + [aux_sym_preproc_elif_token1] = ACTIONS(1949), + [aux_sym_preproc_def_token1] = ACTIONS(1949), + [anon_sym__Atomic] = ACTIONS(1949), + [anon_sym_auto] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1949), + [anon_sym_inline] = ACTIONS(1949), + [anon_sym___attribute__] = ACTIONS(1949), + [sym_identifier] = ACTIONS(1949), }, [605] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsigned] = ACTIONS(1872), - [anon_sym_restrict] = ACTIONS(1872), - [anon_sym_short] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_volatile] = ACTIONS(1872), - [anon_sym_register] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1872), - [aux_sym_preproc_else_token1] = ACTIONS(1872), - [aux_sym_preproc_if_token2] = ACTIONS(1872), - [sym_preproc_directive] = ACTIONS(1872), - [anon_sym_signed] = ACTIONS(1872), - [aux_sym_preproc_if_token1] = ACTIONS(1872), - [anon_sym_long] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), - [aux_sym_preproc_elif_token1] = ACTIONS(1872), - [aux_sym_preproc_def_token1] = ACTIONS(1872), - [anon_sym__Atomic] = ACTIONS(1872), - [anon_sym_auto] = ACTIONS(1872), - [sym_primitive_type] = ACTIONS(1872), - [anon_sym_inline] = ACTIONS(1872), - [anon_sym___attribute__] = ACTIONS(1872), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [aux_sym_preproc_else_token1] = ACTIONS(1953), + [aux_sym_preproc_if_token2] = ACTIONS(1953), + [sym_preproc_directive] = ACTIONS(1953), + [anon_sym_signed] = ACTIONS(1953), + [aux_sym_preproc_if_token1] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), + [aux_sym_preproc_elif_token1] = ACTIONS(1953), + [aux_sym_preproc_def_token1] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym_auto] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [sym_identifier] = ACTIONS(1953), }, [606] = { - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1941), - [sym_true] = ACTIONS(1941), - [anon_sym_unsigned] = ACTIONS(1941), - [anon_sym_restrict] = ACTIONS(1941), - [anon_sym_short] = ACTIONS(1941), - [sym_false] = ACTIONS(1941), - [sym_null] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_goto] = ACTIONS(1941), - [sym_preproc_directive] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1943), - [aux_sym_preproc_if_token1] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1943), - [anon_sym_typedef] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [anon_sym__Atomic] = ACTIONS(1941), - [sym_primitive_type] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1941), - [anon_sym_BANG] = ACTIONS(1943), - [aux_sym_preproc_include_token1] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_static] = ACTIONS(1941), - [anon_sym_volatile] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_struct] = ACTIONS(1941), - [anon_sym_switch] = ACTIONS(1941), - [anon_sym_signed] = ACTIONS(1941), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_long] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [sym_number_literal] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [aux_sym_preproc_def_token1] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_auto] = ACTIONS(1941), - [anon_sym_L] = ACTIONS(1941), - [anon_sym_inline] = ACTIONS(1941), - [anon_sym___attribute__] = ACTIONS(1941), - [anon_sym_sizeof] = ACTIONS(1941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1963), + [anon_sym_union] = ACTIONS(1963), + [anon_sym_unsigned] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym_short] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [aux_sym_preproc_else_token1] = ACTIONS(1963), + [aux_sym_preproc_if_token2] = ACTIONS(1963), + [sym_preproc_directive] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1963), + [aux_sym_preproc_if_token1] = ACTIONS(1963), + [anon_sym_long] = ACTIONS(1963), + [anon_sym_enum] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_struct] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1963), + [aux_sym_preproc_elif_token1] = ACTIONS(1963), + [aux_sym_preproc_def_token1] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [sym_primitive_type] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [sym_identifier] = ACTIONS(1963), }, [607] = { - [sym_false] = ACTIONS(1945), - [anon_sym_restrict] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1945), - [anon_sym_goto] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [anon_sym_typedef] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym__Atomic] = ACTIONS(1945), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1945), - [sym_number_literal] = ACTIONS(1947), - [anon_sym_volatile] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_PLUS_PLUS] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_signed] = ACTIONS(1945), - [anon_sym_long] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1945), - [anon_sym_L] = ACTIONS(1945), - [anon_sym___attribute__] = ACTIONS(1945), - [anon_sym_sizeof] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1945), - [anon_sym_unsigned] = ACTIONS(1945), - [anon_sym_short] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [sym_preproc_directive] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1947), - [aux_sym_preproc_if_token1] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [anon_sym_LPAREN2] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1945), - [sym_primitive_type] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1947), - [aux_sym_preproc_include_token1] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_switch] = ACTIONS(1945), - [sym_true] = ACTIONS(1945), - [anon_sym_enum] = ACTIONS(1945), - [sym_null] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1947), - [aux_sym_preproc_def_token1] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1945), - [anon_sym_auto] = ACTIONS(1945), - [anon_sym_inline] = ACTIONS(1945), + [sym_true] = ACTIONS(1986), + [anon_sym_restrict] = ACTIONS(1986), + [sym_null] = ACTIONS(1986), + [anon_sym_goto] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1986), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), + [sym_number_literal] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_signed] = ACTIONS(1986), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1986), + [anon_sym_unsigned] = ACTIONS(1986), + [anon_sym_short] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [sym_preproc_directive] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1988), + [aux_sym_preproc_if_token1] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_L_DQUOTE] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1986), + [sym_primitive_type] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_switch] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [sym_false] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1988), + [aux_sym_preproc_def_token1] = ACTIONS(1986), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_auto] = ACTIONS(1986), + [anon_sym_inline] = ACTIONS(1986), }, [608] = { + [sym_true] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_signed] = ACTIONS(1990), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1992), + [aux_sym_preproc_if_token1] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1992), + [anon_sym_L_DQUOTE] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [sym_false] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1992), + [aux_sym_preproc_def_token1] = ACTIONS(1990), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_auto] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + }, + [609] = { + [sym_if_statement] = STATE(616), + [sym_do_statement] = STATE(616), + [sym_for_statement] = STATE(616), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(616), + [sym_return_statement] = STATE(616), + [sym_break_statement] = STATE(616), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(616), + [sym_while_statement] = STATE(616), + [sym_continue_statement] = STATE(616), + [sym_goto_statement] = STATE(616), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [610] = { + [sym_true] = ACTIONS(1994), + [anon_sym_restrict] = ACTIONS(1994), + [sym_null] = ACTIONS(1994), + [anon_sym_goto] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), + [sym_number_literal] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1994), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_unsigned] = ACTIONS(1994), + [anon_sym_short] = ACTIONS(1994), + [anon_sym_do] = ACTIONS(1994), + [sym_preproc_directive] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1996), + [aux_sym_preproc_if_token1] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1996), + [anon_sym_L_DQUOTE] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1994), + [sym_primitive_type] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1994), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_switch] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [sym_false] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1996), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [anon_sym_PLUS] = ACTIONS(1994), + [anon_sym_auto] = ACTIONS(1994), + [anon_sym_inline] = ACTIONS(1994), + }, + [611] = { [sym_if_statement] = STATE(617), [sym_do_statement] = STATE(617), [sym_for_statement] = STATE(617), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(617), [sym_return_statement] = STATE(617), [sym_break_statement] = STATE(617), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), [sym_labeled_statement] = STATE(617), [sym_while_statement] = STATE(617), [sym_continue_statement] = STATE(617), [sym_goto_statement] = STATE(617), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(617), [sym_expression_statement] = STATE(617), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [609] = { + [612] = { [sym_if_statement] = STATE(618), [sym_do_statement] = STATE(618), [sym_for_statement] = STATE(618), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(618), [sym_return_statement] = STATE(618), [sym_break_statement] = STATE(618), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), [sym_labeled_statement] = STATE(618), [sym_while_statement] = STATE(618), [sym_continue_statement] = STATE(618), [sym_goto_statement] = STATE(618), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(618), [sym_expression_statement] = STATE(618), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [610] = { + [613] = { + [sym_true] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [sym_null] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym__Atomic] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [sym_preproc_directive] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_else] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [aux_sym_preproc_include_token1] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2002), + [aux_sym_preproc_def_token1] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), + }, + [614] = { + [sym_true] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym__Atomic] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym_sizeof] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [sym_preproc_directive] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2006), + [aux_sym_preproc_include_token1] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + }, + [615] = { [sym_if_statement] = STATE(620), [sym_do_statement] = STATE(620), [sym_for_statement] = STATE(620), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(620), [sym_return_statement] = STATE(620), [sym_break_statement] = STATE(620), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), [sym_labeled_statement] = STATE(620), [sym_while_statement] = STATE(620), [sym_continue_statement] = STATE(620), [sym_goto_statement] = STATE(620), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(620), [sym_expression_statement] = STATE(620), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [611] = { - [sym_false] = ACTIONS(1959), - [anon_sym_restrict] = ACTIONS(1959), - [sym_identifier] = ACTIONS(1959), - [anon_sym_goto] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [anon_sym_typedef] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym__Atomic] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1959), - [sym_number_literal] = ACTIONS(1961), - [anon_sym_volatile] = ACTIONS(1959), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_signed] = ACTIONS(1959), - [anon_sym_long] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1959), - [anon_sym_L] = ACTIONS(1959), - [anon_sym___attribute__] = ACTIONS(1959), - [anon_sym_sizeof] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_union] = ACTIONS(1959), - [anon_sym_unsigned] = ACTIONS(1959), - [anon_sym_short] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [sym_preproc_directive] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), - [aux_sym_preproc_if_token1] = ACTIONS(1959), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_LPAREN2] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1959), - [sym_primitive_type] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1961), - [aux_sym_preproc_include_token1] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_static] = ACTIONS(1959), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_switch] = ACTIONS(1959), - [sym_true] = ACTIONS(1959), - [anon_sym_enum] = ACTIONS(1959), - [sym_null] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [aux_sym_preproc_def_token1] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_auto] = ACTIONS(1959), - [anon_sym_inline] = ACTIONS(1959), - }, - [612] = { - [sym_if_statement] = STATE(623), - [sym_do_statement] = STATE(623), - [sym_for_statement] = STATE(623), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(623), - [sym_return_statement] = STATE(623), - [sym_break_statement] = STATE(623), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(623), - [sym_while_statement] = STATE(623), - [sym_continue_statement] = STATE(623), - [sym_goto_statement] = STATE(623), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(623), - [sym_expression_statement] = STATE(623), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [613] = { - [sym_if_statement] = STATE(624), - [sym_do_statement] = STATE(624), - [sym_for_statement] = STATE(624), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(624), - [sym_return_statement] = STATE(624), - [sym_break_statement] = STATE(624), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(624), - [sym_while_statement] = STATE(624), - [sym_continue_statement] = STATE(624), - [sym_goto_statement] = STATE(624), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(624), - [sym_expression_statement] = STATE(624), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [614] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_unsigned] = ACTIONS(1990), - [anon_sym_restrict] = ACTIONS(1990), - [anon_sym_short] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_volatile] = ACTIONS(1990), - [anon_sym_register] = ACTIONS(1990), - [anon_sym_extern] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1990), - [aux_sym_preproc_else_token1] = ACTIONS(1990), - [aux_sym_preproc_if_token2] = ACTIONS(1990), - [sym_preproc_directive] = ACTIONS(1990), - [anon_sym_signed] = ACTIONS(1990), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [anon_sym_long] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_struct] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), - [aux_sym_preproc_elif_token1] = ACTIONS(1990), - [aux_sym_preproc_def_token1] = ACTIONS(1990), - [anon_sym__Atomic] = ACTIONS(1990), - [anon_sym_auto] = ACTIONS(1990), - [sym_primitive_type] = ACTIONS(1990), - [anon_sym_inline] = ACTIONS(1990), - [anon_sym___attribute__] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), - }, - [615] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_else_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [sym_preproc_directive] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [aux_sym_preproc_elif_token1] = ACTIONS(1994), - [aux_sym_preproc_def_token1] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [616] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsigned] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym_short] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2004), - [aux_sym_preproc_else_token1] = ACTIONS(2004), - [aux_sym_preproc_if_token2] = ACTIONS(2004), - [sym_preproc_directive] = ACTIONS(2004), - [anon_sym_signed] = ACTIONS(2004), - [aux_sym_preproc_if_token1] = ACTIONS(2004), - [anon_sym_long] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), - [aux_sym_preproc_elif_token1] = ACTIONS(2004), - [aux_sym_preproc_def_token1] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym_auto] = ACTIONS(2004), - [sym_primitive_type] = ACTIONS(2004), - [anon_sym_inline] = ACTIONS(2004), - [anon_sym___attribute__] = ACTIONS(2004), - [sym_comment] = ACTIONS(3), + [sym_true] = ACTIONS(2117), + [anon_sym_restrict] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [anon_sym_goto] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_typedef] = ACTIONS(2117), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym__Atomic] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2117), + [sym_number_literal] = ACTIONS(2119), + [anon_sym_volatile] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_signed] = ACTIONS(2117), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2119), + [anon_sym___attribute__] = ACTIONS(2117), + [anon_sym_sizeof] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2117), + [anon_sym_unsigned] = ACTIONS(2117), + [anon_sym_short] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [sym_preproc_directive] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2119), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_L_DQUOTE] = ACTIONS(2119), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_else] = ACTIONS(2117), + [sym_primitive_type] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2119), + [aux_sym_preproc_include_token1] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2119), + [anon_sym_register] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2119), + [aux_sym_preproc_def_token1] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_auto] = ACTIONS(2117), + [anon_sym_inline] = ACTIONS(2117), }, [617] = { - [sym_false] = ACTIONS(2027), - [anon_sym_restrict] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2027), - [anon_sym_goto] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [anon_sym_typedef] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym__Atomic] = ACTIONS(2027), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2027), - [sym_number_literal] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2027), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_struct] = ACTIONS(2027), - [anon_sym_signed] = ACTIONS(2027), - [anon_sym_long] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2027), - [anon_sym_L] = ACTIONS(2027), - [anon_sym___attribute__] = ACTIONS(2027), - [anon_sym_sizeof] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2027), - [anon_sym_unsigned] = ACTIONS(2027), - [anon_sym_short] = ACTIONS(2027), - [anon_sym_do] = ACTIONS(2027), - [sym_preproc_directive] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2029), - [aux_sym_preproc_if_token1] = ACTIONS(2027), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_else] = ACTIONS(2027), - [sym_primitive_type] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_BANG] = ACTIONS(2029), - [aux_sym_preproc_include_token1] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_static] = ACTIONS(2027), - [anon_sym_register] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_switch] = ACTIONS(2027), - [sym_true] = ACTIONS(2027), - [anon_sym_enum] = ACTIONS(2027), - [sym_null] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2029), - [aux_sym_preproc_def_token1] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_auto] = ACTIONS(2027), - [anon_sym_inline] = ACTIONS(2027), + [sym_true] = ACTIONS(2121), + [anon_sym_restrict] = ACTIONS(2121), + [sym_null] = ACTIONS(2121), + [anon_sym_goto] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_typedef] = ACTIONS(2121), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym__Atomic] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [sym_number_literal] = ACTIONS(2123), + [anon_sym_volatile] = ACTIONS(2121), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_signed] = ACTIONS(2121), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [anon_sym_L_SQUOTE] = ACTIONS(2123), + [anon_sym___attribute__] = ACTIONS(2121), + [anon_sym_sizeof] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_unsigned] = ACTIONS(2121), + [anon_sym_short] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [sym_preproc_directive] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(2121), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_LPAREN2] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_else] = ACTIONS(2121), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2123), + [aux_sym_preproc_include_token1] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2123), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [sym_false] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2123), + [aux_sym_preproc_def_token1] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_auto] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), }, [618] = { - [sym_false] = ACTIONS(2031), - [anon_sym_restrict] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2031), - [anon_sym_goto] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_typedef] = ACTIONS(2031), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym__Atomic] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2031), - [sym_number_literal] = ACTIONS(2033), - [anon_sym_volatile] = ACTIONS(2031), - [anon_sym_SQUOTE] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_struct] = ACTIONS(2031), - [anon_sym_signed] = ACTIONS(2031), - [anon_sym_long] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2031), - [anon_sym_L] = ACTIONS(2031), - [anon_sym___attribute__] = ACTIONS(2031), - [anon_sym_sizeof] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_union] = ACTIONS(2031), - [anon_sym_unsigned] = ACTIONS(2031), - [anon_sym_short] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [sym_preproc_directive] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2033), - [aux_sym_preproc_if_token1] = ACTIONS(2031), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2031), - [sym_primitive_type] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [aux_sym_preproc_include_token1] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2031), - [anon_sym_STAR] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_switch] = ACTIONS(2031), - [sym_true] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [sym_null] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2033), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_auto] = ACTIONS(2031), - [anon_sym_inline] = ACTIONS(2031), + [sym_true] = ACTIONS(2125), + [anon_sym_restrict] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [anon_sym_goto] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_typedef] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym__Atomic] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2125), + [sym_number_literal] = ACTIONS(2127), + [anon_sym_volatile] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_signed] = ACTIONS(2125), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2125), + [anon_sym_L_SQUOTE] = ACTIONS(2127), + [anon_sym___attribute__] = ACTIONS(2125), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsigned] = ACTIONS(2125), + [anon_sym_short] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [sym_preproc_directive] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2127), + [aux_sym_preproc_if_token1] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_L_DQUOTE] = ACTIONS(2127), + [anon_sym_LPAREN2] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_else] = ACTIONS(2125), + [sym_primitive_type] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2127), + [aux_sym_preproc_include_token1] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_register] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2127), + [aux_sym_preproc_def_token1] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_auto] = ACTIONS(2125), + [anon_sym_inline] = ACTIONS(2125), }, [619] = { - [sym_if_statement] = STATE(626), - [sym_do_statement] = STATE(626), - [sym_for_statement] = STATE(626), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(626), - [sym_return_statement] = STATE(626), - [sym_break_statement] = STATE(626), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(626), - [sym_while_statement] = STATE(626), - [sym_continue_statement] = STATE(626), - [sym_goto_statement] = STATE(626), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(626), - [sym_expression_statement] = STATE(626), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(621), + [sym_do_statement] = STATE(621), + [sym_for_statement] = STATE(621), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(621), + [sym_return_statement] = STATE(621), + [sym_break_statement] = STATE(621), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_labeled_statement] = STATE(621), + [sym_while_statement] = STATE(621), + [sym_continue_statement] = STATE(621), + [sym_goto_statement] = STATE(621), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(621), + [sym_expression_statement] = STATE(621), + [anon_sym_LBRACE] = ACTIONS(97), + [sym_true] = ACTIONS(81), + [sym_null] = ACTIONS(81), + [anon_sym_do] = ACTIONS(99), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_while] = ACTIONS(95), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [620] = { - [sym_false] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [sym_identifier] = ACTIONS(2035), - [anon_sym_goto] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_typedef] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym__Atomic] = ACTIONS(2035), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2035), - [sym_number_literal] = ACTIONS(2037), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_SQUOTE] = ACTIONS(2037), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_signed] = ACTIONS(2035), - [anon_sym_long] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2035), - [anon_sym_L] = ACTIONS(2035), - [anon_sym___attribute__] = ACTIONS(2035), - [anon_sym_sizeof] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_union] = ACTIONS(2035), - [anon_sym_unsigned] = ACTIONS(2035), - [anon_sym_short] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [sym_preproc_directive] = ACTIONS(2035), - [anon_sym_AMP] = ACTIONS(2037), - [aux_sym_preproc_if_token1] = ACTIONS(2035), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2037), - [anon_sym_LPAREN2] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_else] = ACTIONS(2035), - [sym_primitive_type] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [aux_sym_preproc_include_token1] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [sym_true] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [sym_null] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2037), - [aux_sym_preproc_def_token1] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_auto] = ACTIONS(2035), - [anon_sym_inline] = ACTIONS(2035), + [sym_true] = ACTIONS(2129), + [anon_sym_restrict] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [anon_sym_goto] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_typedef] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym__Atomic] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2129), + [sym_number_literal] = ACTIONS(2131), + [anon_sym_volatile] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_signed] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2129), + [anon_sym_L_SQUOTE] = ACTIONS(2131), + [anon_sym___attribute__] = ACTIONS(2129), + [anon_sym_sizeof] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsigned] = ACTIONS(2129), + [anon_sym_short] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [sym_preproc_directive] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2131), + [aux_sym_preproc_if_token1] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_L_DQUOTE] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2129), + [sym_primitive_type] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2131), + [aux_sym_preproc_include_token1] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2131), + [aux_sym_preproc_def_token1] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_auto] = ACTIONS(2129), + [anon_sym_inline] = ACTIONS(2129), }, [621] = { - [sym_if_statement] = STATE(627), - [sym_do_statement] = STATE(627), - [sym_for_statement] = STATE(627), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(627), - [sym_return_statement] = STATE(627), - [sym_break_statement] = STATE(627), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(627), - [sym_while_statement] = STATE(627), - [sym_continue_statement] = STATE(627), - [sym_goto_statement] = STATE(627), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(627), - [sym_expression_statement] = STATE(627), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(2133), + [anon_sym_restrict] = ACTIONS(2133), + [sym_null] = ACTIONS(2133), + [anon_sym_goto] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_typedef] = ACTIONS(2133), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym__Atomic] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2133), + [sym_number_literal] = ACTIONS(2135), + [anon_sym_volatile] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_signed] = ACTIONS(2133), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2133), + [anon_sym_L_SQUOTE] = ACTIONS(2135), + [anon_sym___attribute__] = ACTIONS(2133), + [anon_sym_sizeof] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_unsigned] = ACTIONS(2133), + [anon_sym_short] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [sym_preproc_directive] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_L_DQUOTE] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_else] = ACTIONS(2133), + [sym_primitive_type] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2135), + [aux_sym_preproc_include_token1] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2135), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_switch] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2135), + [aux_sym_preproc_def_token1] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_auto] = ACTIONS(2133), + [anon_sym_inline] = ACTIONS(2133), }, [622] = { - [sym_if_statement] = STATE(628), - [sym_do_statement] = STATE(628), - [sym_for_statement] = STATE(628), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(628), - [sym_return_statement] = STATE(628), - [sym_break_statement] = STATE(628), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(628), - [sym_while_statement] = STATE(628), - [sym_continue_statement] = STATE(628), - [sym_goto_statement] = STATE(628), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(628), - [sym_expression_statement] = STATE(628), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(255), + [anon_sym_restrict] = ACTIONS(255), + [sym_null] = ACTIONS(255), + [anon_sym_goto] = ACTIONS(255), + [aux_sym_preproc_if_token2] = ACTIONS(255), + [anon_sym_const] = ACTIONS(255), + [anon_sym_typedef] = ACTIONS(255), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym__Atomic] = ACTIONS(255), + [sym_identifier] = ACTIONS(255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(255), + [sym_number_literal] = ACTIONS(257), + [anon_sym_volatile] = ACTIONS(255), + [anon_sym_SQUOTE] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_struct] = ACTIONS(255), + [anon_sym_signed] = ACTIONS(255), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(255), + [aux_sym_preproc_elif_token1] = ACTIONS(255), + [anon_sym_L_SQUOTE] = ACTIONS(257), + [anon_sym___attribute__] = ACTIONS(255), + [anon_sym_sizeof] = ACTIONS(255), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_union] = ACTIONS(255), + [anon_sym_unsigned] = ACTIONS(255), + [anon_sym_short] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [aux_sym_preproc_else_token1] = ACTIONS(255), + [sym_preproc_directive] = ACTIONS(255), + [anon_sym_AMP] = ACTIONS(257), + [aux_sym_preproc_if_token1] = ACTIONS(255), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_L_DQUOTE] = ACTIONS(257), + [anon_sym_LPAREN2] = ACTIONS(257), + [anon_sym_else] = ACTIONS(255), + [sym_primitive_type] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(257), + [aux_sym_preproc_include_token1] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_static] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [anon_sym_register] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_enum] = ACTIONS(255), + [sym_false] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(257), + [aux_sym_preproc_def_token1] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_auto] = ACTIONS(255), + [anon_sym_inline] = ACTIONS(255), }, [623] = { - [sym_false] = ACTIONS(2041), - [anon_sym_restrict] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2041), - [anon_sym_goto] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_typedef] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym__Atomic] = ACTIONS(2041), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2041), - [sym_number_literal] = ACTIONS(2043), - [anon_sym_volatile] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_signed] = ACTIONS(2041), - [anon_sym_long] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2041), - [anon_sym_L] = ACTIONS(2041), - [anon_sym___attribute__] = ACTIONS(2041), - [anon_sym_sizeof] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_unsigned] = ACTIONS(2041), - [anon_sym_short] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [sym_preproc_directive] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2043), - [aux_sym_preproc_if_token1] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_LPAREN2] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2041), - [sym_primitive_type] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [aux_sym_preproc_include_token1] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_register] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [sym_null] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2043), - [aux_sym_preproc_def_token1] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_auto] = ACTIONS(2041), - [anon_sym_inline] = ACTIONS(2041), + [sym_true] = ACTIONS(336), + [anon_sym_restrict] = ACTIONS(336), + [sym_null] = ACTIONS(336), + [anon_sym_goto] = ACTIONS(336), + [aux_sym_preproc_if_token2] = ACTIONS(336), + [anon_sym_const] = ACTIONS(336), + [anon_sym_typedef] = ACTIONS(336), + [anon_sym_DASH_DASH] = ACTIONS(338), + [anon_sym__Atomic] = ACTIONS(336), + [sym_identifier] = ACTIONS(336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(336), + [sym_number_literal] = ACTIONS(338), + [anon_sym_volatile] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(338), + [anon_sym_extern] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(338), + [anon_sym_struct] = ACTIONS(336), + [anon_sym_signed] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(336), + [anon_sym_while] = ACTIONS(336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(336), + [aux_sym_preproc_elif_token1] = ACTIONS(336), + [anon_sym_L_SQUOTE] = ACTIONS(338), + [anon_sym___attribute__] = ACTIONS(336), + [anon_sym_sizeof] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_union] = ACTIONS(336), + [anon_sym_unsigned] = ACTIONS(336), + [anon_sym_short] = ACTIONS(336), + [anon_sym_do] = ACTIONS(336), + [aux_sym_preproc_else_token1] = ACTIONS(336), + [sym_preproc_directive] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(338), + [aux_sym_preproc_if_token1] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_L_DQUOTE] = ACTIONS(338), + [anon_sym_LPAREN2] = ACTIONS(338), + [anon_sym_else] = ACTIONS(336), + [sym_primitive_type] = ACTIONS(336), + [anon_sym_for] = ACTIONS(336), + [anon_sym_break] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [aux_sym_preproc_include_token1] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_static] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_register] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_if] = ACTIONS(336), + [anon_sym_switch] = ACTIONS(336), + [anon_sym_enum] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [anon_sym_return] = ACTIONS(336), + [anon_sym_continue] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(338), + [aux_sym_preproc_def_token1] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_auto] = ACTIONS(336), + [anon_sym_inline] = ACTIONS(336), }, [624] = { - [sym_false] = ACTIONS(2045), - [anon_sym_restrict] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_typedef] = ACTIONS(2045), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym__Atomic] = ACTIONS(2045), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2045), - [sym_number_literal] = ACTIONS(2047), - [anon_sym_volatile] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_signed] = ACTIONS(2045), - [anon_sym_long] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2045), - [anon_sym_L] = ACTIONS(2045), - [anon_sym___attribute__] = ACTIONS(2045), - [anon_sym_sizeof] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_union] = ACTIONS(2045), - [anon_sym_unsigned] = ACTIONS(2045), - [anon_sym_short] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2047), - [aux_sym_preproc_if_token1] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2047), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2045), - [sym_primitive_type] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [aux_sym_preproc_include_token1] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_register] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [sym_null] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2047), - [aux_sym_preproc_def_token1] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_auto] = ACTIONS(2045), - [anon_sym_inline] = ACTIONS(2045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(368), + [anon_sym_union] = ACTIONS(368), + [anon_sym_unsigned] = ACTIONS(368), + [anon_sym_restrict] = ACTIONS(368), + [anon_sym_short] = ACTIONS(368), + [anon_sym_static] = ACTIONS(368), + [anon_sym_volatile] = ACTIONS(368), + [anon_sym_register] = ACTIONS(368), + [anon_sym_extern] = ACTIONS(368), + [anon_sym_struct] = ACTIONS(368), + [sym_preproc_directive] = ACTIONS(368), + [anon_sym_signed] = ACTIONS(368), + [aux_sym_preproc_if_token1] = ACTIONS(368), + [anon_sym_long] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(368), + [anon_sym_const] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(368), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [anon_sym__Atomic] = ACTIONS(368), + [anon_sym_auto] = ACTIONS(368), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_inline] = ACTIONS(368), + [anon_sym___attribute__] = ACTIONS(368), + [sym_identifier] = ACTIONS(368), }, [625] = { - [sym_if_statement] = STATE(630), - [sym_do_statement] = STATE(630), - [sym_for_statement] = STATE(630), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(630), - [sym_return_statement] = STATE(630), - [sym_break_statement] = STATE(630), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(630), - [sym_while_statement] = STATE(630), - [sym_continue_statement] = STATE(630), - [sym_goto_statement] = STATE(630), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(630), - [sym_expression_statement] = STATE(630), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(465), + [anon_sym_restrict] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [anon_sym_goto] = ACTIONS(465), + [anon_sym_const] = ACTIONS(465), + [anon_sym_typedef] = ACTIONS(465), + [anon_sym_DASH_DASH] = ACTIONS(467), + [anon_sym__Atomic] = ACTIONS(465), + [sym_identifier] = ACTIONS(465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(465), + [sym_number_literal] = ACTIONS(467), + [anon_sym_volatile] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_extern] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(467), + [anon_sym_struct] = ACTIONS(465), + [anon_sym_signed] = ACTIONS(465), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(465), + [anon_sym_while] = ACTIONS(465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(465), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym___attribute__] = ACTIONS(465), + [anon_sym_sizeof] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_union] = ACTIONS(465), + [anon_sym_unsigned] = ACTIONS(465), + [anon_sym_short] = ACTIONS(465), + [anon_sym_do] = ACTIONS(465), + [sym_preproc_directive] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(467), + [aux_sym_preproc_if_token1] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(467), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_RBRACE] = ACTIONS(467), + [sym_primitive_type] = ACTIONS(465), + [anon_sym_for] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [aux_sym_preproc_include_token1] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_static] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_register] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(465), + [anon_sym_switch] = ACTIONS(465), + [anon_sym_enum] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [anon_sym_return] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(467), + [aux_sym_preproc_def_token1] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_auto] = ACTIONS(465), + [anon_sym_inline] = ACTIONS(465), }, [626] = { - [sym_false] = ACTIONS(2161), - [anon_sym_restrict] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2161), - [anon_sym_goto] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_typedef] = ACTIONS(2161), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym__Atomic] = ACTIONS(2161), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2161), - [sym_number_literal] = ACTIONS(2163), - [anon_sym_volatile] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_extern] = ACTIONS(2161), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_signed] = ACTIONS(2161), - [anon_sym_long] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2161), - [anon_sym_L] = ACTIONS(2161), - [anon_sym___attribute__] = ACTIONS(2161), - [anon_sym_sizeof] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsigned] = ACTIONS(2161), - [anon_sym_short] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [sym_preproc_directive] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2163), - [aux_sym_preproc_if_token1] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2161), - [sym_primitive_type] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2163), - [aux_sym_preproc_include_token1] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_register] = ACTIONS(2161), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_switch] = ACTIONS(2161), - [sym_true] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [sym_null] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2163), - [aux_sym_preproc_def_token1] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_auto] = ACTIONS(2161), - [anon_sym_inline] = ACTIONS(2161), + [sym_if_statement] = STATE(642), + [sym_do_statement] = STATE(642), + [sym_for_statement] = STATE(642), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(642), + [sym_return_statement] = STATE(642), + [sym_break_statement] = STATE(642), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(642), + [sym_while_statement] = STATE(642), + [sym_continue_statement] = STATE(642), + [sym_goto_statement] = STATE(642), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(642), + [sym_expression_statement] = STATE(642), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [627] = { - [sym_false] = ACTIONS(2165), - [anon_sym_restrict] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2165), - [anon_sym_goto] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_typedef] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym__Atomic] = ACTIONS(2165), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2165), - [sym_number_literal] = ACTIONS(2167), - [anon_sym_volatile] = ACTIONS(2165), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_signed] = ACTIONS(2165), - [anon_sym_long] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2165), - [anon_sym_L] = ACTIONS(2165), - [anon_sym___attribute__] = ACTIONS(2165), - [anon_sym_sizeof] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2165), - [anon_sym_unsigned] = ACTIONS(2165), - [anon_sym_short] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [sym_preproc_directive] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2167), - [aux_sym_preproc_if_token1] = ACTIONS(2165), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2167), - [aux_sym_preproc_include_token1] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_switch] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [sym_null] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2167), - [aux_sym_preproc_def_token1] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_auto] = ACTIONS(2165), - [anon_sym_inline] = ACTIONS(2165), + [sym_true] = ACTIONS(487), + [anon_sym_restrict] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [anon_sym_goto] = ACTIONS(487), + [aux_sym_preproc_if_token2] = ACTIONS(487), + [anon_sym_const] = ACTIONS(487), + [anon_sym_typedef] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym__Atomic] = ACTIONS(487), + [sym_identifier] = ACTIONS(487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [sym_number_literal] = ACTIONS(489), + [anon_sym_volatile] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [anon_sym_extern] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_signed] = ACTIONS(487), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [aux_sym_preproc_elif_token1] = ACTIONS(487), + [anon_sym_L_SQUOTE] = ACTIONS(489), + [anon_sym___attribute__] = ACTIONS(487), + [anon_sym_sizeof] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_union] = ACTIONS(487), + [anon_sym_unsigned] = ACTIONS(487), + [anon_sym_short] = ACTIONS(487), + [anon_sym_do] = ACTIONS(487), + [aux_sym_preproc_else_token1] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(489), + [aux_sym_preproc_if_token1] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_L_DQUOTE] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(489), + [anon_sym_else] = ACTIONS(487), + [sym_primitive_type] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(489), + [aux_sym_preproc_include_token1] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_DQUOTE] = ACTIONS(489), + [anon_sym_register] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_if] = ACTIONS(487), + [anon_sym_switch] = ACTIONS(487), + [anon_sym_enum] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [aux_sym_preproc_def_token1] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_auto] = ACTIONS(487), + [anon_sym_inline] = ACTIONS(487), }, [628] = { - [sym_false] = ACTIONS(2169), - [anon_sym_restrict] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2169), - [anon_sym_goto] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_typedef] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2169), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2169), - [sym_number_literal] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_signed] = ACTIONS(2169), - [anon_sym_long] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2169), - [anon_sym_L] = ACTIONS(2169), - [anon_sym___attribute__] = ACTIONS(2169), - [anon_sym_sizeof] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_unsigned] = ACTIONS(2169), - [anon_sym_short] = ACTIONS(2169), - [anon_sym_do] = ACTIONS(2169), - [sym_preproc_directive] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2171), - [aux_sym_preproc_if_token1] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_LPAREN2] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_else] = ACTIONS(2169), - [sym_primitive_type] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2171), - [aux_sym_preproc_include_token1] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_register] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_switch] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [sym_null] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2171), - [aux_sym_preproc_def_token1] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_auto] = ACTIONS(2169), - [anon_sym_inline] = ACTIONS(2169), + [sym_true] = ACTIONS(493), + [anon_sym_restrict] = ACTIONS(493), + [sym_null] = ACTIONS(493), + [anon_sym_goto] = ACTIONS(493), + [aux_sym_preproc_if_token2] = ACTIONS(493), + [anon_sym_const] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(495), + [anon_sym__Atomic] = ACTIONS(493), + [sym_identifier] = ACTIONS(493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(493), + [sym_number_literal] = ACTIONS(495), + [anon_sym_volatile] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(495), + [anon_sym_struct] = ACTIONS(493), + [anon_sym_signed] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(493), + [anon_sym_while] = ACTIONS(493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(493), + [aux_sym_preproc_elif_token1] = ACTIONS(493), + [anon_sym_L_SQUOTE] = ACTIONS(495), + [anon_sym___attribute__] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(495), + [anon_sym_union] = ACTIONS(493), + [anon_sym_unsigned] = ACTIONS(493), + [anon_sym_short] = ACTIONS(493), + [anon_sym_do] = ACTIONS(493), + [aux_sym_preproc_else_token1] = ACTIONS(493), + [sym_preproc_directive] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(495), + [aux_sym_preproc_if_token1] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_L_DQUOTE] = ACTIONS(495), + [anon_sym_LPAREN2] = ACTIONS(495), + [sym_primitive_type] = ACTIONS(493), + [anon_sym_for] = ACTIONS(493), + [anon_sym_break] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(495), + [aux_sym_preproc_include_token1] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_static] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [anon_sym_register] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_if] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(493), + [anon_sym_enum] = ACTIONS(493), + [sym_false] = ACTIONS(493), + [anon_sym_return] = ACTIONS(493), + [anon_sym_continue] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(495), + [aux_sym_preproc_def_token1] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_auto] = ACTIONS(493), + [anon_sym_inline] = ACTIONS(493), }, [629] = { - [sym_if_statement] = STATE(631), - [sym_do_statement] = STATE(631), - [sym_for_statement] = STATE(631), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(631), - [sym_return_statement] = STATE(631), - [sym_break_statement] = STATE(631), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_labeled_statement] = STATE(631), - [sym_while_statement] = STATE(631), - [sym_continue_statement] = STATE(631), - [sym_goto_statement] = STATE(631), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(631), - [sym_expression_statement] = STATE(631), - [anon_sym_LBRACE] = ACTIONS(99), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(645), + [sym_do_statement] = STATE(645), + [sym_for_statement] = STATE(645), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(645), + [sym_return_statement] = STATE(645), + [sym_break_statement] = STATE(645), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(645), + [sym_while_statement] = STATE(645), + [sym_continue_statement] = STATE(645), + [sym_goto_statement] = STATE(645), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(645), + [sym_expression_statement] = STATE(645), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [630] = { - [sym_false] = ACTIONS(2173), - [anon_sym_restrict] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2173), - [anon_sym_goto] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_typedef] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym__Atomic] = ACTIONS(2173), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2173), - [sym_number_literal] = ACTIONS(2175), - [anon_sym_volatile] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_signed] = ACTIONS(2173), - [anon_sym_long] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2173), - [anon_sym_L] = ACTIONS(2173), - [anon_sym___attribute__] = ACTIONS(2173), - [anon_sym_sizeof] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_unsigned] = ACTIONS(2173), - [anon_sym_short] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [sym_preproc_directive] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2175), - [aux_sym_preproc_if_token1] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2173), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2175), - [aux_sym_preproc_include_token1] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_register] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2175), - [aux_sym_preproc_def_token1] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_auto] = ACTIONS(2173), - [anon_sym_inline] = ACTIONS(2173), + [sym_true] = ACTIONS(529), + [anon_sym_restrict] = ACTIONS(529), + [sym_null] = ACTIONS(529), + [anon_sym_goto] = ACTIONS(529), + [aux_sym_preproc_if_token2] = ACTIONS(529), + [anon_sym_const] = ACTIONS(529), + [anon_sym_typedef] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(531), + [anon_sym__Atomic] = ACTIONS(529), + [sym_identifier] = ACTIONS(529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(529), + [sym_number_literal] = ACTIONS(531), + [anon_sym_volatile] = ACTIONS(529), + [anon_sym_SQUOTE] = ACTIONS(531), + [anon_sym_extern] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(531), + [anon_sym_struct] = ACTIONS(529), + [anon_sym_signed] = ACTIONS(529), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(529), + [anon_sym_while] = ACTIONS(529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(529), + [aux_sym_preproc_elif_token1] = ACTIONS(529), + [anon_sym_L_SQUOTE] = ACTIONS(531), + [anon_sym___attribute__] = ACTIONS(529), + [anon_sym_sizeof] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(531), + [anon_sym_union] = ACTIONS(529), + [anon_sym_unsigned] = ACTIONS(529), + [anon_sym_short] = ACTIONS(529), + [anon_sym_do] = ACTIONS(529), + [aux_sym_preproc_else_token1] = ACTIONS(529), + [sym_preproc_directive] = ACTIONS(529), + [anon_sym_AMP] = ACTIONS(531), + [aux_sym_preproc_if_token1] = ACTIONS(529), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_L_DQUOTE] = ACTIONS(531), + [anon_sym_LPAREN2] = ACTIONS(531), + [anon_sym_else] = ACTIONS(529), + [sym_primitive_type] = ACTIONS(529), + [anon_sym_for] = ACTIONS(529), + [anon_sym_break] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(531), + [aux_sym_preproc_include_token1] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_static] = ACTIONS(529), + [anon_sym_DQUOTE] = ACTIONS(531), + [anon_sym_register] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_if] = ACTIONS(529), + [anon_sym_switch] = ACTIONS(529), + [anon_sym_enum] = ACTIONS(529), + [sym_false] = ACTIONS(529), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(529), + [anon_sym_SEMI] = ACTIONS(531), + [aux_sym_preproc_def_token1] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_auto] = ACTIONS(529), + [anon_sym_inline] = ACTIONS(529), }, [631] = { - [sym_false] = ACTIONS(2177), - [anon_sym_restrict] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2177), - [anon_sym_goto] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_typedef] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym__Atomic] = ACTIONS(2177), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2177), - [sym_number_literal] = ACTIONS(2179), - [anon_sym_volatile] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_extern] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_signed] = ACTIONS(2177), - [anon_sym_long] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2177), - [anon_sym_L] = ACTIONS(2177), - [anon_sym___attribute__] = ACTIONS(2177), - [anon_sym_sizeof] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsigned] = ACTIONS(2177), - [anon_sym_short] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [sym_preproc_directive] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2179), - [aux_sym_preproc_if_token1] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(2179), - [anon_sym_LPAREN2] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_else] = ACTIONS(2177), - [sym_primitive_type] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2179), - [aux_sym_preproc_include_token1] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_register] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [sym_null] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_SEMI] = ACTIONS(2179), - [aux_sym_preproc_def_token1] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_auto] = ACTIONS(2177), - [anon_sym_inline] = ACTIONS(2177), - }, - [632] = { - [sym_false] = ACTIONS(257), - [anon_sym_restrict] = ACTIONS(257), - [sym_identifier] = ACTIONS(257), - [anon_sym_goto] = ACTIONS(257), - [aux_sym_preproc_if_token2] = ACTIONS(257), - [anon_sym_const] = ACTIONS(257), - [anon_sym_typedef] = ACTIONS(257), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(257), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(257), - [sym_number_literal] = ACTIONS(259), - [anon_sym_volatile] = ACTIONS(257), - [anon_sym_SQUOTE] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_struct] = ACTIONS(257), - [anon_sym_signed] = ACTIONS(257), - [anon_sym_long] = ACTIONS(257), - [anon_sym_while] = ACTIONS(257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(257), - [aux_sym_preproc_elif_token1] = ACTIONS(257), - [anon_sym_L] = ACTIONS(257), - [anon_sym___attribute__] = ACTIONS(257), - [anon_sym_sizeof] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_union] = ACTIONS(257), - [anon_sym_unsigned] = ACTIONS(257), - [anon_sym_short] = ACTIONS(257), - [anon_sym_do] = ACTIONS(257), - [aux_sym_preproc_else_token1] = ACTIONS(257), - [sym_preproc_directive] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(259), - [aux_sym_preproc_if_token1] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(259), - [anon_sym_LPAREN2] = ACTIONS(259), - [anon_sym_else] = ACTIONS(257), - [sym_primitive_type] = ACTIONS(257), - [anon_sym_for] = ACTIONS(257), - [anon_sym_break] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(259), - [aux_sym_preproc_include_token1] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_static] = ACTIONS(257), - [anon_sym_register] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(259), - [anon_sym_if] = ACTIONS(257), - [anon_sym_switch] = ACTIONS(257), - [sym_true] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(257), - [sym_null] = ACTIONS(257), - [anon_sym_return] = ACTIONS(257), - [anon_sym_continue] = ACTIONS(257), - [anon_sym_SEMI] = ACTIONS(259), - [aux_sym_preproc_def_token1] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_auto] = ACTIONS(257), - [anon_sym_inline] = ACTIONS(257), - }, - [633] = { - [sym_false] = ACTIONS(348), - [anon_sym_restrict] = ACTIONS(348), - [sym_identifier] = ACTIONS(348), - [anon_sym_goto] = ACTIONS(348), - [aux_sym_preproc_if_token2] = ACTIONS(348), - [anon_sym_const] = ACTIONS(348), - [anon_sym_typedef] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym__Atomic] = ACTIONS(348), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(348), - [sym_number_literal] = ACTIONS(350), - [anon_sym_volatile] = ACTIONS(348), - [anon_sym_SQUOTE] = ACTIONS(350), - [anon_sym_extern] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_struct] = ACTIONS(348), - [anon_sym_signed] = ACTIONS(348), - [anon_sym_long] = ACTIONS(348), - [anon_sym_while] = ACTIONS(348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(348), - [aux_sym_preproc_elif_token1] = ACTIONS(348), - [anon_sym_L] = ACTIONS(348), - [anon_sym___attribute__] = ACTIONS(348), - [anon_sym_sizeof] = ACTIONS(348), - [anon_sym_LBRACE] = ACTIONS(350), - [anon_sym_union] = ACTIONS(348), - [anon_sym_unsigned] = ACTIONS(348), - [anon_sym_short] = ACTIONS(348), - [anon_sym_do] = ACTIONS(348), - [aux_sym_preproc_else_token1] = ACTIONS(348), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(350), - [aux_sym_preproc_if_token1] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(350), - [anon_sym_LPAREN2] = ACTIONS(350), - [anon_sym_else] = ACTIONS(348), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_for] = ACTIONS(348), - [anon_sym_break] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(350), - [aux_sym_preproc_include_token1] = ACTIONS(348), - [anon_sym_DASH] = ACTIONS(348), - [anon_sym_static] = ACTIONS(348), - [anon_sym_register] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_if] = ACTIONS(348), - [anon_sym_switch] = ACTIONS(348), - [sym_true] = ACTIONS(348), - [anon_sym_enum] = ACTIONS(348), - [sym_null] = ACTIONS(348), - [anon_sym_return] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [aux_sym_preproc_def_token1] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(348), - [anon_sym_auto] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(348), - }, - [634] = { [sym_if_statement] = STATE(648), [sym_do_statement] = STATE(648), [sym_for_statement] = STATE(648), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(648), [sym_return_statement] = STATE(648), [sym_break_statement] = STATE(648), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), [sym_labeled_statement] = STATE(648), [sym_while_statement] = STATE(648), [sym_continue_statement] = STATE(648), [sym_goto_statement] = STATE(648), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(648), [sym_expression_statement] = STATE(648), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [632] = { + [sym_true] = ACTIONS(535), + [anon_sym_restrict] = ACTIONS(535), + [sym_null] = ACTIONS(535), + [anon_sym_goto] = ACTIONS(535), + [aux_sym_preproc_if_token2] = ACTIONS(535), + [anon_sym_const] = ACTIONS(535), + [anon_sym_typedef] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym__Atomic] = ACTIONS(535), + [sym_identifier] = ACTIONS(535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(535), + [sym_number_literal] = ACTIONS(537), + [anon_sym_volatile] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [anon_sym_extern] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_struct] = ACTIONS(535), + [anon_sym_signed] = ACTIONS(535), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(535), + [aux_sym_preproc_elif_token1] = ACTIONS(535), + [anon_sym_L_SQUOTE] = ACTIONS(537), + [anon_sym___attribute__] = ACTIONS(535), + [anon_sym_sizeof] = ACTIONS(535), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_union] = ACTIONS(535), + [anon_sym_unsigned] = ACTIONS(535), + [anon_sym_short] = ACTIONS(535), + [anon_sym_do] = ACTIONS(535), + [aux_sym_preproc_else_token1] = ACTIONS(535), + [sym_preproc_directive] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(537), + [aux_sym_preproc_if_token1] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_L_DQUOTE] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(537), + [anon_sym_else] = ACTIONS(535), + [sym_primitive_type] = ACTIONS(535), + [anon_sym_for] = ACTIONS(535), + [anon_sym_break] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(537), + [aux_sym_preproc_include_token1] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_static] = ACTIONS(535), + [anon_sym_DQUOTE] = ACTIONS(537), + [anon_sym_register] = ACTIONS(535), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(535), + [anon_sym_enum] = ACTIONS(535), + [sym_false] = ACTIONS(535), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(535), + [anon_sym_SEMI] = ACTIONS(537), + [aux_sym_preproc_def_token1] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(535), + [anon_sym_auto] = ACTIONS(535), + [anon_sym_inline] = ACTIONS(535), + }, + [633] = { + [sym_true] = ACTIONS(605), + [anon_sym_restrict] = ACTIONS(605), + [sym_null] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [aux_sym_preproc_if_token2] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_typedef] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym__Atomic] = ACTIONS(605), + [sym_identifier] = ACTIONS(605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(605), + [sym_number_literal] = ACTIONS(607), + [anon_sym_volatile] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(605), + [anon_sym_signed] = ACTIONS(605), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(605), + [anon_sym_while] = ACTIONS(605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(605), + [aux_sym_preproc_elif_token1] = ACTIONS(605), + [anon_sym_L_SQUOTE] = ACTIONS(607), + [anon_sym___attribute__] = ACTIONS(605), + [anon_sym_sizeof] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_union] = ACTIONS(605), + [anon_sym_unsigned] = ACTIONS(605), + [anon_sym_short] = ACTIONS(605), + [anon_sym_do] = ACTIONS(605), + [aux_sym_preproc_else_token1] = ACTIONS(605), + [sym_preproc_directive] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(607), + [aux_sym_preproc_if_token1] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_L_DQUOTE] = ACTIONS(607), + [anon_sym_LPAREN2] = ACTIONS(607), + [anon_sym_else] = ACTIONS(605), + [sym_primitive_type] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(607), + [aux_sym_preproc_include_token1] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_static] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_register] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_if] = ACTIONS(605), + [anon_sym_switch] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_SEMI] = ACTIONS(607), + [aux_sym_preproc_def_token1] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_auto] = ACTIONS(605), + [anon_sym_inline] = ACTIONS(605), + }, + [634] = { + [sym_true] = ACTIONS(621), + [anon_sym_restrict] = ACTIONS(621), + [sym_null] = ACTIONS(621), + [anon_sym_goto] = ACTIONS(621), + [aux_sym_preproc_if_token2] = ACTIONS(621), + [anon_sym_const] = ACTIONS(621), + [anon_sym_typedef] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym__Atomic] = ACTIONS(621), + [sym_identifier] = ACTIONS(621), + [aux_sym_preproc_ifdef_token1] = ACTIONS(621), + [sym_number_literal] = ACTIONS(623), + [anon_sym_volatile] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_extern] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_struct] = ACTIONS(621), + [anon_sym_signed] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(621), + [anon_sym_while] = ACTIONS(621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(621), + [aux_sym_preproc_elif_token1] = ACTIONS(621), + [anon_sym_L_SQUOTE] = ACTIONS(623), + [anon_sym___attribute__] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_union] = ACTIONS(621), + [anon_sym_unsigned] = ACTIONS(621), + [anon_sym_short] = ACTIONS(621), + [anon_sym_do] = ACTIONS(621), + [aux_sym_preproc_else_token1] = ACTIONS(621), + [sym_preproc_directive] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(623), + [aux_sym_preproc_if_token1] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_L_DQUOTE] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(623), + [sym_primitive_type] = ACTIONS(621), + [anon_sym_for] = ACTIONS(621), + [anon_sym_break] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [aux_sym_preproc_include_token1] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_static] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_register] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_if] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(621), + [anon_sym_enum] = ACTIONS(621), + [sym_false] = ACTIONS(621), + [anon_sym_return] = ACTIONS(621), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_auto] = ACTIONS(621), + [anon_sym_inline] = ACTIONS(621), }, [635] = { - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(2339), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(143), + [sym_if_statement] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(635), + [sym_declaration] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [aux_sym_translation_unit_repeat1] = STATE(635), + [sym_expression_statement] = STATE(635), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_type_definition] = STATE(635), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(635), + [sym__empty_declaration] = STATE(635), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(635), + [sym_preproc_include] = STATE(635), + [sym_preproc_if] = STATE(635), + [sym_preproc_ifdef] = STATE(635), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(635), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(635), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(635), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(635), + [sym_true] = ACTIONS(2293), + [anon_sym_restrict] = ACTIONS(665), + [sym_null] = ACTIONS(2293), + [anon_sym_goto] = ACTIONS(2296), + [aux_sym_preproc_if_token2] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(665), + [anon_sym_typedef] = ACTIONS(2301), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym__Atomic] = ACTIONS(665), + [sym_identifier] = ACTIONS(2304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2310), + [anon_sym_volatile] = ACTIONS(665), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(692), + [anon_sym_signed] = ACTIONS(695), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(695), + [anon_sym_while] = ACTIONS(2316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2307), + [aux_sym_preproc_elif_token1] = ACTIONS(2299), + [anon_sym_L_SQUOTE] = ACTIONS(686), + [anon_sym___attribute__] = ACTIONS(701), + [anon_sym_sizeof] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_union] = ACTIONS(710), + [anon_sym_unsigned] = ACTIONS(695), + [anon_sym_short] = ACTIONS(695), + [anon_sym_do] = ACTIONS(2322), + [aux_sym_preproc_else_token1] = ACTIONS(2299), + [sym_preproc_directive] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(719), + [aux_sym_preproc_if_token1] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_L_DQUOTE] = ACTIONS(728), + [anon_sym_LPAREN2] = ACTIONS(731), + [sym_primitive_type] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(725), + [aux_sym_preproc_include_token1] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_static] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_register] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_if] = ACTIONS(2343), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(758), + [sym_false] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2358), + [anon_sym_PLUS] = ACTIONS(746), + [anon_sym_auto] = ACTIONS(749), + [anon_sym_inline] = ACTIONS(749), }, [636] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [anon_sym_union] = ACTIONS(388), - [anon_sym_unsigned] = ACTIONS(388), - [anon_sym_restrict] = ACTIONS(388), - [anon_sym_short] = ACTIONS(388), - [anon_sym_static] = ACTIONS(388), - [anon_sym_volatile] = ACTIONS(388), - [anon_sym_register] = ACTIONS(388), - [anon_sym_extern] = ACTIONS(388), - [sym_identifier] = ACTIONS(388), - [anon_sym_struct] = ACTIONS(388), - [sym_preproc_directive] = ACTIONS(388), - [anon_sym_signed] = ACTIONS(388), - [aux_sym_preproc_if_token1] = ACTIONS(388), - [anon_sym_long] = ACTIONS(388), - [anon_sym_enum] = ACTIONS(388), - [anon_sym_const] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_def_token1] = ACTIONS(388), - [anon_sym__Atomic] = ACTIONS(388), - [anon_sym_auto] = ACTIONS(388), - [sym_primitive_type] = ACTIONS(388), - [anon_sym_inline] = ACTIONS(388), - [anon_sym___attribute__] = ACTIONS(388), - [sym_comment] = ACTIONS(3), + [sym_true] = ACTIONS(792), + [anon_sym_restrict] = ACTIONS(792), + [sym_null] = ACTIONS(792), + [anon_sym_goto] = ACTIONS(792), + [aux_sym_preproc_if_token2] = ACTIONS(792), + [anon_sym_const] = ACTIONS(792), + [anon_sym_typedef] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym__Atomic] = ACTIONS(792), + [sym_identifier] = ACTIONS(792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(792), + [sym_number_literal] = ACTIONS(794), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(792), + [anon_sym_signed] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(792), + [anon_sym_while] = ACTIONS(792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(792), + [aux_sym_preproc_elif_token1] = ACTIONS(792), + [anon_sym_L_SQUOTE] = ACTIONS(794), + [anon_sym___attribute__] = ACTIONS(792), + [anon_sym_sizeof] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(794), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsigned] = ACTIONS(792), + [anon_sym_short] = ACTIONS(792), + [anon_sym_do] = ACTIONS(792), + [aux_sym_preproc_else_token1] = ACTIONS(792), + [sym_preproc_directive] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [aux_sym_preproc_if_token1] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(794), + [anon_sym_L_DQUOTE] = ACTIONS(794), + [anon_sym_LPAREN2] = ACTIONS(794), + [anon_sym_else] = ACTIONS(792), + [sym_primitive_type] = ACTIONS(792), + [anon_sym_for] = ACTIONS(792), + [anon_sym_break] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(794), + [aux_sym_preproc_include_token1] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_static] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_register] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_if] = ACTIONS(792), + [anon_sym_switch] = ACTIONS(792), + [anon_sym_enum] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [anon_sym_return] = ACTIONS(792), + [anon_sym_continue] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(794), + [aux_sym_preproc_def_token1] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_auto] = ACTIONS(792), + [anon_sym_inline] = ACTIONS(792), }, [637] = { - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_union] = ACTIONS(483), - [sym_true] = ACTIONS(483), - [anon_sym_unsigned] = ACTIONS(483), - [anon_sym_restrict] = ACTIONS(483), - [anon_sym_short] = ACTIONS(483), - [sym_false] = ACTIONS(483), - [sym_null] = ACTIONS(483), - [sym_identifier] = ACTIONS(483), - [anon_sym_do] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(483), - [sym_preproc_directive] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(485), - [aux_sym_preproc_if_token1] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_const] = ACTIONS(483), - [anon_sym_LPAREN2] = ACTIONS(485), - [anon_sym_typedef] = ACTIONS(483), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_DQUOTE] = ACTIONS(485), - [anon_sym__Atomic] = ACTIONS(483), - [sym_primitive_type] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(483), - [anon_sym_BANG] = ACTIONS(485), - [aux_sym_preproc_include_token1] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_register] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(485), - [anon_sym_if] = ACTIONS(483), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_signed] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [anon_sym_long] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [sym_number_literal] = ACTIONS(485), - [anon_sym_return] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(483), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_SQUOTE] = ACTIONS(485), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_auto] = ACTIONS(483), - [anon_sym_L] = ACTIONS(483), - [anon_sym_inline] = ACTIONS(483), - [anon_sym___attribute__] = ACTIONS(483), - [anon_sym_sizeof] = ACTIONS(483), + [sym_true] = ACTIONS(822), + [anon_sym_restrict] = ACTIONS(822), + [sym_null] = ACTIONS(822), + [anon_sym_goto] = ACTIONS(822), + [aux_sym_preproc_if_token2] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_typedef] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(824), + [anon_sym__Atomic] = ACTIONS(822), + [sym_identifier] = ACTIONS(822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [sym_number_literal] = ACTIONS(824), + [anon_sym_volatile] = ACTIONS(822), + [anon_sym_SQUOTE] = ACTIONS(824), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_struct] = ACTIONS(822), + [anon_sym_signed] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(822), + [aux_sym_preproc_elif_token1] = ACTIONS(822), + [anon_sym_L_SQUOTE] = ACTIONS(824), + [anon_sym___attribute__] = ACTIONS(822), + [anon_sym_sizeof] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_union] = ACTIONS(822), + [anon_sym_unsigned] = ACTIONS(822), + [anon_sym_short] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [aux_sym_preproc_else_token1] = ACTIONS(822), + [sym_preproc_directive] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [aux_sym_preproc_if_token1] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_L_DQUOTE] = ACTIONS(824), + [anon_sym_LPAREN2] = ACTIONS(824), + [anon_sym_else] = ACTIONS(822), + [sym_primitive_type] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(824), + [aux_sym_preproc_include_token1] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_register] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [sym_false] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(824), + [aux_sym_preproc_def_token1] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_auto] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(822), }, [638] = { - [sym_false] = ACTIONS(499), - [anon_sym_restrict] = ACTIONS(499), - [sym_identifier] = ACTIONS(499), - [anon_sym_goto] = ACTIONS(499), - [aux_sym_preproc_if_token2] = ACTIONS(499), - [anon_sym_const] = ACTIONS(499), - [anon_sym_typedef] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym__Atomic] = ACTIONS(499), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(499), - [sym_number_literal] = ACTIONS(501), - [anon_sym_volatile] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(501), - [anon_sym_extern] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_struct] = ACTIONS(499), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_while] = ACTIONS(499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(499), - [aux_sym_preproc_elif_token1] = ACTIONS(499), - [anon_sym_L] = ACTIONS(499), - [anon_sym___attribute__] = ACTIONS(499), - [anon_sym_sizeof] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_union] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [anon_sym_do] = ACTIONS(499), - [aux_sym_preproc_else_token1] = ACTIONS(499), - [sym_preproc_directive] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [aux_sym_preproc_if_token1] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_LPAREN2] = ACTIONS(501), - [anon_sym_else] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(499), - [anon_sym_for] = ACTIONS(499), - [anon_sym_break] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(501), - [aux_sym_preproc_include_token1] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_static] = ACTIONS(499), - [anon_sym_register] = ACTIONS(499), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_if] = ACTIONS(499), - [anon_sym_switch] = ACTIONS(499), - [sym_true] = ACTIONS(499), - [anon_sym_enum] = ACTIONS(499), - [sym_null] = ACTIONS(499), - [anon_sym_return] = ACTIONS(499), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(501), - [aux_sym_preproc_def_token1] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_auto] = ACTIONS(499), - [anon_sym_inline] = ACTIONS(499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsigned] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym_short] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_register] = ACTIONS(826), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_struct] = ACTIONS(826), + [sym_preproc_directive] = ACTIONS(826), + [anon_sym_signed] = ACTIONS(826), + [aux_sym_preproc_if_token1] = ACTIONS(826), + [anon_sym_long] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_def_token1] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym_auto] = ACTIONS(826), + [sym_primitive_type] = ACTIONS(826), + [anon_sym_inline] = ACTIONS(826), + [anon_sym___attribute__] = ACTIONS(826), + [sym_identifier] = ACTIONS(826), }, [639] = { - [sym_false] = ACTIONS(507), - [anon_sym_restrict] = ACTIONS(507), - [sym_identifier] = ACTIONS(507), - [anon_sym_goto] = ACTIONS(507), - [aux_sym_preproc_if_token2] = ACTIONS(507), - [anon_sym_const] = ACTIONS(507), - [anon_sym_typedef] = ACTIONS(507), - [anon_sym_DASH_DASH] = ACTIONS(505), - [anon_sym__Atomic] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(507), - [sym_number_literal] = ACTIONS(505), - [anon_sym_volatile] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(505), - [anon_sym_extern] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(505), - [anon_sym_struct] = ACTIONS(507), - [anon_sym_signed] = ACTIONS(507), - [anon_sym_long] = ACTIONS(507), - [anon_sym_while] = ACTIONS(507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(507), - [aux_sym_preproc_elif_token1] = ACTIONS(507), - [anon_sym_L] = ACTIONS(507), - [anon_sym___attribute__] = ACTIONS(507), - [anon_sym_sizeof] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_union] = ACTIONS(507), - [anon_sym_unsigned] = ACTIONS(507), - [anon_sym_short] = ACTIONS(507), - [anon_sym_do] = ACTIONS(507), - [aux_sym_preproc_else_token1] = ACTIONS(507), - [sym_preproc_directive] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(505), - [aux_sym_preproc_if_token1] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_LPAREN2] = ACTIONS(505), - [sym_primitive_type] = ACTIONS(507), - [anon_sym_for] = ACTIONS(507), - [anon_sym_break] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(505), - [aux_sym_preproc_include_token1] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_register] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_switch] = ACTIONS(507), - [sym_true] = ACTIONS(507), - [anon_sym_enum] = ACTIONS(507), - [sym_null] = ACTIONS(507), - [anon_sym_return] = ACTIONS(507), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [aux_sym_preproc_def_token1] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_auto] = ACTIONS(507), - [anon_sym_inline] = ACTIONS(507), + [sym_true] = ACTIONS(830), + [anon_sym_restrict] = ACTIONS(830), + [sym_null] = ACTIONS(830), + [anon_sym_goto] = ACTIONS(830), + [aux_sym_preproc_if_token2] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_typedef] = ACTIONS(830), + [anon_sym_DASH_DASH] = ACTIONS(832), + [anon_sym__Atomic] = ACTIONS(830), + [sym_identifier] = ACTIONS(830), + [aux_sym_preproc_ifdef_token1] = ACTIONS(830), + [sym_number_literal] = ACTIONS(832), + [anon_sym_volatile] = ACTIONS(830), + [anon_sym_SQUOTE] = ACTIONS(832), + [anon_sym_extern] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(832), + [anon_sym_struct] = ACTIONS(830), + [anon_sym_signed] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(830), + [aux_sym_preproc_elif_token1] = ACTIONS(830), + [anon_sym_L_SQUOTE] = ACTIONS(832), + [anon_sym___attribute__] = ACTIONS(830), + [anon_sym_sizeof] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_union] = ACTIONS(830), + [anon_sym_unsigned] = ACTIONS(830), + [anon_sym_short] = ACTIONS(830), + [anon_sym_do] = ACTIONS(830), + [aux_sym_preproc_else_token1] = ACTIONS(830), + [sym_preproc_directive] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [aux_sym_preproc_if_token1] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(832), + [anon_sym_L_DQUOTE] = ACTIONS(832), + [anon_sym_LPAREN2] = ACTIONS(832), + [sym_primitive_type] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(832), + [aux_sym_preproc_include_token1] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_register] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(832), + [anon_sym_if] = ACTIONS(830), + [anon_sym_switch] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [sym_false] = ACTIONS(830), + [anon_sym_return] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(832), + [aux_sym_preproc_def_token1] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_auto] = ACTIONS(830), + [anon_sym_inline] = ACTIONS(830), }, [640] = { - [sym_if_statement] = STATE(656), - [sym_do_statement] = STATE(656), - [sym_for_statement] = STATE(656), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(656), - [sym_return_statement] = STATE(656), - [sym_break_statement] = STATE(656), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(656), - [sym_while_statement] = STATE(656), - [sym_continue_statement] = STATE(656), - [sym_goto_statement] = STATE(656), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(656), - [sym_expression_statement] = STATE(656), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_case] = ACTIONS(892), + [sym_true] = ACTIONS(892), + [anon_sym_restrict] = ACTIONS(892), + [sym_null] = ACTIONS(892), + [anon_sym_goto] = ACTIONS(892), + [anon_sym_const] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(892), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_default] = ACTIONS(892), + [anon_sym__Atomic] = ACTIONS(892), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(892), + [sym_number_literal] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(892), + [anon_sym_signed] = ACTIONS(892), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(892), + [anon_sym_while] = ACTIONS(892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_union] = ACTIONS(892), + [anon_sym_unsigned] = ACTIONS(892), + [anon_sym_short] = ACTIONS(892), + [anon_sym_do] = ACTIONS(892), + [sym_preproc_directive] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_L_DQUOTE] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_else] = ACTIONS(892), + [sym_primitive_type] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_break] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_static] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(894), + [anon_sym_register] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_if] = ACTIONS(892), + [anon_sym_switch] = ACTIONS(892), + [anon_sym_enum] = ACTIONS(892), + [sym_false] = ACTIONS(892), + [ts_builtin_sym_end] = ACTIONS(894), + [anon_sym_return] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(892), + [anon_sym_auto] = ACTIONS(892), + [anon_sym_inline] = ACTIONS(892), }, [641] = { - [sym_false] = ACTIONS(541), - [anon_sym_restrict] = ACTIONS(541), - [sym_identifier] = ACTIONS(541), - [anon_sym_goto] = ACTIONS(541), - [aux_sym_preproc_if_token2] = ACTIONS(541), - [anon_sym_const] = ACTIONS(541), - [anon_sym_typedef] = ACTIONS(541), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym__Atomic] = ACTIONS(541), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_volatile] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_struct] = ACTIONS(541), - [anon_sym_signed] = ACTIONS(541), - [anon_sym_long] = ACTIONS(541), - [anon_sym_while] = ACTIONS(541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(541), - [aux_sym_preproc_elif_token1] = ACTIONS(541), - [anon_sym_L] = ACTIONS(541), - [anon_sym___attribute__] = ACTIONS(541), - [anon_sym_sizeof] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_union] = ACTIONS(541), - [anon_sym_unsigned] = ACTIONS(541), - [anon_sym_short] = ACTIONS(541), - [anon_sym_do] = ACTIONS(541), - [aux_sym_preproc_else_token1] = ACTIONS(541), - [sym_preproc_directive] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [aux_sym_preproc_if_token1] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [anon_sym_LPAREN2] = ACTIONS(543), - [anon_sym_else] = ACTIONS(541), - [sym_primitive_type] = ACTIONS(541), - [anon_sym_for] = ACTIONS(541), - [anon_sym_break] = ACTIONS(541), - [anon_sym_BANG] = ACTIONS(543), - [aux_sym_preproc_include_token1] = ACTIONS(541), - [anon_sym_DASH] = ACTIONS(541), - [anon_sym_static] = ACTIONS(541), - [anon_sym_register] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_if] = ACTIONS(541), - [anon_sym_switch] = ACTIONS(541), - [sym_true] = ACTIONS(541), - [anon_sym_enum] = ACTIONS(541), - [sym_null] = ACTIONS(541), - [anon_sym_return] = ACTIONS(541), - [anon_sym_continue] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(543), - [aux_sym_preproc_def_token1] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(541), - [anon_sym_auto] = ACTIONS(541), - [anon_sym_inline] = ACTIONS(541), + [sym_true] = ACTIONS(937), + [anon_sym_restrict] = ACTIONS(937), + [sym_null] = ACTIONS(937), + [anon_sym_goto] = ACTIONS(937), + [anon_sym_const] = ACTIONS(937), + [anon_sym_typedef] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym__Atomic] = ACTIONS(937), + [sym_identifier] = ACTIONS(937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(937), + [sym_number_literal] = ACTIONS(939), + [anon_sym_volatile] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(937), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(937), + [anon_sym_signed] = ACTIONS(937), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(937), + [anon_sym_while] = ACTIONS(937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(937), + [anon_sym_L_SQUOTE] = ACTIONS(939), + [anon_sym___attribute__] = ACTIONS(937), + [anon_sym_sizeof] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_union] = ACTIONS(937), + [anon_sym_unsigned] = ACTIONS(937), + [anon_sym_short] = ACTIONS(937), + [anon_sym_do] = ACTIONS(937), + [sym_preproc_directive] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(939), + [aux_sym_preproc_if_token1] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_L_DQUOTE] = ACTIONS(939), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [sym_primitive_type] = ACTIONS(937), + [anon_sym_for] = ACTIONS(937), + [anon_sym_break] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(939), + [aux_sym_preproc_include_token1] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_static] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_register] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_if] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_return] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), + [aux_sym_preproc_def_token1] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_auto] = ACTIONS(937), + [anon_sym_inline] = ACTIONS(937), }, [642] = { - [sym_if_statement] = STATE(659), - [sym_do_statement] = STATE(659), - [sym_for_statement] = STATE(659), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(659), - [sym_return_statement] = STATE(659), - [sym_break_statement] = STATE(659), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(659), - [sym_while_statement] = STATE(659), - [sym_continue_statement] = STATE(659), - [sym_goto_statement] = STATE(659), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(659), - [sym_expression_statement] = STATE(659), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(950), + [anon_sym_restrict] = ACTIONS(950), + [sym_null] = ACTIONS(950), + [anon_sym_goto] = ACTIONS(950), + [aux_sym_preproc_if_token2] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(950), + [sym_identifier] = ACTIONS(950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(950), + [sym_number_literal] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_signed] = ACTIONS(950), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(950), + [aux_sym_preproc_elif_token1] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_union] = ACTIONS(950), + [anon_sym_unsigned] = ACTIONS(950), + [anon_sym_short] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [aux_sym_preproc_else_token1] = ACTIONS(950), + [sym_preproc_directive] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_L_DQUOTE] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(952), + [anon_sym_else] = ACTIONS(950), + [sym_primitive_type] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_static] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(950), + [sym_false] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_auto] = ACTIONS(950), + [anon_sym_inline] = ACTIONS(950), }, [643] = { - [sym_false] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_goto] = ACTIONS(547), - [aux_sym_preproc_if_token2] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym__Atomic] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(547), - [sym_number_literal] = ACTIONS(549), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_SQUOTE] = ACTIONS(549), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_struct] = ACTIONS(547), - [anon_sym_signed] = ACTIONS(547), - [anon_sym_long] = ACTIONS(547), - [anon_sym_while] = ACTIONS(547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(547), - [aux_sym_preproc_elif_token1] = ACTIONS(547), - [anon_sym_L] = ACTIONS(547), - [anon_sym___attribute__] = ACTIONS(547), - [anon_sym_sizeof] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_union] = ACTIONS(547), - [anon_sym_unsigned] = ACTIONS(547), - [anon_sym_short] = ACTIONS(547), - [anon_sym_do] = ACTIONS(547), - [aux_sym_preproc_else_token1] = ACTIONS(547), - [sym_preproc_directive] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(549), - [aux_sym_preproc_if_token1] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_LPAREN2] = ACTIONS(549), - [anon_sym_else] = ACTIONS(547), - [sym_primitive_type] = ACTIONS(547), - [anon_sym_for] = ACTIONS(547), - [anon_sym_break] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(549), - [aux_sym_preproc_include_token1] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_if] = ACTIONS(547), - [anon_sym_switch] = ACTIONS(547), - [sym_true] = ACTIONS(547), - [anon_sym_enum] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_return] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(549), - [aux_sym_preproc_def_token1] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_auto] = ACTIONS(547), - [anon_sym_inline] = ACTIONS(547), + [sym_true] = ACTIONS(970), + [anon_sym_restrict] = ACTIONS(970), + [sym_null] = ACTIONS(970), + [anon_sym_goto] = ACTIONS(970), + [aux_sym_preproc_if_token2] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(970), + [sym_identifier] = ACTIONS(970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(970), + [anon_sym_signed] = ACTIONS(970), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(970), + [aux_sym_preproc_elif_token1] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_union] = ACTIONS(970), + [anon_sym_unsigned] = ACTIONS(970), + [anon_sym_short] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [aux_sym_preproc_else_token1] = ACTIONS(970), + [sym_preproc_directive] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(972), + [anon_sym_L_DQUOTE] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_static] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(972), + [anon_sym_register] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_if] = ACTIONS(970), + [anon_sym_switch] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [sym_false] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_auto] = ACTIONS(970), + [anon_sym_inline] = ACTIONS(970), }, [644] = { - [sym_false] = ACTIONS(625), - [anon_sym_restrict] = ACTIONS(625), - [sym_identifier] = ACTIONS(625), - [anon_sym_goto] = ACTIONS(625), - [aux_sym_preproc_if_token2] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_typedef] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym__Atomic] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(625), - [sym_number_literal] = ACTIONS(627), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_SQUOTE] = ACTIONS(627), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_struct] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(625), - [anon_sym_long] = ACTIONS(625), - [anon_sym_while] = ACTIONS(625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(625), - [aux_sym_preproc_elif_token1] = ACTIONS(625), - [anon_sym_L] = ACTIONS(625), - [anon_sym___attribute__] = ACTIONS(625), - [anon_sym_sizeof] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_union] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(625), - [anon_sym_short] = ACTIONS(625), - [anon_sym_do] = ACTIONS(625), - [aux_sym_preproc_else_token1] = ACTIONS(625), - [sym_preproc_directive] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(625), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_LPAREN2] = ACTIONS(627), - [anon_sym_else] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(625), - [anon_sym_for] = ACTIONS(625), - [anon_sym_break] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(627), - [aux_sym_preproc_include_token1] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_register] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_if] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(625), - [sym_true] = ACTIONS(625), - [anon_sym_enum] = ACTIONS(625), - [sym_null] = ACTIONS(625), - [anon_sym_return] = ACTIONS(625), - [anon_sym_continue] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_auto] = ACTIONS(625), - [anon_sym_inline] = ACTIONS(625), + [sym_true] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym__Atomic] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [aux_sym_preproc_elif_token1] = ACTIONS(980), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_union] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [aux_sym_preproc_else_token1] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(982), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(982), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_static] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(982), + [anon_sym_register] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_if] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), }, [645] = { - [sym_false] = ACTIONS(643), - [anon_sym_restrict] = ACTIONS(643), - [sym_identifier] = ACTIONS(643), - [anon_sym_goto] = ACTIONS(643), - [aux_sym_preproc_if_token2] = ACTIONS(643), - [anon_sym_const] = ACTIONS(643), - [anon_sym_typedef] = ACTIONS(643), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym__Atomic] = ACTIONS(643), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(643), - [sym_number_literal] = ACTIONS(641), - [anon_sym_volatile] = ACTIONS(643), - [anon_sym_SQUOTE] = ACTIONS(641), - [anon_sym_extern] = ACTIONS(643), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_signed] = ACTIONS(643), - [anon_sym_long] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(643), - [aux_sym_preproc_elif_token1] = ACTIONS(643), - [anon_sym_L] = ACTIONS(643), - [anon_sym___attribute__] = ACTIONS(643), - [anon_sym_sizeof] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_union] = ACTIONS(643), - [anon_sym_unsigned] = ACTIONS(643), - [anon_sym_short] = ACTIONS(643), - [anon_sym_do] = ACTIONS(643), - [aux_sym_preproc_else_token1] = ACTIONS(643), - [sym_preproc_directive] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(641), - [aux_sym_preproc_if_token1] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(641), - [anon_sym_LPAREN2] = ACTIONS(641), - [sym_primitive_type] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(641), - [aux_sym_preproc_include_token1] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_static] = ACTIONS(643), - [anon_sym_register] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_if] = ACTIONS(643), - [anon_sym_switch] = ACTIONS(643), - [sym_true] = ACTIONS(643), - [anon_sym_enum] = ACTIONS(643), - [sym_null] = ACTIONS(643), - [anon_sym_return] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [anon_sym_SEMI] = ACTIONS(641), - [aux_sym_preproc_def_token1] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_auto] = ACTIONS(643), - [anon_sym_inline] = ACTIONS(643), + [sym_true] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym__Atomic] = ACTIONS(984), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [aux_sym_preproc_elif_token1] = ACTIONS(984), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_union] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [aux_sym_preproc_else_token1] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(986), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_else] = ACTIONS(2361), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(986), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [anon_sym_register] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_if] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), }, [646] = { - [sym_if_statement] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(646), - [sym_declaration] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [aux_sym_translation_unit_repeat1] = STATE(646), - [sym_expression_statement] = STATE(646), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_type_definition] = STATE(646), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(646), - [sym__empty_declaration] = STATE(646), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(646), - [sym_preproc_include] = STATE(646), - [sym_preproc_if] = STATE(646), - [sym_preproc_ifdef] = STATE(646), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(646), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(646), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(646), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(646), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(646), - [sym_false] = ACTIONS(2341), - [anon_sym_restrict] = ACTIONS(694), - [sym_identifier] = ACTIONS(2344), - [anon_sym_goto] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(694), - [anon_sym_typedef] = ACTIONS(2352), - [anon_sym_DASH_DASH] = ACTIONS(726), - [anon_sym__Atomic] = ACTIONS(694), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_volatile] = ACTIONS(694), - [anon_sym_SQUOTE] = ACTIONS(783), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym_PLUS_PLUS] = ACTIONS(726), - [anon_sym_struct] = ACTIONS(759), - [anon_sym_signed] = ACTIONS(691), - [anon_sym_long] = ACTIONS(691), - [anon_sym_while] = ACTIONS(2364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), - [aux_sym_preproc_elif_token1] = ACTIONS(2350), - [anon_sym_L] = ACTIONS(789), - [anon_sym___attribute__] = ACTIONS(792), - [anon_sym_sizeof] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_union] = ACTIONS(685), - [anon_sym_unsigned] = ACTIONS(691), - [anon_sym_short] = ACTIONS(691), - [anon_sym_do] = ACTIONS(2370), - [aux_sym_preproc_else_token1] = ACTIONS(2350), - [sym_preproc_directive] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(711), - [aux_sym_preproc_if_token1] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_LPAREN2] = ACTIONS(720), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(717), - [aux_sym_preproc_include_token1] = ACTIONS(2388), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_static] = ACTIONS(750), - [anon_sym_register] = ACTIONS(750), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_switch] = ACTIONS(2394), - [sym_true] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(765), - [sym_null] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_SEMI] = ACTIONS(2403), - [aux_sym_preproc_def_token1] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_auto] = ACTIONS(750), - [anon_sym_inline] = ACTIONS(750), + [sym_true] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym__Atomic] = ACTIONS(1028), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [aux_sym_preproc_elif_token1] = ACTIONS(1028), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [aux_sym_preproc_else_token1] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1030), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), }, [647] = { - [sym_false] = ACTIONS(815), - [anon_sym_restrict] = ACTIONS(815), - [sym_identifier] = ACTIONS(815), - [anon_sym_goto] = ACTIONS(815), - [aux_sym_preproc_if_token2] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_typedef] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym__Atomic] = ACTIONS(815), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(815), - [sym_number_literal] = ACTIONS(817), - [anon_sym_volatile] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(815), - [anon_sym_signed] = ACTIONS(815), - [anon_sym_long] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(815), - [aux_sym_preproc_elif_token1] = ACTIONS(815), - [anon_sym_L] = ACTIONS(815), - [anon_sym___attribute__] = ACTIONS(815), - [anon_sym_sizeof] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_union] = ACTIONS(815), - [anon_sym_unsigned] = ACTIONS(815), - [anon_sym_short] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [aux_sym_preproc_else_token1] = ACTIONS(815), - [sym_preproc_directive] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(817), - [aux_sym_preproc_if_token1] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_LPAREN2] = ACTIONS(817), - [anon_sym_else] = ACTIONS(815), - [sym_primitive_type] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [aux_sym_preproc_include_token1] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_static] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_if] = ACTIONS(815), - [anon_sym_switch] = ACTIONS(815), - [sym_true] = ACTIONS(815), - [anon_sym_enum] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(817), - [aux_sym_preproc_def_token1] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_auto] = ACTIONS(815), - [anon_sym_inline] = ACTIONS(815), + [sym_true] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [aux_sym_preproc_if_token2] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym__Atomic] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [aux_sym_preproc_elif_token1] = ACTIONS(1052), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_sizeof] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [aux_sym_preproc_else_token1] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), }, [648] = { - [sym_false] = ACTIONS(847), - [anon_sym_restrict] = ACTIONS(847), - [sym_identifier] = ACTIONS(847), - [anon_sym_goto] = ACTIONS(847), - [aux_sym_preproc_if_token2] = ACTIONS(847), - [anon_sym_const] = ACTIONS(847), - [anon_sym_typedef] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym__Atomic] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(847), - [sym_number_literal] = ACTIONS(849), - [anon_sym_volatile] = ACTIONS(847), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_extern] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(847), - [anon_sym_signed] = ACTIONS(847), - [anon_sym_long] = ACTIONS(847), - [anon_sym_while] = ACTIONS(847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(847), - [aux_sym_preproc_elif_token1] = ACTIONS(847), - [anon_sym_L] = ACTIONS(847), - [anon_sym___attribute__] = ACTIONS(847), - [anon_sym_sizeof] = ACTIONS(847), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_union] = ACTIONS(847), - [anon_sym_unsigned] = ACTIONS(847), - [anon_sym_short] = ACTIONS(847), - [anon_sym_do] = ACTIONS(847), - [aux_sym_preproc_else_token1] = ACTIONS(847), - [sym_preproc_directive] = ACTIONS(847), - [anon_sym_AMP] = ACTIONS(849), - [aux_sym_preproc_if_token1] = ACTIONS(847), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(849), - [anon_sym_else] = ACTIONS(847), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_for] = ACTIONS(847), - [anon_sym_break] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(849), - [aux_sym_preproc_include_token1] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_static] = ACTIONS(847), - [anon_sym_register] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_if] = ACTIONS(847), - [anon_sym_switch] = ACTIONS(847), - [sym_true] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(847), - [sym_null] = ACTIONS(847), - [anon_sym_return] = ACTIONS(847), - [anon_sym_continue] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(849), - [aux_sym_preproc_def_token1] = ACTIONS(847), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_auto] = ACTIONS(847), - [anon_sym_inline] = ACTIONS(847), + [sym_true] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym__Atomic] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [aux_sym_preproc_elif_token1] = ACTIONS(1056), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [aux_sym_preproc_else_token1] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), }, [649] = { - [sym_false] = ACTIONS(853), - [anon_sym_restrict] = ACTIONS(853), - [sym_identifier] = ACTIONS(853), - [anon_sym_goto] = ACTIONS(853), - [aux_sym_preproc_if_token2] = ACTIONS(853), - [anon_sym_const] = ACTIONS(853), - [anon_sym_typedef] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(855), - [anon_sym__Atomic] = ACTIONS(853), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(853), - [sym_number_literal] = ACTIONS(855), - [anon_sym_volatile] = ACTIONS(853), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_extern] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(855), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_signed] = ACTIONS(853), - [anon_sym_long] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(853), - [aux_sym_preproc_elif_token1] = ACTIONS(853), - [anon_sym_L] = ACTIONS(853), - [anon_sym___attribute__] = ACTIONS(853), - [anon_sym_sizeof] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_union] = ACTIONS(853), - [anon_sym_unsigned] = ACTIONS(853), - [anon_sym_short] = ACTIONS(853), - [anon_sym_do] = ACTIONS(853), - [aux_sym_preproc_else_token1] = ACTIONS(853), - [sym_preproc_directive] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), - [aux_sym_preproc_if_token1] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [anon_sym_LPAREN2] = ACTIONS(855), - [anon_sym_else] = ACTIONS(853), - [sym_primitive_type] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(855), - [aux_sym_preproc_include_token1] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_static] = ACTIONS(853), - [anon_sym_register] = ACTIONS(853), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_if] = ACTIONS(853), - [anon_sym_switch] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [anon_sym_return] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [aux_sym_preproc_def_token1] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_auto] = ACTIONS(853), - [anon_sym_inline] = ACTIONS(853), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_unsigned] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_short] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_struct] = ACTIONS(1062), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_signed] = ACTIONS(1062), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [aux_sym_preproc_def_token1] = ACTIONS(1062), + [anon_sym__Atomic] = ACTIONS(1062), + [anon_sym_auto] = ACTIONS(1062), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym___attribute__] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1062), }, [650] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(859), - [anon_sym_union] = ACTIONS(859), - [anon_sym_unsigned] = ACTIONS(859), - [anon_sym_restrict] = ACTIONS(859), - [anon_sym_short] = ACTIONS(859), - [anon_sym_static] = ACTIONS(859), - [anon_sym_volatile] = ACTIONS(859), - [anon_sym_register] = ACTIONS(859), - [anon_sym_extern] = ACTIONS(859), - [sym_identifier] = ACTIONS(859), - [anon_sym_struct] = ACTIONS(859), - [sym_preproc_directive] = ACTIONS(859), - [anon_sym_signed] = ACTIONS(859), - [aux_sym_preproc_if_token1] = ACTIONS(859), - [anon_sym_long] = ACTIONS(859), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_const] = ACTIONS(859), - [anon_sym_RBRACE] = ACTIONS(857), - [aux_sym_preproc_ifdef_token2] = ACTIONS(859), - [aux_sym_preproc_def_token1] = ACTIONS(859), - [anon_sym__Atomic] = ACTIONS(859), - [anon_sym_auto] = ACTIONS(859), - [sym_primitive_type] = ACTIONS(859), - [anon_sym_inline] = ACTIONS(859), - [anon_sym___attribute__] = ACTIONS(859), - [sym_comment] = ACTIONS(3), + [sym_true] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [sym_null] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [aux_sym_preproc_if_token2] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [aux_sym_preproc_elif_token1] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [aux_sym_preproc_else_token1] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), }, [651] = { - [sym_false] = ACTIONS(863), - [anon_sym_restrict] = ACTIONS(863), - [sym_identifier] = ACTIONS(863), - [anon_sym_goto] = ACTIONS(863), - [aux_sym_preproc_if_token2] = ACTIONS(863), - [anon_sym_const] = ACTIONS(863), - [anon_sym_typedef] = ACTIONS(863), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym__Atomic] = ACTIONS(863), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(863), - [sym_number_literal] = ACTIONS(861), - [anon_sym_volatile] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_signed] = ACTIONS(863), - [anon_sym_long] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(863), - [aux_sym_preproc_elif_token1] = ACTIONS(863), - [anon_sym_L] = ACTIONS(863), - [anon_sym___attribute__] = ACTIONS(863), - [anon_sym_sizeof] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_union] = ACTIONS(863), - [anon_sym_unsigned] = ACTIONS(863), - [anon_sym_short] = ACTIONS(863), - [anon_sym_do] = ACTIONS(863), - [aux_sym_preproc_else_token1] = ACTIONS(863), - [sym_preproc_directive] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(861), - [aux_sym_preproc_if_token1] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym_LPAREN2] = ACTIONS(861), - [sym_primitive_type] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(861), - [aux_sym_preproc_include_token1] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_static] = ACTIONS(863), - [anon_sym_register] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_if] = ACTIONS(863), - [anon_sym_switch] = ACTIONS(863), - [sym_true] = ACTIONS(863), - [anon_sym_enum] = ACTIONS(863), - [sym_null] = ACTIONS(863), - [anon_sym_return] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [aux_sym_preproc_def_token1] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_auto] = ACTIONS(863), - [anon_sym_inline] = ACTIONS(863), + [sym_true] = ACTIONS(1128), + [anon_sym_restrict] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [anon_sym_goto] = ACTIONS(1128), + [aux_sym_preproc_if_token2] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), + [sym_number_literal] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), + [aux_sym_preproc_elif_token1] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_unsigned] = ACTIONS(1128), + [anon_sym_short] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [aux_sym_preproc_else_token1] = ACTIONS(1128), + [sym_preproc_directive] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_L_DQUOTE] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_auto] = ACTIONS(1128), + [anon_sym_inline] = ACTIONS(1128), }, [652] = { - [anon_sym_case] = ACTIONS(923), - [sym_false] = ACTIONS(923), - [anon_sym_restrict] = ACTIONS(923), - [sym_identifier] = ACTIONS(923), - [anon_sym_goto] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_typedef] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(925), - [anon_sym_default] = ACTIONS(923), - [anon_sym__Atomic] = ACTIONS(923), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [sym_number_literal] = ACTIONS(925), - [anon_sym_volatile] = ACTIONS(923), - [anon_sym_SQUOTE] = ACTIONS(925), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_signed] = ACTIONS(923), - [anon_sym_long] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [anon_sym_L] = ACTIONS(923), - [anon_sym___attribute__] = ACTIONS(923), - [anon_sym_sizeof] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_union] = ACTIONS(923), - [anon_sym_unsigned] = ACTIONS(923), - [anon_sym_short] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [anon_sym_TILDE] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_else] = ACTIONS(923), - [sym_primitive_type] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(925), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_if] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(923), - [sym_true] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [sym_null] = ACTIONS(923), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_return] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_auto] = ACTIONS(923), - [anon_sym_inline] = ACTIONS(923), + [sym_preproc_def] = STATE(652), + [sym_preproc_function_def] = STATE(652), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(652), + [sym_field_declaration] = STATE(652), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(652), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(652), + [sym_preproc_if_in_field_declaration_list] = STATE(652), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(652), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(968), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(1168), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [aux_sym_preproc_if_token2] = ACTIONS(2272), + [sym_preproc_directive] = ACTIONS(2366), + [anon_sym_signed] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(2369), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1180), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2363), + [aux_sym_preproc_def_token1] = ACTIONS(2372), + [anon_sym__Atomic] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1177), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1177), + [anon_sym___attribute__] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1203), }, [653] = { - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_union] = ACTIONS(968), - [sym_true] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_const] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_static] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_if] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [sym_number_literal] = ACTIONS(970), - [anon_sym_return] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_L] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [aux_sym_preproc_if_token2] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1214), + [aux_sym_preproc_def_token1] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1214), }, [654] = { - [sym_false] = ACTIONS(995), - [anon_sym_restrict] = ACTIONS(995), - [sym_identifier] = ACTIONS(995), - [anon_sym_goto] = ACTIONS(995), - [aux_sym_preproc_if_token2] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_typedef] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(993), - [anon_sym__Atomic] = ACTIONS(995), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(995), - [sym_number_literal] = ACTIONS(993), - [anon_sym_volatile] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(993), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(993), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_signed] = ACTIONS(995), - [anon_sym_long] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(995), - [aux_sym_preproc_elif_token1] = ACTIONS(995), - [anon_sym_L] = ACTIONS(995), - [anon_sym___attribute__] = ACTIONS(995), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_union] = ACTIONS(995), - [anon_sym_unsigned] = ACTIONS(995), - [anon_sym_short] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [aux_sym_preproc_else_token1] = ACTIONS(995), - [sym_preproc_directive] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(993), - [aux_sym_preproc_if_token1] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(993), - [anon_sym_LPAREN2] = ACTIONS(993), - [sym_primitive_type] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_static] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_if] = ACTIONS(995), - [anon_sym_switch] = ACTIONS(995), - [sym_true] = ACTIONS(995), - [anon_sym_enum] = ACTIONS(995), - [sym_null] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(993), - [aux_sym_preproc_def_token1] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_auto] = ACTIONS(995), - [anon_sym_inline] = ACTIONS(995), + [sym_true] = ACTIONS(1226), + [anon_sym_restrict] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [aux_sym_preproc_if_token2] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym__Atomic] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [aux_sym_preproc_elif_token1] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym___attribute__] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [aux_sym_preproc_else_token1] = ACTIONS(1226), + [sym_preproc_directive] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1228), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1226), + [sym_primitive_type] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1228), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1228), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1228), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), }, [655] = { - [sym_false] = ACTIONS(1005), - [anon_sym_restrict] = ACTIONS(1005), - [sym_identifier] = ACTIONS(1005), - [anon_sym_goto] = ACTIONS(1005), - [aux_sym_preproc_if_token2] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_typedef] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym__Atomic] = ACTIONS(1005), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), - [sym_number_literal] = ACTIONS(1003), - [anon_sym_volatile] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1003), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_struct] = ACTIONS(1005), - [anon_sym_signed] = ACTIONS(1005), - [anon_sym_long] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), - [aux_sym_preproc_elif_token1] = ACTIONS(1005), - [anon_sym_L] = ACTIONS(1005), - [anon_sym___attribute__] = ACTIONS(1005), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_union] = ACTIONS(1005), - [anon_sym_unsigned] = ACTIONS(1005), - [anon_sym_short] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [aux_sym_preproc_else_token1] = ACTIONS(1005), - [sym_preproc_directive] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(1003), - [aux_sym_preproc_if_token1] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1003), - [anon_sym_LPAREN2] = ACTIONS(1003), - [sym_primitive_type] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [aux_sym_preproc_include_token1] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_static] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1005), - [sym_null] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1003), - [aux_sym_preproc_def_token1] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_auto] = ACTIONS(1005), - [anon_sym_inline] = ACTIONS(1005), + [sym_true] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [sym_null] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [aux_sym_preproc_if_token2] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [aux_sym_preproc_elif_token1] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [aux_sym_preproc_else_token1] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), }, [656] = { - [sym_false] = ACTIONS(1007), - [anon_sym_restrict] = ACTIONS(1007), - [sym_identifier] = ACTIONS(1007), - [anon_sym_goto] = ACTIONS(1007), - [aux_sym_preproc_if_token2] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_typedef] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym__Atomic] = ACTIONS(1007), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1007), - [sym_number_literal] = ACTIONS(1009), - [anon_sym_volatile] = ACTIONS(1007), - [anon_sym_SQUOTE] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_signed] = ACTIONS(1007), - [anon_sym_long] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1007), - [aux_sym_preproc_elif_token1] = ACTIONS(1007), - [anon_sym_L] = ACTIONS(1007), - [anon_sym___attribute__] = ACTIONS(1007), - [anon_sym_sizeof] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsigned] = ACTIONS(1007), - [anon_sym_short] = ACTIONS(1007), - [anon_sym_do] = ACTIONS(1007), - [aux_sym_preproc_else_token1] = ACTIONS(1007), - [sym_preproc_directive] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), - [aux_sym_preproc_if_token1] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [anon_sym_LPAREN2] = ACTIONS(1009), - [anon_sym_else] = ACTIONS(2409), - [sym_primitive_type] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1009), - [aux_sym_preproc_include_token1] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_register] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_switch] = ACTIONS(1007), - [sym_true] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [sym_null] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [aux_sym_preproc_def_token1] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_auto] = ACTIONS(1007), - [anon_sym_inline] = ACTIONS(1007), + [sym_true] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [sym_null] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [aux_sym_preproc_if_token2] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [aux_sym_preproc_elif_token1] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [aux_sym_preproc_else_token1] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), }, [657] = { - [sym_false] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [anon_sym_goto] = ACTIONS(1051), - [aux_sym_preproc_if_token2] = ACTIONS(1051), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_typedef] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1053), - [anon_sym__Atomic] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [sym_number_literal] = ACTIONS(1053), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_extern] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), - [aux_sym_preproc_elif_token1] = ACTIONS(1051), - [anon_sym_L] = ACTIONS(1051), - [anon_sym___attribute__] = ACTIONS(1051), - [anon_sym_sizeof] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1051), - [anon_sym_short] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(1051), - [aux_sym_preproc_else_token1] = ACTIONS(1051), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1053), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1053), - [anon_sym_LPAREN2] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1053), - [aux_sym_preproc_include_token1] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_switch] = ACTIONS(1051), - [sym_true] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [sym_null] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1053), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [anon_sym_inline] = ACTIONS(1051), + [sym_true] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [sym_null] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [aux_sym_preproc_if_token2] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [aux_sym_preproc_elif_token1] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [aux_sym_preproc_else_token1] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), }, [658] = { - [sym_false] = ACTIONS(1071), - [anon_sym_restrict] = ACTIONS(1071), - [sym_identifier] = ACTIONS(1071), - [anon_sym_goto] = ACTIONS(1071), - [aux_sym_preproc_if_token2] = ACTIONS(1071), - [anon_sym_const] = ACTIONS(1071), - [anon_sym_typedef] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym__Atomic] = ACTIONS(1071), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1071), - [sym_number_literal] = ACTIONS(1073), - [anon_sym_volatile] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_extern] = ACTIONS(1071), - [anon_sym_PLUS_PLUS] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(1071), - [anon_sym_signed] = ACTIONS(1071), - [anon_sym_long] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1071), - [aux_sym_preproc_elif_token1] = ACTIONS(1071), - [anon_sym_L] = ACTIONS(1071), - [anon_sym___attribute__] = ACTIONS(1071), - [anon_sym_sizeof] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_union] = ACTIONS(1071), - [anon_sym_unsigned] = ACTIONS(1071), - [anon_sym_short] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(1071), - [aux_sym_preproc_else_token1] = ACTIONS(1071), - [sym_preproc_directive] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - [aux_sym_preproc_if_token1] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1073), - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_else] = ACTIONS(1071), - [sym_primitive_type] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1073), - [aux_sym_preproc_include_token1] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_static] = ACTIONS(1071), - [anon_sym_register] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_switch] = ACTIONS(1071), - [sym_true] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1071), - [sym_null] = ACTIONS(1071), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [aux_sym_preproc_def_token1] = ACTIONS(1071), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_auto] = ACTIONS(1071), - [anon_sym_inline] = ACTIONS(1071), + [sym_true] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [sym_null] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [aux_sym_preproc_elif_token1] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [aux_sym_preproc_else_token1] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), }, [659] = { - [sym_false] = ACTIONS(1075), - [anon_sym_restrict] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [anon_sym_goto] = ACTIONS(1075), - [aux_sym_preproc_if_token2] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_typedef] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym__Atomic] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), - [sym_number_literal] = ACTIONS(1077), - [anon_sym_volatile] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_extern] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_signed] = ACTIONS(1075), - [anon_sym_long] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), - [aux_sym_preproc_elif_token1] = ACTIONS(1075), - [anon_sym_L] = ACTIONS(1075), - [anon_sym___attribute__] = ACTIONS(1075), - [anon_sym_sizeof] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_union] = ACTIONS(1075), - [anon_sym_unsigned] = ACTIONS(1075), - [anon_sym_short] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(1075), - [aux_sym_preproc_else_token1] = ACTIONS(1075), - [sym_preproc_directive] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - [aux_sym_preproc_if_token1] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_LPAREN2] = ACTIONS(1077), - [anon_sym_else] = ACTIONS(1075), - [sym_primitive_type] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), - [aux_sym_preproc_include_token1] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_register] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_switch] = ACTIONS(1075), - [sym_true] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [sym_null] = ACTIONS(1075), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1077), - [aux_sym_preproc_def_token1] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_auto] = ACTIONS(1075), - [anon_sym_inline] = ACTIONS(1075), - }, - [660] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), - [anon_sym_union] = ACTIONS(1087), - [anon_sym_unsigned] = ACTIONS(1087), - [anon_sym_restrict] = ACTIONS(1087), - [anon_sym_short] = ACTIONS(1087), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_volatile] = ACTIONS(1087), - [anon_sym_register] = ACTIONS(1087), - [anon_sym_extern] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1087), - [anon_sym_struct] = ACTIONS(1087), - [sym_preproc_directive] = ACTIONS(1087), - [anon_sym_signed] = ACTIONS(1087), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [anon_sym_long] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1085), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), - [aux_sym_preproc_def_token1] = ACTIONS(1087), - [anon_sym__Atomic] = ACTIONS(1087), - [anon_sym_auto] = ACTIONS(1087), - [sym_primitive_type] = ACTIONS(1087), - [anon_sym_inline] = ACTIONS(1087), - [anon_sym___attribute__] = ACTIONS(1087), - [sym_comment] = ACTIONS(3), - }, - [661] = { - [sym_false] = ACTIONS(1137), - [anon_sym_restrict] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1137), - [aux_sym_preproc_if_token2] = ACTIONS(1137), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_typedef] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1137), - [sym_number_literal] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1137), - [anon_sym_signed] = ACTIONS(1137), - [anon_sym_long] = ACTIONS(1137), - [anon_sym_while] = ACTIONS(1137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1137), - [aux_sym_preproc_elif_token1] = ACTIONS(1137), - [anon_sym_L] = ACTIONS(1137), - [anon_sym___attribute__] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1137), - [anon_sym_unsigned] = ACTIONS(1137), - [anon_sym_short] = ACTIONS(1137), - [anon_sym_do] = ACTIONS(1137), - [aux_sym_preproc_else_token1] = ACTIONS(1137), - [sym_preproc_directive] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1137), - [anon_sym_break] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_register] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1137), - [anon_sym_switch] = ACTIONS(1137), - [sym_true] = ACTIONS(1137), - [anon_sym_enum] = ACTIONS(1137), - [sym_null] = ACTIONS(1137), - [anon_sym_return] = ACTIONS(1137), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_auto] = ACTIONS(1137), - [anon_sym_inline] = ACTIONS(1137), - }, - [662] = { - [sym_false] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [aux_sym_preproc_if_token2] = ACTIONS(1157), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [aux_sym_preproc_elif_token1] = ACTIONS(1157), - [anon_sym_L] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym_sizeof] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [aux_sym_preproc_else_token1] = ACTIONS(1157), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [anon_sym_LPAREN2] = ACTIONS(1155), - [sym_primitive_type] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [sym_true] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [sym_null] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - }, - [663] = { - [sym_preproc_def] = STATE(663), - [sym_preproc_function_def] = STATE(663), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(663), - [sym_field_declaration] = STATE(663), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(663), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(663), - [sym_preproc_if_in_field_declaration_list] = STATE(663), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(663), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(985), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_unsigned] = ACTIONS(1201), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1207), - [anon_sym_extern] = ACTIONS(1207), - [sym_identifier] = ACTIONS(1210), - [aux_sym_preproc_if_token2] = ACTIONS(2318), - [sym_preproc_directive] = ACTIONS(2414), - [anon_sym_signed] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(2417), - [anon_sym_long] = ACTIONS(1201), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), - [aux_sym_preproc_def_token1] = ACTIONS(2420), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1207), - [sym_primitive_type] = ACTIONS(1230), - [anon_sym_inline] = ACTIONS(1207), - [anon_sym___attribute__] = ACTIONS(1233), - [sym_comment] = ACTIONS(3), - }, - [664] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_if_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_signed] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [sym_comment] = ACTIONS(3), - }, - [665] = { - [sym_false] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [aux_sym_preproc_if_token2] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [aux_sym_preproc_elif_token1] = ACTIONS(1260), - [anon_sym_L] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [aux_sym_preproc_else_token1] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1262), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [sym_true] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [sym_null] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - }, - [666] = { - [sym_false] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [aux_sym_preproc_if_token2] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [sym_number_literal] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [aux_sym_preproc_elif_token1] = ACTIONS(1270), - [anon_sym_L] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [aux_sym_preproc_else_token1] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [sym_true] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [sym_null] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - }, - [667] = { - [sym_false] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1274), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [aux_sym_preproc_elif_token1] = ACTIONS(1274), - [anon_sym_L] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [aux_sym_preproc_else_token1] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [sym_true] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - }, - [668] = { - [sym_false] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [anon_sym_L] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [aux_sym_preproc_else_token1] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [sym_true] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [sym_null] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), + [sym_true] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [sym_null] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [aux_sym_preproc_elif_token1] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [aux_sym_preproc_else_token1] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), }, - [669] = { - [sym_false] = ACTIONS(1392), - [anon_sym_restrict] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [aux_sym_preproc_if_token2] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [aux_sym_preproc_elif_token1] = ACTIONS(1392), - [anon_sym_L] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [aux_sym_preproc_else_token1] = ACTIONS(1392), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [sym_null] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), + [660] = { + [sym_true] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [sym_null] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [aux_sym_preproc_elif_token1] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [aux_sym_preproc_else_token1] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), }, - [670] = { - [sym_false] = ACTIONS(1396), - [anon_sym_restrict] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1396), - [anon_sym_goto] = ACTIONS(1396), - [aux_sym_preproc_if_token2] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), - [aux_sym_preproc_elif_token1] = ACTIONS(1396), - [anon_sym_L] = ACTIONS(1396), - [anon_sym___attribute__] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), - [anon_sym_do] = ACTIONS(1396), - [aux_sym_preproc_else_token1] = ACTIONS(1396), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_register] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [sym_null] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_auto] = ACTIONS(1396), - [anon_sym_inline] = ACTIONS(1396), + [661] = { + [sym_if_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [671] = { - [sym_false] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym__Atomic] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [aux_sym_preproc_elif_token1] = ACTIONS(1402), - [anon_sym_L] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [aux_sym_preproc_else_token1] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1400), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_LPAREN2] = ACTIONS(1400), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1400), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [sym_null] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), + [662] = { + [sym_true] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [sym_null] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [aux_sym_preproc_elif_token1] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [aux_sym_preproc_else_token1] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), }, - [672] = { - [sym_if_statement] = STATE(689), - [sym_do_statement] = STATE(689), - [sym_for_statement] = STATE(689), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(689), - [sym_return_statement] = STATE(689), - [sym_break_statement] = STATE(689), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(689), - [sym_while_statement] = STATE(689), - [sym_continue_statement] = STATE(689), - [sym_goto_statement] = STATE(689), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(689), - [sym_expression_statement] = STATE(689), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [663] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1400), }, - [673] = { - [sym_false] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), + [664] = { [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [anon_sym_L] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), [anon_sym_union] = ACTIONS(1410), [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), [anon_sym_short] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1412), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_else] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), [anon_sym_static] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), [anon_sym_register] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [sym_true] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), [anon_sym_enum] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), [aux_sym_preproc_def_token1] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), [anon_sym_auto] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), [anon_sym_inline] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1410), }, - [674] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), + [665] = { + [sym_true] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [sym_null] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [aux_sym_preproc_elif_token1] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [aux_sym_preproc_else_token1] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), }, - [675] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), + [666] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), + [anon_sym_union] = ACTIONS(1485), + [anon_sym_unsigned] = ACTIONS(1485), + [anon_sym_restrict] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_volatile] = ACTIONS(1485), + [anon_sym_register] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1485), + [aux_sym_preproc_if_token2] = ACTIONS(1485), + [sym_preproc_directive] = ACTIONS(1485), + [anon_sym_signed] = ACTIONS(1485), + [aux_sym_preproc_if_token1] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_struct] = ACTIONS(1485), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), + [aux_sym_preproc_def_token1] = ACTIONS(1485), + [anon_sym__Atomic] = ACTIONS(1485), + [anon_sym_auto] = ACTIONS(1485), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_inline] = ACTIONS(1485), + [anon_sym___attribute__] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1485), }, - [676] = { - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1450), - [sym_true] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), - [sym_null] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(1450), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_L] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1450), + [667] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_unsigned] = ACTIONS(1495), + [anon_sym_restrict] = ACTIONS(1495), + [anon_sym_short] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_volatile] = ACTIONS(1495), + [anon_sym_register] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(1495), + [aux_sym_preproc_if_token2] = ACTIONS(1495), + [sym_preproc_directive] = ACTIONS(1495), + [anon_sym_signed] = ACTIONS(1495), + [aux_sym_preproc_if_token1] = ACTIONS(1495), + [anon_sym_long] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_struct] = ACTIONS(1495), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1495), + [aux_sym_preproc_def_token1] = ACTIONS(1495), + [anon_sym__Atomic] = ACTIONS(1495), + [anon_sym_auto] = ACTIONS(1495), + [sym_primitive_type] = ACTIONS(1495), + [anon_sym_inline] = ACTIONS(1495), + [anon_sym___attribute__] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1495), }, - [677] = { - [sym_false] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [aux_sym_preproc_if_token2] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym__Atomic] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [aux_sym_preproc_elif_token1] = ACTIONS(1504), - [anon_sym_L] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [aux_sym_preproc_else_token1] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1506), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_LPAREN2] = ACTIONS(1506), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1506), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [sym_true] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [sym_null] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), + [668] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_restrict] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [aux_sym_preproc_if_token2] = ACTIONS(1509), + [sym_preproc_directive] = ACTIONS(1509), + [anon_sym_signed] = ACTIONS(1509), + [aux_sym_preproc_if_token1] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), + [aux_sym_preproc_def_token1] = ACTIONS(1509), + [anon_sym__Atomic] = ACTIONS(1509), + [anon_sym_auto] = ACTIONS(1509), + [sym_primitive_type] = ACTIONS(1509), + [anon_sym_inline] = ACTIONS(1509), + [anon_sym___attribute__] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1509), }, - [678] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_unsigned] = ACTIONS(1523), - [anon_sym_restrict] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_volatile] = ACTIONS(1523), - [anon_sym_register] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(1523), - [sym_identifier] = ACTIONS(1523), - [aux_sym_preproc_if_token2] = ACTIONS(1523), - [sym_preproc_directive] = ACTIONS(1523), - [anon_sym_signed] = ACTIONS(1523), - [aux_sym_preproc_if_token1] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1523), - [aux_sym_preproc_def_token1] = ACTIONS(1523), - [anon_sym__Atomic] = ACTIONS(1523), - [anon_sym_auto] = ACTIONS(1523), - [sym_primitive_type] = ACTIONS(1523), - [anon_sym_inline] = ACTIONS(1523), - [anon_sym___attribute__] = ACTIONS(1523), + [669] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_unsigned] = ACTIONS(1513), + [anon_sym_restrict] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_volatile] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [aux_sym_preproc_if_token2] = ACTIONS(1513), + [sym_preproc_directive] = ACTIONS(1513), + [anon_sym_signed] = ACTIONS(1513), + [aux_sym_preproc_if_token1] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), + [aux_sym_preproc_def_token1] = ACTIONS(1513), + [anon_sym__Atomic] = ACTIONS(1513), + [anon_sym_auto] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1513), + [anon_sym_inline] = ACTIONS(1513), + [anon_sym___attribute__] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1513), }, - [679] = { + [670] = { + [sym_true] = ACTIONS(1533), + [anon_sym_restrict] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [anon_sym_goto] = ACTIONS(1533), + [aux_sym_preproc_if_token2] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_typedef] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym__Atomic] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1533), [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), + [sym_number_literal] = ACTIONS(1535), + [anon_sym_volatile] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_extern] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_signed] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), + [aux_sym_preproc_elif_token1] = ACTIONS(1533), + [anon_sym_L_SQUOTE] = ACTIONS(1535), + [anon_sym___attribute__] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1535), [anon_sym_union] = ACTIONS(1533), [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), [anon_sym_short] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [aux_sym_preproc_else_token1] = ACTIONS(1533), [sym_preproc_directive] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1535), [aux_sym_preproc_if_token1] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_L_DQUOTE] = ACTIONS(1535), + [anon_sym_LPAREN2] = ACTIONS(1535), + [sym_primitive_type] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [aux_sym_preproc_include_token1] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_register] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), [anon_sym_enum] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), [aux_sym_preproc_def_token1] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), [anon_sym_auto] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), [anon_sym_inline] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), }, - [680] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1547), - [aux_sym_preproc_if_token2] = ACTIONS(1547), - [sym_preproc_directive] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [aux_sym_preproc_if_token1] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1547), - [aux_sym_preproc_def_token1] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), + [671] = { + [sym_true] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1607), + [aux_sym_preproc_if_token2] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym__Atomic] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), + [sym_number_literal] = ACTIONS(1609), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1609), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), + [aux_sym_preproc_elif_token1] = ACTIONS(1607), + [anon_sym_L_SQUOTE] = ACTIONS(1609), + [anon_sym___attribute__] = ACTIONS(1607), + [anon_sym_sizeof] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [aux_sym_preproc_else_token1] = ACTIONS(1607), + [sym_preproc_directive] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1609), + [aux_sym_preproc_if_token1] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_L_DQUOTE] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [aux_sym_preproc_include_token1] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1609), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1609), + [aux_sym_preproc_def_token1] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), }, - [681] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1551), - [anon_sym_union] = ACTIONS(1551), - [anon_sym_unsigned] = ACTIONS(1551), - [anon_sym_restrict] = ACTIONS(1551), - [anon_sym_short] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_volatile] = ACTIONS(1551), - [anon_sym_register] = ACTIONS(1551), - [anon_sym_extern] = ACTIONS(1551), - [sym_identifier] = ACTIONS(1551), - [aux_sym_preproc_if_token2] = ACTIONS(1551), - [sym_preproc_directive] = ACTIONS(1551), - [anon_sym_signed] = ACTIONS(1551), - [aux_sym_preproc_if_token1] = ACTIONS(1551), - [anon_sym_long] = ACTIONS(1551), - [anon_sym_enum] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_struct] = ACTIONS(1551), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1551), - [aux_sym_preproc_def_token1] = ACTIONS(1551), - [anon_sym__Atomic] = ACTIONS(1551), - [anon_sym_auto] = ACTIONS(1551), - [sym_primitive_type] = ACTIONS(1551), - [anon_sym_inline] = ACTIONS(1551), - [anon_sym___attribute__] = ACTIONS(1551), - [sym_comment] = ACTIONS(3), + [672] = { + [sym_true] = ACTIONS(1616), + [anon_sym_restrict] = ACTIONS(1616), + [sym_null] = ACTIONS(1616), + [anon_sym_goto] = ACTIONS(1616), + [aux_sym_preproc_if_token2] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [anon_sym_typedef] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [anon_sym__Atomic] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1616), + [sym_number_literal] = ACTIONS(1618), + [anon_sym_volatile] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1616), + [anon_sym_signed] = ACTIONS(1616), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1616), + [aux_sym_preproc_elif_token1] = ACTIONS(1616), + [anon_sym_L_SQUOTE] = ACTIONS(1618), + [anon_sym___attribute__] = ACTIONS(1616), + [anon_sym_sizeof] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_short] = ACTIONS(1616), + [anon_sym_do] = ACTIONS(1616), + [aux_sym_preproc_else_token1] = ACTIONS(1616), + [sym_preproc_directive] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1618), + [aux_sym_preproc_if_token1] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1618), + [anon_sym_L_DQUOTE] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1618), + [sym_primitive_type] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1618), + [aux_sym_preproc_include_token1] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_static] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_register] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_switch] = ACTIONS(1616), + [anon_sym_enum] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1618), + [aux_sym_preproc_def_token1] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_auto] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), }, - [682] = { - [sym_false] = ACTIONS(1573), - [anon_sym_restrict] = ACTIONS(1573), - [sym_identifier] = ACTIONS(1573), - [anon_sym_goto] = ACTIONS(1573), - [aux_sym_preproc_if_token2] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_typedef] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym__Atomic] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_volatile] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_struct] = ACTIONS(1573), - [anon_sym_signed] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), - [aux_sym_preproc_elif_token1] = ACTIONS(1573), - [anon_sym_L] = ACTIONS(1573), - [anon_sym___attribute__] = ACTIONS(1573), - [anon_sym_sizeof] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_union] = ACTIONS(1573), - [anon_sym_unsigned] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [aux_sym_preproc_else_token1] = ACTIONS(1573), - [sym_preproc_directive] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1571), - [aux_sym_preproc_if_token1] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [anon_sym_LPAREN2] = ACTIONS(1571), - [sym_primitive_type] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1571), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [sym_true] = ACTIONS(1573), - [anon_sym_enum] = ACTIONS(1573), - [sym_null] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1571), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_auto] = ACTIONS(1573), - [anon_sym_inline] = ACTIONS(1573), + [673] = { + [sym_if_statement] = STATE(686), + [sym_do_statement] = STATE(686), + [sym_for_statement] = STATE(686), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(686), + [sym_return_statement] = STATE(686), + [sym_break_statement] = STATE(686), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(686), + [sym_while_statement] = STATE(686), + [sym_continue_statement] = STATE(686), + [sym_goto_statement] = STATE(686), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(686), + [sym_expression_statement] = STATE(686), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [683] = { - [sym_false] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [aux_sym_preproc_if_token2] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym__Atomic] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), - [aux_sym_preproc_elif_token1] = ACTIONS(1645), - [anon_sym_L] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym_sizeof] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [aux_sym_preproc_else_token1] = ACTIONS(1645), - [sym_preproc_directive] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym_LPAREN2] = ACTIONS(1647), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1647), - [aux_sym_preproc_include_token1] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [sym_true] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [aux_sym_preproc_def_token1] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_auto] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), + [674] = { + [sym_if_statement] = STATE(690), + [sym_do_statement] = STATE(690), + [sym_for_statement] = STATE(690), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(690), + [sym_return_statement] = STATE(690), + [sym_break_statement] = STATE(690), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(690), + [sym_while_statement] = STATE(690), + [sym_continue_statement] = STATE(690), + [sym_goto_statement] = STATE(690), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(690), + [sym_expression_statement] = STATE(690), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [684] = { - [sym_false] = ACTIONS(1654), + [675] = { + [sym_true] = ACTIONS(1646), + [anon_sym_restrict] = ACTIONS(1646), + [sym_null] = ACTIONS(1646), + [anon_sym_goto] = ACTIONS(1646), + [aux_sym_preproc_if_token2] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_typedef] = ACTIONS(1646), + [anon_sym_DASH_DASH] = ACTIONS(1648), + [anon_sym__Atomic] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(1648), + [anon_sym_volatile] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1646), + [anon_sym_PLUS_PLUS] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_signed] = ACTIONS(1646), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), + [aux_sym_preproc_elif_token1] = ACTIONS(1646), + [anon_sym_L_SQUOTE] = ACTIONS(1648), + [anon_sym___attribute__] = ACTIONS(1646), + [anon_sym_sizeof] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_union] = ACTIONS(1646), + [anon_sym_unsigned] = ACTIONS(1646), + [anon_sym_short] = ACTIONS(1646), + [anon_sym_do] = ACTIONS(1646), + [aux_sym_preproc_else_token1] = ACTIONS(1646), + [sym_preproc_directive] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1648), + [aux_sym_preproc_if_token1] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_L_DQUOTE] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1648), + [sym_primitive_type] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1648), + [aux_sym_preproc_include_token1] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [sym_false] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1648), + [aux_sym_preproc_def_token1] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_auto] = ACTIONS(1646), + [anon_sym_inline] = ACTIONS(1646), + }, + [676] = { + [sym_true] = ACTIONS(1650), + [anon_sym_restrict] = ACTIONS(1650), + [sym_null] = ACTIONS(1650), + [anon_sym_goto] = ACTIONS(1650), + [aux_sym_preproc_if_token2] = ACTIONS(1650), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_typedef] = ACTIONS(1650), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [anon_sym__Atomic] = ACTIONS(1650), + [sym_identifier] = ACTIONS(1650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), + [sym_number_literal] = ACTIONS(1652), + [anon_sym_volatile] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_extern] = ACTIONS(1650), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_struct] = ACTIONS(1650), + [anon_sym_signed] = ACTIONS(1650), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1650), + [anon_sym_while] = ACTIONS(1650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), + [aux_sym_preproc_elif_token1] = ACTIONS(1650), + [anon_sym_L_SQUOTE] = ACTIONS(1652), + [anon_sym___attribute__] = ACTIONS(1650), + [anon_sym_sizeof] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_union] = ACTIONS(1650), + [anon_sym_unsigned] = ACTIONS(1650), + [anon_sym_short] = ACTIONS(1650), + [anon_sym_do] = ACTIONS(1650), + [aux_sym_preproc_else_token1] = ACTIONS(1650), + [sym_preproc_directive] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1652), + [aux_sym_preproc_if_token1] = ACTIONS(1650), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_L_DQUOTE] = ACTIONS(1652), + [anon_sym_LPAREN2] = ACTIONS(1652), + [sym_primitive_type] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1652), + [aux_sym_preproc_include_token1] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_static] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1652), + [anon_sym_register] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_switch] = ACTIONS(1650), + [anon_sym_enum] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1652), + [aux_sym_preproc_def_token1] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_auto] = ACTIONS(1650), + [anon_sym_inline] = ACTIONS(1650), + }, + [677] = { + [sym_true] = ACTIONS(1654), [anon_sym_restrict] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1654), + [sym_null] = ACTIONS(1654), [anon_sym_goto] = ACTIONS(1654), [aux_sym_preproc_if_token2] = ACTIONS(1654), [anon_sym_const] = ACTIONS(1654), [anon_sym_typedef] = ACTIONS(1654), [anon_sym_DASH_DASH] = ACTIONS(1656), [anon_sym__Atomic] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1654), [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), [sym_number_literal] = ACTIONS(1656), [anon_sym_volatile] = ACTIONS(1654), @@ -30619,11 +30884,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1656), [anon_sym_struct] = ACTIONS(1654), [anon_sym_signed] = ACTIONS(1654), + [sym_comment] = ACTIONS(3), [anon_sym_long] = ACTIONS(1654), [anon_sym_while] = ACTIONS(1654), [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), [aux_sym_preproc_elif_token1] = ACTIONS(1654), - [anon_sym_L] = ACTIONS(1654), + [anon_sym_L_SQUOTE] = ACTIONS(1656), [anon_sym___attribute__] = ACTIONS(1654), [anon_sym_sizeof] = ACTIONS(1654), [anon_sym_LBRACE] = ACTIONS(1656), @@ -30636,8 +30902,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1656), [aux_sym_preproc_if_token1] = ACTIONS(1654), [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_L_DQUOTE] = ACTIONS(1656), [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_else] = ACTIONS(1654), [sym_primitive_type] = ACTIONS(1654), [anon_sym_for] = ACTIONS(1654), [anon_sym_break] = ACTIONS(1654), @@ -30645,13 +30912,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(1654), [anon_sym_DASH] = ACTIONS(1654), [anon_sym_static] = ACTIONS(1654), + [anon_sym_DQUOTE] = ACTIONS(1656), [anon_sym_register] = ACTIONS(1654), [anon_sym_STAR] = ACTIONS(1656), [anon_sym_if] = ACTIONS(1654), [anon_sym_switch] = ACTIONS(1654), - [sym_true] = ACTIONS(1654), [anon_sym_enum] = ACTIONS(1654), - [sym_null] = ACTIONS(1654), + [sym_false] = ACTIONS(1654), [anon_sym_return] = ACTIONS(1654), [anon_sym_continue] = ACTIONS(1654), [anon_sym_SEMI] = ACTIONS(1656), @@ -30660,4388 +30927,4224 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1654), [anon_sym_inline] = ACTIONS(1654), }, + [678] = { + [sym_true] = ACTIONS(1666), + [anon_sym_restrict] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [anon_sym_goto] = ACTIONS(1666), + [aux_sym_preproc_if_token2] = ACTIONS(1666), + [anon_sym_const] = ACTIONS(1666), + [anon_sym_typedef] = ACTIONS(1666), + [anon_sym_DASH_DASH] = ACTIONS(1668), + [anon_sym__Atomic] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1666), + [sym_number_literal] = ACTIONS(1668), + [anon_sym_volatile] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1666), + [anon_sym_PLUS_PLUS] = ACTIONS(1668), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_signed] = ACTIONS(1666), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1666), + [aux_sym_preproc_elif_token1] = ACTIONS(1666), + [anon_sym_L_SQUOTE] = ACTIONS(1668), + [anon_sym___attribute__] = ACTIONS(1666), + [anon_sym_sizeof] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_union] = ACTIONS(1666), + [anon_sym_unsigned] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_do] = ACTIONS(1666), + [aux_sym_preproc_else_token1] = ACTIONS(1666), + [sym_preproc_directive] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1668), + [aux_sym_preproc_if_token1] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1668), + [anon_sym_L_DQUOTE] = ACTIONS(1668), + [anon_sym_LPAREN2] = ACTIONS(1668), + [anon_sym_else] = ACTIONS(1666), + [sym_primitive_type] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1668), + [aux_sym_preproc_include_token1] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_static] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1668), + [anon_sym_register] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1666), + [anon_sym_enum] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1668), + [aux_sym_preproc_def_token1] = ACTIONS(1666), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_auto] = ACTIONS(1666), + [anon_sym_inline] = ACTIONS(1666), + }, + [679] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_restrict] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_volatile] = ACTIONS(1763), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1763), + [sym_preproc_directive] = ACTIONS(1763), + [anon_sym_signed] = ACTIONS(1763), + [aux_sym_preproc_if_token1] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), + [aux_sym_preproc_def_token1] = ACTIONS(1763), + [anon_sym__Atomic] = ACTIONS(1763), + [anon_sym_auto] = ACTIONS(1763), + [sym_primitive_type] = ACTIONS(1763), + [anon_sym_inline] = ACTIONS(1763), + [anon_sym___attribute__] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1763), + }, + [680] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_unsigned] = ACTIONS(1793), + [anon_sym_restrict] = ACTIONS(1793), + [anon_sym_short] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_register] = ACTIONS(1793), + [anon_sym_extern] = ACTIONS(1793), + [aux_sym_preproc_if_token2] = ACTIONS(1793), + [sym_preproc_directive] = ACTIONS(1793), + [anon_sym_signed] = ACTIONS(1793), + [aux_sym_preproc_if_token1] = ACTIONS(1793), + [anon_sym_long] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1793), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1793), + [aux_sym_preproc_def_token1] = ACTIONS(1793), + [anon_sym__Atomic] = ACTIONS(1793), + [anon_sym_auto] = ACTIONS(1793), + [sym_primitive_type] = ACTIONS(1793), + [anon_sym_inline] = ACTIONS(1793), + [anon_sym___attribute__] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1793), + }, + [681] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_unsigned] = ACTIONS(1799), + [anon_sym_restrict] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [aux_sym_preproc_if_token2] = ACTIONS(1799), + [sym_preproc_directive] = ACTIONS(1799), + [anon_sym_signed] = ACTIONS(1799), + [aux_sym_preproc_if_token1] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1799), + [aux_sym_preproc_def_token1] = ACTIONS(1799), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_auto] = ACTIONS(1799), + [sym_primitive_type] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym___attribute__] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1799), + }, + [682] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1803), + [anon_sym_union] = ACTIONS(1803), + [anon_sym_unsigned] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_short] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [aux_sym_preproc_if_token2] = ACTIONS(1803), + [sym_preproc_directive] = ACTIONS(1803), + [anon_sym_signed] = ACTIONS(1803), + [aux_sym_preproc_if_token1] = ACTIONS(1803), + [anon_sym_long] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1803), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1803), + [aux_sym_preproc_def_token1] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_auto] = ACTIONS(1803), + [sym_primitive_type] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym___attribute__] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1803), + }, + [683] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_unsigned] = ACTIONS(1809), + [anon_sym_restrict] = ACTIONS(1809), + [anon_sym_short] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_volatile] = ACTIONS(1809), + [anon_sym_register] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(1809), + [aux_sym_preproc_if_token2] = ACTIONS(1809), + [sym_preproc_directive] = ACTIONS(1809), + [anon_sym_signed] = ACTIONS(1809), + [aux_sym_preproc_if_token1] = ACTIONS(1809), + [anon_sym_long] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1809), + [aux_sym_preproc_def_token1] = ACTIONS(1809), + [anon_sym__Atomic] = ACTIONS(1809), + [anon_sym_auto] = ACTIONS(1809), + [sym_primitive_type] = ACTIONS(1809), + [anon_sym_inline] = ACTIONS(1809), + [anon_sym___attribute__] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1809), + }, + [684] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1831), + [anon_sym_union] = ACTIONS(1831), + [anon_sym_unsigned] = ACTIONS(1831), + [anon_sym_restrict] = ACTIONS(1831), + [anon_sym_short] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_volatile] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [aux_sym_preproc_if_token2] = ACTIONS(1831), + [sym_preproc_directive] = ACTIONS(1831), + [anon_sym_signed] = ACTIONS(1831), + [aux_sym_preproc_if_token1] = ACTIONS(1831), + [anon_sym_long] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_struct] = ACTIONS(1831), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1831), + [anon_sym__Atomic] = ACTIONS(1831), + [anon_sym_auto] = ACTIONS(1831), + [sym_primitive_type] = ACTIONS(1831), + [anon_sym_inline] = ACTIONS(1831), + [anon_sym___attribute__] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1831), + }, [685] = { - [sym_if_statement] = STATE(698), - [sym_do_statement] = STATE(698), - [sym_for_statement] = STATE(698), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(698), - [sym_return_statement] = STATE(698), - [sym_break_statement] = STATE(698), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(698), - [sym_while_statement] = STATE(698), - [sym_continue_statement] = STATE(698), - [sym_goto_statement] = STATE(698), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(698), - [sym_expression_statement] = STATE(698), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [sym_null] = ACTIONS(1900), + [anon_sym_goto] = ACTIONS(1900), + [aux_sym_preproc_if_token2] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_typedef] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym__Atomic] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), + [sym_number_literal] = ACTIONS(1902), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_signed] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), + [aux_sym_preproc_elif_token1] = ACTIONS(1900), + [anon_sym_L_SQUOTE] = ACTIONS(1902), + [anon_sym___attribute__] = ACTIONS(1900), + [anon_sym_sizeof] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsigned] = ACTIONS(1900), + [anon_sym_short] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [aux_sym_preproc_else_token1] = ACTIONS(1900), + [sym_preproc_directive] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [aux_sym_preproc_if_token1] = ACTIONS(1900), + [anon_sym_TILDE] = ACTIONS(1902), + [anon_sym_L_DQUOTE] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1902), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1902), + [aux_sym_preproc_include_token1] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1902), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_switch] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [sym_false] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1902), + [aux_sym_preproc_def_token1] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_auto] = ACTIONS(1900), + [anon_sym_inline] = ACTIONS(1900), }, [686] = { + [sym_true] = ACTIONS(1904), + [anon_sym_restrict] = ACTIONS(1904), + [sym_null] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1904), + [aux_sym_preproc_if_token2] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_typedef] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym__Atomic] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), + [sym_number_literal] = ACTIONS(1906), + [anon_sym_volatile] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_signed] = ACTIONS(1904), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), + [aux_sym_preproc_elif_token1] = ACTIONS(1904), + [anon_sym_L_SQUOTE] = ACTIONS(1906), + [anon_sym___attribute__] = ACTIONS(1904), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_unsigned] = ACTIONS(1904), + [anon_sym_short] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [aux_sym_preproc_else_token1] = ACTIONS(1904), + [sym_preproc_directive] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1906), + [aux_sym_preproc_if_token1] = ACTIONS(1904), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_L_DQUOTE] = ACTIONS(1906), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_else] = ACTIONS(1904), + [sym_primitive_type] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1906), + [aux_sym_preproc_include_token1] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [sym_false] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1906), + [aux_sym_preproc_def_token1] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_auto] = ACTIONS(1904), + [anon_sym_inline] = ACTIONS(1904), + }, + [687] = { + [sym_if_statement] = STATE(696), + [sym_do_statement] = STATE(696), + [sym_for_statement] = STATE(696), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(696), + [sym_return_statement] = STATE(696), + [sym_break_statement] = STATE(696), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(696), + [sym_while_statement] = STATE(696), + [sym_continue_statement] = STATE(696), + [sym_goto_statement] = STATE(696), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(696), + [sym_expression_statement] = STATE(696), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [688] = { + [sym_if_statement] = STATE(697), + [sym_do_statement] = STATE(697), + [sym_for_statement] = STATE(697), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(697), + [sym_return_statement] = STATE(697), + [sym_break_statement] = STATE(697), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(697), + [sym_while_statement] = STATE(697), + [sym_continue_statement] = STATE(697), + [sym_goto_statement] = STATE(697), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(697), + [sym_expression_statement] = STATE(697), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [689] = { + [sym_if_statement] = STATE(699), + [sym_do_statement] = STATE(699), + [sym_for_statement] = STATE(699), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(699), + [sym_return_statement] = STATE(699), + [sym_break_statement] = STATE(699), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(699), + [sym_while_statement] = STATE(699), + [sym_continue_statement] = STATE(699), + [sym_goto_statement] = STATE(699), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(699), + [sym_expression_statement] = STATE(699), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [690] = { + [sym_true] = ACTIONS(1918), + [anon_sym_restrict] = ACTIONS(1918), + [sym_null] = ACTIONS(1918), + [anon_sym_goto] = ACTIONS(1918), + [aux_sym_preproc_if_token2] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_typedef] = ACTIONS(1918), + [anon_sym_DASH_DASH] = ACTIONS(1920), + [anon_sym__Atomic] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), + [sym_number_literal] = ACTIONS(1920), + [anon_sym_volatile] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_signed] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), + [aux_sym_preproc_elif_token1] = ACTIONS(1918), + [anon_sym_L_SQUOTE] = ACTIONS(1920), + [anon_sym___attribute__] = ACTIONS(1918), + [anon_sym_sizeof] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsigned] = ACTIONS(1918), + [anon_sym_short] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [aux_sym_preproc_else_token1] = ACTIONS(1918), + [sym_preproc_directive] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1920), + [aux_sym_preproc_if_token1] = ACTIONS(1918), + [anon_sym_TILDE] = ACTIONS(1920), + [anon_sym_L_DQUOTE] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_else] = ACTIONS(1918), + [sym_primitive_type] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1920), + [aux_sym_preproc_include_token1] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_register] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [sym_false] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1920), + [aux_sym_preproc_def_token1] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_auto] = ACTIONS(1918), + [anon_sym_inline] = ACTIONS(1918), + }, + [691] = { [sym_if_statement] = STATE(702), [sym_do_statement] = STATE(702), [sym_for_statement] = STATE(702), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(702), [sym_return_statement] = STATE(702), [sym_break_statement] = STATE(702), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), [sym_labeled_statement] = STATE(702), [sym_while_statement] = STATE(702), [sym_continue_statement] = STATE(702), [sym_goto_statement] = STATE(702), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(702), [sym_expression_statement] = STATE(702), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [687] = { - [sym_false] = ACTIONS(1686), - [anon_sym_restrict] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1686), - [anon_sym_goto] = ACTIONS(1686), - [aux_sym_preproc_if_token2] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_typedef] = ACTIONS(1686), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym__Atomic] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), - [sym_number_literal] = ACTIONS(1684), - [anon_sym_volatile] = ACTIONS(1686), - [anon_sym_SQUOTE] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_signed] = ACTIONS(1686), - [anon_sym_long] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), - [aux_sym_preproc_elif_token1] = ACTIONS(1686), - [anon_sym_L] = ACTIONS(1686), - [anon_sym___attribute__] = ACTIONS(1686), - [anon_sym_sizeof] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1686), - [anon_sym_unsigned] = ACTIONS(1686), - [anon_sym_short] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [aux_sym_preproc_else_token1] = ACTIONS(1686), - [sym_preproc_directive] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1684), - [aux_sym_preproc_if_token1] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_LPAREN2] = ACTIONS(1684), - [sym_primitive_type] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [aux_sym_preproc_include_token1] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_register] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [sym_true] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1684), - [aux_sym_preproc_def_token1] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_auto] = ACTIONS(1686), - [anon_sym_inline] = ACTIONS(1686), - }, - [688] = { - [sym_false] = ACTIONS(1690), - [anon_sym_restrict] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1690), - [anon_sym_goto] = ACTIONS(1690), - [aux_sym_preproc_if_token2] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_typedef] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym__Atomic] = ACTIONS(1690), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1690), - [sym_number_literal] = ACTIONS(1688), - [anon_sym_volatile] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1688), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1688), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_signed] = ACTIONS(1690), - [anon_sym_long] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1690), - [aux_sym_preproc_elif_token1] = ACTIONS(1690), - [anon_sym_L] = ACTIONS(1690), - [anon_sym___attribute__] = ACTIONS(1690), - [anon_sym_sizeof] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_unsigned] = ACTIONS(1690), - [anon_sym_short] = ACTIONS(1690), - [anon_sym_do] = ACTIONS(1690), - [aux_sym_preproc_else_token1] = ACTIONS(1690), - [sym_preproc_directive] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1688), - [aux_sym_preproc_if_token1] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_LPAREN2] = ACTIONS(1688), - [sym_primitive_type] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1688), - [aux_sym_preproc_include_token1] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_register] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [sym_null] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [aux_sym_preproc_def_token1] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_auto] = ACTIONS(1690), - [anon_sym_inline] = ACTIONS(1690), - }, - [689] = { - [sym_false] = ACTIONS(1692), - [anon_sym_restrict] = ACTIONS(1692), - [sym_identifier] = ACTIONS(1692), - [anon_sym_goto] = ACTIONS(1692), - [aux_sym_preproc_if_token2] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_typedef] = ACTIONS(1692), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym__Atomic] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1692), - [sym_number_literal] = ACTIONS(1694), - [anon_sym_volatile] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_struct] = ACTIONS(1692), - [anon_sym_signed] = ACTIONS(1692), - [anon_sym_long] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1692), - [aux_sym_preproc_elif_token1] = ACTIONS(1692), - [anon_sym_L] = ACTIONS(1692), - [anon_sym___attribute__] = ACTIONS(1692), - [anon_sym_sizeof] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_union] = ACTIONS(1692), - [anon_sym_unsigned] = ACTIONS(1692), - [anon_sym_short] = ACTIONS(1692), - [anon_sym_do] = ACTIONS(1692), - [aux_sym_preproc_else_token1] = ACTIONS(1692), - [sym_preproc_directive] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1694), - [aux_sym_preproc_if_token1] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LPAREN2] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1692), - [sym_primitive_type] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1694), - [aux_sym_preproc_include_token1] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_register] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [sym_true] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [sym_null] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1694), - [aux_sym_preproc_def_token1] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_auto] = ACTIONS(1692), - [anon_sym_inline] = ACTIONS(1692), - }, - [690] = { - [sym_false] = ACTIONS(1704), - [anon_sym_restrict] = ACTIONS(1704), - [sym_identifier] = ACTIONS(1704), - [anon_sym_goto] = ACTIONS(1704), - [aux_sym_preproc_if_token2] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_typedef] = ACTIONS(1704), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym__Atomic] = ACTIONS(1704), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1704), - [sym_number_literal] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1704), - [anon_sym_signed] = ACTIONS(1704), - [anon_sym_long] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1704), - [aux_sym_preproc_elif_token1] = ACTIONS(1704), - [anon_sym_L] = ACTIONS(1704), - [anon_sym___attribute__] = ACTIONS(1704), - [anon_sym_sizeof] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_unsigned] = ACTIONS(1704), - [anon_sym_short] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [aux_sym_preproc_else_token1] = ACTIONS(1704), - [sym_preproc_directive] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1706), - [aux_sym_preproc_if_token1] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1704), - [sym_primitive_type] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1706), - [aux_sym_preproc_include_token1] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_register] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1706), - [aux_sym_preproc_def_token1] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_auto] = ACTIONS(1704), - [anon_sym_inline] = ACTIONS(1704), - }, - [691] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_unsigned] = ACTIONS(1806), - [anon_sym_restrict] = ACTIONS(1806), - [anon_sym_short] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_volatile] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [sym_preproc_directive] = ACTIONS(1806), - [anon_sym_signed] = ACTIONS(1806), - [aux_sym_preproc_if_token1] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1804), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1806), - [aux_sym_preproc_def_token1] = ACTIONS(1806), - [anon_sym__Atomic] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [sym_primitive_type] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [anon_sym___attribute__] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [692] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1834), - [anon_sym_union] = ACTIONS(1834), - [anon_sym_unsigned] = ACTIONS(1834), - [anon_sym_restrict] = ACTIONS(1834), - [anon_sym_short] = ACTIONS(1834), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_volatile] = ACTIONS(1834), - [anon_sym_register] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1834), - [sym_preproc_directive] = ACTIONS(1834), - [anon_sym_signed] = ACTIONS(1834), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [anon_sym_long] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_const] = ACTIONS(1834), - [anon_sym_struct] = ACTIONS(1834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1834), - [aux_sym_preproc_def_token1] = ACTIONS(1834), - [anon_sym__Atomic] = ACTIONS(1834), - [anon_sym_auto] = ACTIONS(1834), - [sym_primitive_type] = ACTIONS(1834), - [anon_sym_inline] = ACTIONS(1834), - [anon_sym___attribute__] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(703), + [sym_do_statement] = STATE(703), + [sym_for_statement] = STATE(703), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(703), + [sym_return_statement] = STATE(703), + [sym_break_statement] = STATE(703), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(703), + [sym_while_statement] = STATE(703), + [sym_continue_statement] = STATE(703), + [sym_goto_statement] = STATE(703), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(703), + [sym_expression_statement] = STATE(703), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [693] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsigned] = ACTIONS(1840), - [anon_sym_restrict] = ACTIONS(1840), - [anon_sym_short] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_volatile] = ACTIONS(1840), - [anon_sym_register] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [sym_identifier] = ACTIONS(1840), - [aux_sym_preproc_if_token2] = ACTIONS(1840), - [sym_preproc_directive] = ACTIONS(1840), - [anon_sym_signed] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1840), - [anon_sym_long] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [anon_sym__Atomic] = ACTIONS(1840), - [anon_sym_auto] = ACTIONS(1840), - [sym_primitive_type] = ACTIONS(1840), - [anon_sym_inline] = ACTIONS(1840), - [anon_sym___attribute__] = ACTIONS(1840), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1949), + [anon_sym_union] = ACTIONS(1949), + [anon_sym_unsigned] = ACTIONS(1949), + [anon_sym_restrict] = ACTIONS(1949), + [anon_sym_short] = ACTIONS(1949), + [anon_sym_static] = ACTIONS(1949), + [anon_sym_volatile] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [aux_sym_preproc_if_token2] = ACTIONS(1949), + [sym_preproc_directive] = ACTIONS(1949), + [anon_sym_signed] = ACTIONS(1949), + [aux_sym_preproc_if_token1] = ACTIONS(1949), + [anon_sym_long] = ACTIONS(1949), + [anon_sym_enum] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [anon_sym_struct] = ACTIONS(1949), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1949), + [aux_sym_preproc_def_token1] = ACTIONS(1949), + [anon_sym__Atomic] = ACTIONS(1949), + [anon_sym_auto] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1949), + [anon_sym_inline] = ACTIONS(1949), + [anon_sym___attribute__] = ACTIONS(1949), + [sym_identifier] = ACTIONS(1949), }, [694] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsigned] = ACTIONS(1844), - [anon_sym_restrict] = ACTIONS(1844), - [anon_sym_short] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_volatile] = ACTIONS(1844), - [anon_sym_register] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [sym_identifier] = ACTIONS(1844), - [aux_sym_preproc_if_token2] = ACTIONS(1844), - [sym_preproc_directive] = ACTIONS(1844), - [anon_sym_signed] = ACTIONS(1844), - [aux_sym_preproc_if_token1] = ACTIONS(1844), - [anon_sym_long] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1844), - [aux_sym_preproc_def_token1] = ACTIONS(1844), - [anon_sym__Atomic] = ACTIONS(1844), - [anon_sym_auto] = ACTIONS(1844), - [sym_primitive_type] = ACTIONS(1844), - [anon_sym_inline] = ACTIONS(1844), - [anon_sym___attribute__] = ACTIONS(1844), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_unsigned] = ACTIONS(1953), + [anon_sym_restrict] = ACTIONS(1953), + [anon_sym_short] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_volatile] = ACTIONS(1953), + [anon_sym_register] = ACTIONS(1953), + [anon_sym_extern] = ACTIONS(1953), + [aux_sym_preproc_if_token2] = ACTIONS(1953), + [sym_preproc_directive] = ACTIONS(1953), + [anon_sym_signed] = ACTIONS(1953), + [aux_sym_preproc_if_token1] = ACTIONS(1953), + [anon_sym_long] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1953), + [aux_sym_preproc_def_token1] = ACTIONS(1953), + [anon_sym__Atomic] = ACTIONS(1953), + [anon_sym_auto] = ACTIONS(1953), + [sym_primitive_type] = ACTIONS(1953), + [anon_sym_inline] = ACTIONS(1953), + [anon_sym___attribute__] = ACTIONS(1953), + [sym_identifier] = ACTIONS(1953), }, [695] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1850), - [anon_sym_union] = ACTIONS(1850), - [anon_sym_unsigned] = ACTIONS(1850), - [anon_sym_restrict] = ACTIONS(1850), - [anon_sym_short] = ACTIONS(1850), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_volatile] = ACTIONS(1850), - [anon_sym_register] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1850), - [aux_sym_preproc_if_token2] = ACTIONS(1850), - [sym_preproc_directive] = ACTIONS(1850), - [anon_sym_signed] = ACTIONS(1850), - [aux_sym_preproc_if_token1] = ACTIONS(1850), - [anon_sym_long] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1850), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1850), - [aux_sym_preproc_def_token1] = ACTIONS(1850), - [anon_sym__Atomic] = ACTIONS(1850), - [anon_sym_auto] = ACTIONS(1850), - [sym_primitive_type] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [anon_sym___attribute__] = ACTIONS(1850), - [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1963), + [anon_sym_union] = ACTIONS(1963), + [anon_sym_unsigned] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym_short] = ACTIONS(1963), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [aux_sym_preproc_if_token2] = ACTIONS(1963), + [sym_preproc_directive] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1963), + [aux_sym_preproc_if_token1] = ACTIONS(1963), + [anon_sym_long] = ACTIONS(1963), + [anon_sym_enum] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_struct] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1963), + [aux_sym_preproc_def_token1] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [sym_primitive_type] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [sym_identifier] = ACTIONS(1963), }, [696] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsigned] = ACTIONS(1872), - [anon_sym_restrict] = ACTIONS(1872), - [anon_sym_short] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_volatile] = ACTIONS(1872), - [anon_sym_register] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1872), - [aux_sym_preproc_if_token2] = ACTIONS(1872), - [sym_preproc_directive] = ACTIONS(1872), - [anon_sym_signed] = ACTIONS(1872), - [aux_sym_preproc_if_token1] = ACTIONS(1872), - [anon_sym_long] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), - [aux_sym_preproc_def_token1] = ACTIONS(1872), - [anon_sym__Atomic] = ACTIONS(1872), - [anon_sym_auto] = ACTIONS(1872), - [sym_primitive_type] = ACTIONS(1872), - [anon_sym_inline] = ACTIONS(1872), - [anon_sym___attribute__] = ACTIONS(1872), - [sym_comment] = ACTIONS(3), + [sym_true] = ACTIONS(1986), + [anon_sym_restrict] = ACTIONS(1986), + [sym_null] = ACTIONS(1986), + [anon_sym_goto] = ACTIONS(1986), + [aux_sym_preproc_if_token2] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1986), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), + [sym_number_literal] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_signed] = ACTIONS(1986), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), + [aux_sym_preproc_elif_token1] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1986), + [anon_sym_unsigned] = ACTIONS(1986), + [anon_sym_short] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [aux_sym_preproc_else_token1] = ACTIONS(1986), + [sym_preproc_directive] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1988), + [aux_sym_preproc_if_token1] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_L_DQUOTE] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1986), + [sym_primitive_type] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_switch] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [sym_false] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1988), + [aux_sym_preproc_def_token1] = ACTIONS(1986), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_auto] = ACTIONS(1986), + [anon_sym_inline] = ACTIONS(1986), }, [697] = { - [sym_false] = ACTIONS(1941), - [anon_sym_restrict] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1941), - [anon_sym_goto] = ACTIONS(1941), - [aux_sym_preproc_if_token2] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [anon_sym_typedef] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym__Atomic] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1941), - [sym_number_literal] = ACTIONS(1943), - [anon_sym_volatile] = ACTIONS(1941), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1941), - [anon_sym_signed] = ACTIONS(1941), - [anon_sym_long] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1941), - [aux_sym_preproc_elif_token1] = ACTIONS(1941), - [anon_sym_L] = ACTIONS(1941), - [anon_sym___attribute__] = ACTIONS(1941), - [anon_sym_sizeof] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1941), - [anon_sym_unsigned] = ACTIONS(1941), - [anon_sym_short] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [aux_sym_preproc_else_token1] = ACTIONS(1941), - [sym_preproc_directive] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1943), - [aux_sym_preproc_if_token1] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [anon_sym_LPAREN2] = ACTIONS(1943), - [sym_primitive_type] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_BANG] = ACTIONS(1943), - [aux_sym_preproc_include_token1] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_static] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_switch] = ACTIONS(1941), - [sym_true] = ACTIONS(1941), - [anon_sym_enum] = ACTIONS(1941), - [sym_null] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1943), - [aux_sym_preproc_def_token1] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_auto] = ACTIONS(1941), - [anon_sym_inline] = ACTIONS(1941), - }, - [698] = { - [sym_false] = ACTIONS(1945), - [anon_sym_restrict] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1945), - [anon_sym_goto] = ACTIONS(1945), - [aux_sym_preproc_if_token2] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [anon_sym_typedef] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym__Atomic] = ACTIONS(1945), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1945), - [sym_number_literal] = ACTIONS(1947), - [anon_sym_volatile] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_PLUS_PLUS] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_signed] = ACTIONS(1945), - [anon_sym_long] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1945), - [aux_sym_preproc_elif_token1] = ACTIONS(1945), - [anon_sym_L] = ACTIONS(1945), - [anon_sym___attribute__] = ACTIONS(1945), - [anon_sym_sizeof] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1945), - [anon_sym_unsigned] = ACTIONS(1945), - [anon_sym_short] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [aux_sym_preproc_else_token1] = ACTIONS(1945), - [sym_preproc_directive] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1947), - [aux_sym_preproc_if_token1] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [anon_sym_LPAREN2] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1945), - [sym_primitive_type] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1947), - [aux_sym_preproc_include_token1] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_switch] = ACTIONS(1945), - [sym_true] = ACTIONS(1945), - [anon_sym_enum] = ACTIONS(1945), - [sym_null] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1947), - [aux_sym_preproc_def_token1] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1945), - [anon_sym_auto] = ACTIONS(1945), - [anon_sym_inline] = ACTIONS(1945), - }, - [699] = { - [sym_if_statement] = STATE(708), - [sym_do_statement] = STATE(708), - [sym_for_statement] = STATE(708), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(708), - [sym_return_statement] = STATE(708), - [sym_break_statement] = STATE(708), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(708), - [sym_while_statement] = STATE(708), - [sym_continue_statement] = STATE(708), - [sym_goto_statement] = STATE(708), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(708), - [sym_expression_statement] = STATE(708), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [700] = { - [sym_if_statement] = STATE(709), - [sym_do_statement] = STATE(709), - [sym_for_statement] = STATE(709), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(709), - [sym_return_statement] = STATE(709), - [sym_break_statement] = STATE(709), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(709), - [sym_while_statement] = STATE(709), - [sym_continue_statement] = STATE(709), - [sym_goto_statement] = STATE(709), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(709), - [sym_expression_statement] = STATE(709), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [701] = { - [sym_if_statement] = STATE(711), - [sym_do_statement] = STATE(711), - [sym_for_statement] = STATE(711), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(711), - [sym_return_statement] = STATE(711), - [sym_break_statement] = STATE(711), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(711), - [sym_while_statement] = STATE(711), - [sym_continue_statement] = STATE(711), - [sym_goto_statement] = STATE(711), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(711), - [sym_expression_statement] = STATE(711), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [702] = { - [sym_false] = ACTIONS(1959), - [anon_sym_restrict] = ACTIONS(1959), - [sym_identifier] = ACTIONS(1959), - [anon_sym_goto] = ACTIONS(1959), - [aux_sym_preproc_if_token2] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [anon_sym_typedef] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym__Atomic] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1959), - [sym_number_literal] = ACTIONS(1961), - [anon_sym_volatile] = ACTIONS(1959), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_signed] = ACTIONS(1959), - [anon_sym_long] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1959), - [aux_sym_preproc_elif_token1] = ACTIONS(1959), - [anon_sym_L] = ACTIONS(1959), - [anon_sym___attribute__] = ACTIONS(1959), - [anon_sym_sizeof] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_union] = ACTIONS(1959), - [anon_sym_unsigned] = ACTIONS(1959), - [anon_sym_short] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [aux_sym_preproc_else_token1] = ACTIONS(1959), - [sym_preproc_directive] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), - [aux_sym_preproc_if_token1] = ACTIONS(1959), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_LPAREN2] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1959), - [sym_primitive_type] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1961), - [aux_sym_preproc_include_token1] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_static] = ACTIONS(1959), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_switch] = ACTIONS(1959), - [sym_true] = ACTIONS(1959), - [anon_sym_enum] = ACTIONS(1959), - [sym_null] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [aux_sym_preproc_def_token1] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_auto] = ACTIONS(1959), - [anon_sym_inline] = ACTIONS(1959), - }, - [703] = { - [sym_if_statement] = STATE(714), - [sym_do_statement] = STATE(714), - [sym_for_statement] = STATE(714), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(714), - [sym_return_statement] = STATE(714), - [sym_break_statement] = STATE(714), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(714), - [sym_while_statement] = STATE(714), - [sym_continue_statement] = STATE(714), - [sym_goto_statement] = STATE(714), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(714), - [sym_expression_statement] = STATE(714), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [704] = { - [sym_if_statement] = STATE(715), - [sym_do_statement] = STATE(715), - [sym_for_statement] = STATE(715), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(715), - [sym_return_statement] = STATE(715), - [sym_break_statement] = STATE(715), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(715), - [sym_while_statement] = STATE(715), - [sym_continue_statement] = STATE(715), - [sym_goto_statement] = STATE(715), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(715), - [sym_expression_statement] = STATE(715), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [705] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_unsigned] = ACTIONS(1990), + [sym_true] = ACTIONS(1990), [anon_sym_restrict] = ACTIONS(1990), - [anon_sym_short] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [aux_sym_preproc_if_token2] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1992), [anon_sym_volatile] = ACTIONS(1990), - [anon_sym_register] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1992), [anon_sym_extern] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1990), - [aux_sym_preproc_if_token2] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_signed] = ACTIONS(1990), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), + [aux_sym_preproc_elif_token1] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [aux_sym_preproc_else_token1] = ACTIONS(1990), [sym_preproc_directive] = ACTIONS(1990), - [anon_sym_signed] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1992), [aux_sym_preproc_if_token1] = ACTIONS(1990), - [anon_sym_long] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1992), + [anon_sym_L_DQUOTE] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_switch] = ACTIONS(1990), [anon_sym_enum] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_struct] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), + [sym_false] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1992), [aux_sym_preproc_def_token1] = ACTIONS(1990), - [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_PLUS] = ACTIONS(1990), [anon_sym_auto] = ACTIONS(1990), - [sym_primitive_type] = ACTIONS(1990), [anon_sym_inline] = ACTIONS(1990), - [anon_sym___attribute__] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), }, - [706] = { + [698] = { + [sym_if_statement] = STATE(705), + [sym_do_statement] = STATE(705), + [sym_for_statement] = STATE(705), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(705), + [sym_return_statement] = STATE(705), + [sym_break_statement] = STATE(705), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(705), + [sym_while_statement] = STATE(705), + [sym_continue_statement] = STATE(705), + [sym_goto_statement] = STATE(705), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(705), + [sym_expression_statement] = STATE(705), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [699] = { + [sym_true] = ACTIONS(1994), + [anon_sym_restrict] = ACTIONS(1994), + [sym_null] = ACTIONS(1994), + [anon_sym_goto] = ACTIONS(1994), + [aux_sym_preproc_if_token2] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1994), [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), + [sym_number_literal] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1994), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), + [aux_sym_preproc_elif_token1] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1996), [anon_sym_union] = ACTIONS(1994), [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), [anon_sym_short] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), + [anon_sym_do] = ACTIONS(1994), + [aux_sym_preproc_else_token1] = ACTIONS(1994), [sym_preproc_directive] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1996), [aux_sym_preproc_if_token1] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1996), + [anon_sym_L_DQUOTE] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1994), + [sym_primitive_type] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1994), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_switch] = ACTIONS(1994), [anon_sym_enum] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), + [sym_false] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1996), [aux_sym_preproc_def_token1] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), + [anon_sym_PLUS] = ACTIONS(1994), [anon_sym_auto] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), [anon_sym_inline] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), }, - [707] = { + [700] = { + [sym_if_statement] = STATE(706), + [sym_do_statement] = STATE(706), + [sym_for_statement] = STATE(706), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(706), + [sym_return_statement] = STATE(706), + [sym_break_statement] = STATE(706), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(706), + [sym_while_statement] = STATE(706), + [sym_continue_statement] = STATE(706), + [sym_goto_statement] = STATE(706), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(706), + [sym_expression_statement] = STATE(706), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [701] = { + [sym_if_statement] = STATE(707), + [sym_do_statement] = STATE(707), + [sym_for_statement] = STATE(707), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(707), + [sym_return_statement] = STATE(707), + [sym_break_statement] = STATE(707), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(707), + [sym_while_statement] = STATE(707), + [sym_continue_statement] = STATE(707), + [sym_goto_statement] = STATE(707), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(707), + [sym_expression_statement] = STATE(707), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [702] = { + [sym_true] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [sym_null] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [aux_sym_preproc_if_token2] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym__Atomic] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [aux_sym_preproc_elif_token1] = ACTIONS(2000), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [aux_sym_preproc_else_token1] = ACTIONS(2000), + [sym_preproc_directive] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_else] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [aux_sym_preproc_include_token1] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2002), + [aux_sym_preproc_def_token1] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), + }, + [703] = { + [sym_true] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym__Atomic] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2004), [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym_sizeof] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), [anon_sym_union] = ACTIONS(2004), [anon_sym_unsigned] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), [anon_sym_short] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2004), - [aux_sym_preproc_if_token2] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), [sym_preproc_directive] = ACTIONS(2004), - [anon_sym_signed] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2006), [aux_sym_preproc_if_token1] = ACTIONS(2004), - [anon_sym_long] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2006), + [aux_sym_preproc_include_token1] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), [anon_sym_enum] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2006), [aux_sym_preproc_def_token1] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), [anon_sym_auto] = ACTIONS(2004), - [sym_primitive_type] = ACTIONS(2004), [anon_sym_inline] = ACTIONS(2004), - [anon_sym___attribute__] = ACTIONS(2004), - [sym_comment] = ACTIONS(3), + }, + [704] = { + [sym_if_statement] = STATE(709), + [sym_do_statement] = STATE(709), + [sym_for_statement] = STATE(709), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(709), + [sym_return_statement] = STATE(709), + [sym_break_statement] = STATE(709), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(709), + [sym_while_statement] = STATE(709), + [sym_continue_statement] = STATE(709), + [sym_goto_statement] = STATE(709), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [705] = { + [sym_true] = ACTIONS(2117), + [anon_sym_restrict] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [anon_sym_goto] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_typedef] = ACTIONS(2117), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym__Atomic] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2117), + [sym_number_literal] = ACTIONS(2119), + [anon_sym_volatile] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_signed] = ACTIONS(2117), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2117), + [aux_sym_preproc_elif_token1] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2119), + [anon_sym___attribute__] = ACTIONS(2117), + [anon_sym_sizeof] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2117), + [anon_sym_unsigned] = ACTIONS(2117), + [anon_sym_short] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [aux_sym_preproc_else_token1] = ACTIONS(2117), + [sym_preproc_directive] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2119), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_L_DQUOTE] = ACTIONS(2119), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_else] = ACTIONS(2117), + [sym_primitive_type] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2119), + [aux_sym_preproc_include_token1] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2119), + [anon_sym_register] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2119), + [aux_sym_preproc_def_token1] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_auto] = ACTIONS(2117), + [anon_sym_inline] = ACTIONS(2117), + }, + [706] = { + [sym_true] = ACTIONS(2121), + [anon_sym_restrict] = ACTIONS(2121), + [sym_null] = ACTIONS(2121), + [anon_sym_goto] = ACTIONS(2121), + [aux_sym_preproc_if_token2] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_typedef] = ACTIONS(2121), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym__Atomic] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [sym_number_literal] = ACTIONS(2123), + [anon_sym_volatile] = ACTIONS(2121), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_signed] = ACTIONS(2121), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_elif_token1] = ACTIONS(2121), + [anon_sym_L_SQUOTE] = ACTIONS(2123), + [anon_sym___attribute__] = ACTIONS(2121), + [anon_sym_sizeof] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_unsigned] = ACTIONS(2121), + [anon_sym_short] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2121), + [sym_preproc_directive] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(2121), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_LPAREN2] = ACTIONS(2123), + [anon_sym_else] = ACTIONS(2121), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2123), + [aux_sym_preproc_include_token1] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2123), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [sym_false] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2123), + [aux_sym_preproc_def_token1] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_auto] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), + }, + [707] = { + [sym_true] = ACTIONS(2125), + [anon_sym_restrict] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [anon_sym_goto] = ACTIONS(2125), + [aux_sym_preproc_if_token2] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_typedef] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym__Atomic] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2125), + [sym_number_literal] = ACTIONS(2127), + [anon_sym_volatile] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_signed] = ACTIONS(2125), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2125), + [aux_sym_preproc_elif_token1] = ACTIONS(2125), + [anon_sym_L_SQUOTE] = ACTIONS(2127), + [anon_sym___attribute__] = ACTIONS(2125), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsigned] = ACTIONS(2125), + [anon_sym_short] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [aux_sym_preproc_else_token1] = ACTIONS(2125), + [sym_preproc_directive] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2127), + [aux_sym_preproc_if_token1] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_L_DQUOTE] = ACTIONS(2127), + [anon_sym_LPAREN2] = ACTIONS(2127), + [anon_sym_else] = ACTIONS(2125), + [sym_primitive_type] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2127), + [aux_sym_preproc_include_token1] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_register] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2127), + [aux_sym_preproc_def_token1] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_auto] = ACTIONS(2125), + [anon_sym_inline] = ACTIONS(2125), }, [708] = { - [sym_false] = ACTIONS(2027), - [anon_sym_restrict] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2027), - [anon_sym_goto] = ACTIONS(2027), - [aux_sym_preproc_if_token2] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [anon_sym_typedef] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym__Atomic] = ACTIONS(2027), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2027), - [sym_number_literal] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2027), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_struct] = ACTIONS(2027), - [anon_sym_signed] = ACTIONS(2027), - [anon_sym_long] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2027), - [aux_sym_preproc_elif_token1] = ACTIONS(2027), - [anon_sym_L] = ACTIONS(2027), - [anon_sym___attribute__] = ACTIONS(2027), - [anon_sym_sizeof] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2027), - [anon_sym_unsigned] = ACTIONS(2027), - [anon_sym_short] = ACTIONS(2027), - [anon_sym_do] = ACTIONS(2027), - [aux_sym_preproc_else_token1] = ACTIONS(2027), - [sym_preproc_directive] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2029), - [aux_sym_preproc_if_token1] = ACTIONS(2027), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_else] = ACTIONS(2027), - [sym_primitive_type] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_BANG] = ACTIONS(2029), - [aux_sym_preproc_include_token1] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_static] = ACTIONS(2027), - [anon_sym_register] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_switch] = ACTIONS(2027), - [sym_true] = ACTIONS(2027), - [anon_sym_enum] = ACTIONS(2027), - [sym_null] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2029), - [aux_sym_preproc_def_token1] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_auto] = ACTIONS(2027), - [anon_sym_inline] = ACTIONS(2027), + [sym_if_statement] = STATE(710), + [sym_do_statement] = STATE(710), + [sym_for_statement] = STATE(710), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(710), + [sym_return_statement] = STATE(710), + [sym_break_statement] = STATE(710), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_char_literal] = STATE(950), + [sym_labeled_statement] = STATE(710), + [sym_while_statement] = STATE(710), + [sym_continue_statement] = STATE(710), + [sym_goto_statement] = STATE(710), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(710), + [sym_expression_statement] = STATE(710), + [anon_sym_LBRACE] = ACTIONS(398), + [sym_true] = ACTIONS(378), + [sym_null] = ACTIONS(378), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_while] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [709] = { - [sym_false] = ACTIONS(2031), - [anon_sym_restrict] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2031), - [anon_sym_goto] = ACTIONS(2031), - [aux_sym_preproc_if_token2] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_typedef] = ACTIONS(2031), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym__Atomic] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2031), - [sym_number_literal] = ACTIONS(2033), - [anon_sym_volatile] = ACTIONS(2031), - [anon_sym_SQUOTE] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_struct] = ACTIONS(2031), - [anon_sym_signed] = ACTIONS(2031), - [anon_sym_long] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2031), - [aux_sym_preproc_elif_token1] = ACTIONS(2031), - [anon_sym_L] = ACTIONS(2031), - [anon_sym___attribute__] = ACTIONS(2031), - [anon_sym_sizeof] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_union] = ACTIONS(2031), - [anon_sym_unsigned] = ACTIONS(2031), - [anon_sym_short] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [aux_sym_preproc_else_token1] = ACTIONS(2031), - [sym_preproc_directive] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2033), - [aux_sym_preproc_if_token1] = ACTIONS(2031), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2031), - [sym_primitive_type] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [aux_sym_preproc_include_token1] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2031), - [anon_sym_STAR] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_switch] = ACTIONS(2031), - [sym_true] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [sym_null] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2033), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_auto] = ACTIONS(2031), - [anon_sym_inline] = ACTIONS(2031), + [sym_true] = ACTIONS(2129), + [anon_sym_restrict] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [anon_sym_goto] = ACTIONS(2129), + [aux_sym_preproc_if_token2] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_typedef] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym__Atomic] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2129), + [sym_number_literal] = ACTIONS(2131), + [anon_sym_volatile] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_signed] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2129), + [aux_sym_preproc_elif_token1] = ACTIONS(2129), + [anon_sym_L_SQUOTE] = ACTIONS(2131), + [anon_sym___attribute__] = ACTIONS(2129), + [anon_sym_sizeof] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsigned] = ACTIONS(2129), + [anon_sym_short] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [aux_sym_preproc_else_token1] = ACTIONS(2129), + [sym_preproc_directive] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2131), + [aux_sym_preproc_if_token1] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_L_DQUOTE] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2129), + [sym_primitive_type] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2131), + [aux_sym_preproc_include_token1] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2131), + [aux_sym_preproc_def_token1] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_auto] = ACTIONS(2129), + [anon_sym_inline] = ACTIONS(2129), }, [710] = { - [sym_if_statement] = STATE(717), - [sym_do_statement] = STATE(717), - [sym_for_statement] = STATE(717), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(717), - [sym_return_statement] = STATE(717), - [sym_break_statement] = STATE(717), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(717), - [sym_while_statement] = STATE(717), - [sym_continue_statement] = STATE(717), - [sym_goto_statement] = STATE(717), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(717), - [sym_expression_statement] = STATE(717), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(2133), + [anon_sym_restrict] = ACTIONS(2133), + [sym_null] = ACTIONS(2133), + [anon_sym_goto] = ACTIONS(2133), + [aux_sym_preproc_if_token2] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_typedef] = ACTIONS(2133), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym__Atomic] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2133), + [sym_number_literal] = ACTIONS(2135), + [anon_sym_volatile] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_signed] = ACTIONS(2133), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2133), + [aux_sym_preproc_elif_token1] = ACTIONS(2133), + [anon_sym_L_SQUOTE] = ACTIONS(2135), + [anon_sym___attribute__] = ACTIONS(2133), + [anon_sym_sizeof] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_unsigned] = ACTIONS(2133), + [anon_sym_short] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [aux_sym_preproc_else_token1] = ACTIONS(2133), + [sym_preproc_directive] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_L_DQUOTE] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_else] = ACTIONS(2133), + [sym_primitive_type] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2135), + [aux_sym_preproc_include_token1] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2135), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_switch] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2135), + [aux_sym_preproc_def_token1] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_auto] = ACTIONS(2133), + [anon_sym_inline] = ACTIONS(2133), }, [711] = { - [sym_false] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [sym_identifier] = ACTIONS(2035), - [anon_sym_goto] = ACTIONS(2035), - [aux_sym_preproc_if_token2] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_typedef] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym__Atomic] = ACTIONS(2035), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2035), - [sym_number_literal] = ACTIONS(2037), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_SQUOTE] = ACTIONS(2037), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_signed] = ACTIONS(2035), - [anon_sym_long] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2035), - [aux_sym_preproc_elif_token1] = ACTIONS(2035), - [anon_sym_L] = ACTIONS(2035), - [anon_sym___attribute__] = ACTIONS(2035), - [anon_sym_sizeof] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_union] = ACTIONS(2035), - [anon_sym_unsigned] = ACTIONS(2035), - [anon_sym_short] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [aux_sym_preproc_else_token1] = ACTIONS(2035), - [sym_preproc_directive] = ACTIONS(2035), - [anon_sym_AMP] = ACTIONS(2037), - [aux_sym_preproc_if_token1] = ACTIONS(2035), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2037), - [anon_sym_LPAREN2] = ACTIONS(2037), - [anon_sym_else] = ACTIONS(2035), - [sym_primitive_type] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [aux_sym_preproc_include_token1] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [sym_true] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [sym_null] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2037), - [aux_sym_preproc_def_token1] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_auto] = ACTIONS(2035), - [anon_sym_inline] = ACTIONS(2035), + [sym_true] = ACTIONS(255), + [anon_sym_restrict] = ACTIONS(255), + [sym_null] = ACTIONS(255), + [anon_sym_goto] = ACTIONS(255), + [aux_sym_preproc_if_token2] = ACTIONS(255), + [anon_sym_const] = ACTIONS(255), + [anon_sym_typedef] = ACTIONS(255), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym__Atomic] = ACTIONS(255), + [sym_identifier] = ACTIONS(255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(255), + [sym_number_literal] = ACTIONS(257), + [anon_sym_volatile] = ACTIONS(255), + [anon_sym_SQUOTE] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_struct] = ACTIONS(255), + [anon_sym_signed] = ACTIONS(255), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(255), + [anon_sym_L_SQUOTE] = ACTIONS(257), + [anon_sym___attribute__] = ACTIONS(255), + [anon_sym_sizeof] = ACTIONS(255), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_union] = ACTIONS(255), + [anon_sym_unsigned] = ACTIONS(255), + [anon_sym_short] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [sym_preproc_directive] = ACTIONS(255), + [anon_sym_AMP] = ACTIONS(257), + [aux_sym_preproc_if_token1] = ACTIONS(255), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_L_DQUOTE] = ACTIONS(257), + [anon_sym_LPAREN2] = ACTIONS(257), + [anon_sym_else] = ACTIONS(255), + [sym_primitive_type] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(257), + [aux_sym_preproc_include_token1] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_static] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(257), + [anon_sym_register] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_enum] = ACTIONS(255), + [sym_false] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(257), + [aux_sym_preproc_def_token1] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_auto] = ACTIONS(255), + [anon_sym_inline] = ACTIONS(255), }, [712] = { - [sym_if_statement] = STATE(718), - [sym_do_statement] = STATE(718), - [sym_for_statement] = STATE(718), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(718), - [sym_return_statement] = STATE(718), - [sym_break_statement] = STATE(718), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(718), - [sym_while_statement] = STATE(718), - [sym_continue_statement] = STATE(718), - [sym_goto_statement] = STATE(718), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(336), + [anon_sym_restrict] = ACTIONS(336), + [sym_null] = ACTIONS(336), + [anon_sym_goto] = ACTIONS(336), + [aux_sym_preproc_if_token2] = ACTIONS(336), + [anon_sym_const] = ACTIONS(336), + [anon_sym_typedef] = ACTIONS(336), + [anon_sym_DASH_DASH] = ACTIONS(338), + [anon_sym__Atomic] = ACTIONS(336), + [sym_identifier] = ACTIONS(336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(336), + [sym_number_literal] = ACTIONS(338), + [anon_sym_volatile] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(338), + [anon_sym_extern] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(338), + [anon_sym_struct] = ACTIONS(336), + [anon_sym_signed] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(336), + [anon_sym_while] = ACTIONS(336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(336), + [anon_sym_L_SQUOTE] = ACTIONS(338), + [anon_sym___attribute__] = ACTIONS(336), + [anon_sym_sizeof] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_union] = ACTIONS(336), + [anon_sym_unsigned] = ACTIONS(336), + [anon_sym_short] = ACTIONS(336), + [anon_sym_do] = ACTIONS(336), + [sym_preproc_directive] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(338), + [aux_sym_preproc_if_token1] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_L_DQUOTE] = ACTIONS(338), + [anon_sym_LPAREN2] = ACTIONS(338), + [anon_sym_else] = ACTIONS(336), + [sym_primitive_type] = ACTIONS(336), + [anon_sym_for] = ACTIONS(336), + [anon_sym_break] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [aux_sym_preproc_include_token1] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_static] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_register] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_if] = ACTIONS(336), + [anon_sym_switch] = ACTIONS(336), + [anon_sym_enum] = ACTIONS(336), + [sym_false] = ACTIONS(336), + [anon_sym_return] = ACTIONS(336), + [anon_sym_continue] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(338), + [aux_sym_preproc_def_token1] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_auto] = ACTIONS(336), + [anon_sym_inline] = ACTIONS(336), }, [713] = { - [sym_if_statement] = STATE(719), - [sym_do_statement] = STATE(719), - [sym_for_statement] = STATE(719), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(719), - [sym_return_statement] = STATE(719), - [sym_break_statement] = STATE(719), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(719), - [sym_while_statement] = STATE(719), - [sym_continue_statement] = STATE(719), - [sym_goto_statement] = STATE(719), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(719), - [sym_expression_statement] = STATE(719), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(368), + [anon_sym_restrict] = ACTIONS(368), + [sym_null] = ACTIONS(368), + [anon_sym_goto] = ACTIONS(368), + [aux_sym_preproc_if_token2] = ACTIONS(368), + [anon_sym_const] = ACTIONS(368), + [anon_sym_typedef] = ACTIONS(368), + [anon_sym_DASH_DASH] = ACTIONS(370), + [anon_sym__Atomic] = ACTIONS(368), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(368), + [sym_number_literal] = ACTIONS(370), + [anon_sym_volatile] = ACTIONS(368), + [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_extern] = ACTIONS(368), + [anon_sym_PLUS_PLUS] = ACTIONS(370), + [anon_sym_struct] = ACTIONS(368), + [anon_sym_signed] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(368), + [anon_sym_while] = ACTIONS(368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(368), + [aux_sym_preproc_elif_token1] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(370), + [anon_sym___attribute__] = ACTIONS(368), + [anon_sym_sizeof] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_union] = ACTIONS(368), + [anon_sym_unsigned] = ACTIONS(368), + [anon_sym_short] = ACTIONS(368), + [anon_sym_do] = ACTIONS(368), + [aux_sym_preproc_else_token1] = ACTIONS(368), + [sym_preproc_directive] = ACTIONS(368), + [anon_sym_AMP] = ACTIONS(370), + [aux_sym_preproc_if_token1] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_L_DQUOTE] = ACTIONS(370), + [anon_sym_LPAREN2] = ACTIONS(370), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_for] = ACTIONS(368), + [anon_sym_break] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [aux_sym_preproc_include_token1] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_static] = ACTIONS(368), + [anon_sym_DQUOTE] = ACTIONS(370), + [anon_sym_register] = ACTIONS(368), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_if] = ACTIONS(368), + [anon_sym_switch] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(368), + [sym_false] = ACTIONS(368), + [anon_sym_return] = ACTIONS(368), + [anon_sym_continue] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_auto] = ACTIONS(368), + [anon_sym_inline] = ACTIONS(368), }, [714] = { - [sym_false] = ACTIONS(2041), - [anon_sym_restrict] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2041), - [anon_sym_goto] = ACTIONS(2041), - [aux_sym_preproc_if_token2] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_typedef] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym__Atomic] = ACTIONS(2041), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2041), - [sym_number_literal] = ACTIONS(2043), - [anon_sym_volatile] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_signed] = ACTIONS(2041), - [anon_sym_long] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2041), - [aux_sym_preproc_elif_token1] = ACTIONS(2041), - [anon_sym_L] = ACTIONS(2041), - [anon_sym___attribute__] = ACTIONS(2041), - [anon_sym_sizeof] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_unsigned] = ACTIONS(2041), - [anon_sym_short] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [aux_sym_preproc_else_token1] = ACTIONS(2041), - [sym_preproc_directive] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2043), - [aux_sym_preproc_if_token1] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_LPAREN2] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2041), - [sym_primitive_type] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [aux_sym_preproc_include_token1] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_register] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [sym_null] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2043), - [aux_sym_preproc_def_token1] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_auto] = ACTIONS(2041), - [anon_sym_inline] = ACTIONS(2041), + [sym_true] = ACTIONS(465), + [anon_sym_restrict] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [anon_sym_goto] = ACTIONS(465), + [aux_sym_preproc_if_token2] = ACTIONS(465), + [anon_sym_const] = ACTIONS(465), + [anon_sym_typedef] = ACTIONS(465), + [anon_sym_DASH_DASH] = ACTIONS(467), + [anon_sym__Atomic] = ACTIONS(465), + [sym_identifier] = ACTIONS(465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(465), + [sym_number_literal] = ACTIONS(467), + [anon_sym_volatile] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_extern] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(467), + [anon_sym_struct] = ACTIONS(465), + [anon_sym_signed] = ACTIONS(465), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(465), + [anon_sym_while] = ACTIONS(465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(465), + [aux_sym_preproc_elif_token1] = ACTIONS(465), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym___attribute__] = ACTIONS(465), + [anon_sym_sizeof] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_union] = ACTIONS(465), + [anon_sym_unsigned] = ACTIONS(465), + [anon_sym_short] = ACTIONS(465), + [anon_sym_do] = ACTIONS(465), + [aux_sym_preproc_else_token1] = ACTIONS(465), + [sym_preproc_directive] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(467), + [aux_sym_preproc_if_token1] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(467), + [anon_sym_LPAREN2] = ACTIONS(467), + [sym_primitive_type] = ACTIONS(465), + [anon_sym_for] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [aux_sym_preproc_include_token1] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_static] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_register] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(465), + [anon_sym_switch] = ACTIONS(465), + [anon_sym_enum] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [anon_sym_return] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(467), + [aux_sym_preproc_def_token1] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_auto] = ACTIONS(465), + [anon_sym_inline] = ACTIONS(465), }, [715] = { - [sym_false] = ACTIONS(2045), - [anon_sym_restrict] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [aux_sym_preproc_if_token2] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_typedef] = ACTIONS(2045), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym__Atomic] = ACTIONS(2045), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2045), - [sym_number_literal] = ACTIONS(2047), - [anon_sym_volatile] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_signed] = ACTIONS(2045), - [anon_sym_long] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2045), - [aux_sym_preproc_elif_token1] = ACTIONS(2045), - [anon_sym_L] = ACTIONS(2045), - [anon_sym___attribute__] = ACTIONS(2045), - [anon_sym_sizeof] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_union] = ACTIONS(2045), - [anon_sym_unsigned] = ACTIONS(2045), - [anon_sym_short] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [aux_sym_preproc_else_token1] = ACTIONS(2045), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2047), - [aux_sym_preproc_if_token1] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2047), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2045), - [sym_primitive_type] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [aux_sym_preproc_include_token1] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_register] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [sym_null] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2047), - [aux_sym_preproc_def_token1] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_auto] = ACTIONS(2045), - [anon_sym_inline] = ACTIONS(2045), + [sym_if_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [716] = { - [sym_if_statement] = STATE(721), - [sym_do_statement] = STATE(721), - [sym_for_statement] = STATE(721), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(721), - [sym_return_statement] = STATE(721), - [sym_break_statement] = STATE(721), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(721), - [sym_while_statement] = STATE(721), - [sym_continue_statement] = STATE(721), - [sym_goto_statement] = STATE(721), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(721), - [sym_expression_statement] = STATE(721), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(487), + [anon_sym_restrict] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [anon_sym_goto] = ACTIONS(487), + [aux_sym_preproc_if_token2] = ACTIONS(487), + [anon_sym_const] = ACTIONS(487), + [anon_sym_typedef] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym__Atomic] = ACTIONS(487), + [sym_identifier] = ACTIONS(487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [sym_number_literal] = ACTIONS(489), + [anon_sym_volatile] = ACTIONS(487), + [anon_sym_SQUOTE] = ACTIONS(489), + [anon_sym_extern] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_signed] = ACTIONS(487), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [anon_sym_L_SQUOTE] = ACTIONS(489), + [anon_sym___attribute__] = ACTIONS(487), + [anon_sym_sizeof] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_union] = ACTIONS(487), + [anon_sym_unsigned] = ACTIONS(487), + [anon_sym_short] = ACTIONS(487), + [anon_sym_do] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(489), + [aux_sym_preproc_if_token1] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_L_DQUOTE] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(489), + [anon_sym_else] = ACTIONS(487), + [sym_primitive_type] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(489), + [aux_sym_preproc_include_token1] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_DQUOTE] = ACTIONS(489), + [anon_sym_register] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_if] = ACTIONS(487), + [anon_sym_switch] = ACTIONS(487), + [anon_sym_enum] = ACTIONS(487), + [sym_false] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [aux_sym_preproc_def_token1] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_auto] = ACTIONS(487), + [anon_sym_inline] = ACTIONS(487), }, [717] = { - [sym_false] = ACTIONS(2161), - [anon_sym_restrict] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2161), - [anon_sym_goto] = ACTIONS(2161), - [aux_sym_preproc_if_token2] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_typedef] = ACTIONS(2161), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym__Atomic] = ACTIONS(2161), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2161), - [sym_number_literal] = ACTIONS(2163), - [anon_sym_volatile] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_extern] = ACTIONS(2161), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_signed] = ACTIONS(2161), - [anon_sym_long] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2161), - [aux_sym_preproc_elif_token1] = ACTIONS(2161), - [anon_sym_L] = ACTIONS(2161), - [anon_sym___attribute__] = ACTIONS(2161), - [anon_sym_sizeof] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsigned] = ACTIONS(2161), - [anon_sym_short] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [aux_sym_preproc_else_token1] = ACTIONS(2161), - [sym_preproc_directive] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2163), - [aux_sym_preproc_if_token1] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2161), - [sym_primitive_type] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2163), - [aux_sym_preproc_include_token1] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_register] = ACTIONS(2161), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_switch] = ACTIONS(2161), - [sym_true] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [sym_null] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2163), - [aux_sym_preproc_def_token1] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_auto] = ACTIONS(2161), - [anon_sym_inline] = ACTIONS(2161), + [sym_true] = ACTIONS(493), + [anon_sym_restrict] = ACTIONS(493), + [sym_null] = ACTIONS(493), + [anon_sym_goto] = ACTIONS(493), + [aux_sym_preproc_if_token2] = ACTIONS(493), + [anon_sym_const] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(493), + [anon_sym_DASH_DASH] = ACTIONS(495), + [anon_sym__Atomic] = ACTIONS(493), + [sym_identifier] = ACTIONS(493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(493), + [sym_number_literal] = ACTIONS(495), + [anon_sym_volatile] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(495), + [anon_sym_struct] = ACTIONS(493), + [anon_sym_signed] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(493), + [anon_sym_while] = ACTIONS(493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(493), + [anon_sym_L_SQUOTE] = ACTIONS(495), + [anon_sym___attribute__] = ACTIONS(493), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(495), + [anon_sym_union] = ACTIONS(493), + [anon_sym_unsigned] = ACTIONS(493), + [anon_sym_short] = ACTIONS(493), + [anon_sym_do] = ACTIONS(493), + [sym_preproc_directive] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(495), + [aux_sym_preproc_if_token1] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_L_DQUOTE] = ACTIONS(495), + [anon_sym_LPAREN2] = ACTIONS(495), + [sym_primitive_type] = ACTIONS(493), + [anon_sym_for] = ACTIONS(493), + [anon_sym_break] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(495), + [aux_sym_preproc_include_token1] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_static] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [anon_sym_register] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_if] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(493), + [anon_sym_enum] = ACTIONS(493), + [sym_false] = ACTIONS(493), + [anon_sym_return] = ACTIONS(493), + [anon_sym_continue] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(495), + [aux_sym_preproc_def_token1] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_auto] = ACTIONS(493), + [anon_sym_inline] = ACTIONS(493), }, [718] = { - [sym_false] = ACTIONS(2165), - [anon_sym_restrict] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2165), - [anon_sym_goto] = ACTIONS(2165), - [aux_sym_preproc_if_token2] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_typedef] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym__Atomic] = ACTIONS(2165), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2165), - [sym_number_literal] = ACTIONS(2167), - [anon_sym_volatile] = ACTIONS(2165), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_signed] = ACTIONS(2165), - [anon_sym_long] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2165), - [aux_sym_preproc_elif_token1] = ACTIONS(2165), - [anon_sym_L] = ACTIONS(2165), - [anon_sym___attribute__] = ACTIONS(2165), - [anon_sym_sizeof] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2165), - [anon_sym_unsigned] = ACTIONS(2165), - [anon_sym_short] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [aux_sym_preproc_else_token1] = ACTIONS(2165), - [sym_preproc_directive] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2167), - [aux_sym_preproc_if_token1] = ACTIONS(2165), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2167), - [aux_sym_preproc_include_token1] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_switch] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [sym_null] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2167), - [aux_sym_preproc_def_token1] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_auto] = ACTIONS(2165), - [anon_sym_inline] = ACTIONS(2165), + [sym_if_statement] = STATE(734), + [sym_do_statement] = STATE(734), + [sym_for_statement] = STATE(734), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(734), + [sym_return_statement] = STATE(734), + [sym_break_statement] = STATE(734), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(734), + [sym_while_statement] = STATE(734), + [sym_continue_statement] = STATE(734), + [sym_goto_statement] = STATE(734), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(734), + [sym_expression_statement] = STATE(734), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [719] = { - [sym_false] = ACTIONS(2169), - [anon_sym_restrict] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2169), - [anon_sym_goto] = ACTIONS(2169), - [aux_sym_preproc_if_token2] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_typedef] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2169), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2169), - [sym_number_literal] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_signed] = ACTIONS(2169), - [anon_sym_long] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2169), - [aux_sym_preproc_elif_token1] = ACTIONS(2169), - [anon_sym_L] = ACTIONS(2169), - [anon_sym___attribute__] = ACTIONS(2169), - [anon_sym_sizeof] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_unsigned] = ACTIONS(2169), - [anon_sym_short] = ACTIONS(2169), - [anon_sym_do] = ACTIONS(2169), - [aux_sym_preproc_else_token1] = ACTIONS(2169), - [sym_preproc_directive] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2171), - [aux_sym_preproc_if_token1] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_LPAREN2] = ACTIONS(2171), - [anon_sym_else] = ACTIONS(2169), - [sym_primitive_type] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2171), - [aux_sym_preproc_include_token1] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_register] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_switch] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [sym_null] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2171), - [aux_sym_preproc_def_token1] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_auto] = ACTIONS(2169), - [anon_sym_inline] = ACTIONS(2169), + [sym_true] = ACTIONS(529), + [anon_sym_restrict] = ACTIONS(529), + [sym_null] = ACTIONS(529), + [anon_sym_goto] = ACTIONS(529), + [aux_sym_preproc_if_token2] = ACTIONS(529), + [anon_sym_const] = ACTIONS(529), + [anon_sym_typedef] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(531), + [anon_sym__Atomic] = ACTIONS(529), + [sym_identifier] = ACTIONS(529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(529), + [sym_number_literal] = ACTIONS(531), + [anon_sym_volatile] = ACTIONS(529), + [anon_sym_SQUOTE] = ACTIONS(531), + [anon_sym_extern] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(531), + [anon_sym_struct] = ACTIONS(529), + [anon_sym_signed] = ACTIONS(529), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(529), + [anon_sym_while] = ACTIONS(529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(529), + [anon_sym_L_SQUOTE] = ACTIONS(531), + [anon_sym___attribute__] = ACTIONS(529), + [anon_sym_sizeof] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(531), + [anon_sym_union] = ACTIONS(529), + [anon_sym_unsigned] = ACTIONS(529), + [anon_sym_short] = ACTIONS(529), + [anon_sym_do] = ACTIONS(529), + [sym_preproc_directive] = ACTIONS(529), + [anon_sym_AMP] = ACTIONS(531), + [aux_sym_preproc_if_token1] = ACTIONS(529), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_L_DQUOTE] = ACTIONS(531), + [anon_sym_LPAREN2] = ACTIONS(531), + [anon_sym_else] = ACTIONS(529), + [sym_primitive_type] = ACTIONS(529), + [anon_sym_for] = ACTIONS(529), + [anon_sym_break] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(531), + [aux_sym_preproc_include_token1] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_static] = ACTIONS(529), + [anon_sym_DQUOTE] = ACTIONS(531), + [anon_sym_register] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_if] = ACTIONS(529), + [anon_sym_switch] = ACTIONS(529), + [anon_sym_enum] = ACTIONS(529), + [sym_false] = ACTIONS(529), + [anon_sym_return] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(529), + [anon_sym_SEMI] = ACTIONS(531), + [aux_sym_preproc_def_token1] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_auto] = ACTIONS(529), + [anon_sym_inline] = ACTIONS(529), }, [720] = { - [sym_if_statement] = STATE(722), - [sym_do_statement] = STATE(722), - [sym_for_statement] = STATE(722), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(722), - [sym_return_statement] = STATE(722), - [sym_break_statement] = STATE(722), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_labeled_statement] = STATE(722), - [sym_while_statement] = STATE(722), - [sym_continue_statement] = STATE(722), - [sym_goto_statement] = STATE(722), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(722), - [sym_expression_statement] = STATE(722), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_false] = ACTIONS(396), - [sym_identifier] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(737), + [sym_do_statement] = STATE(737), + [sym_for_statement] = STATE(737), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(737), + [sym_return_statement] = STATE(737), + [sym_break_statement] = STATE(737), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(737), + [sym_while_statement] = STATE(737), + [sym_continue_statement] = STATE(737), + [sym_goto_statement] = STATE(737), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(737), + [sym_expression_statement] = STATE(737), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [721] = { - [sym_false] = ACTIONS(2173), - [anon_sym_restrict] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2173), - [anon_sym_goto] = ACTIONS(2173), - [aux_sym_preproc_if_token2] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_typedef] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym__Atomic] = ACTIONS(2173), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2173), - [sym_number_literal] = ACTIONS(2175), - [anon_sym_volatile] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_signed] = ACTIONS(2173), - [anon_sym_long] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2173), - [aux_sym_preproc_elif_token1] = ACTIONS(2173), - [anon_sym_L] = ACTIONS(2173), - [anon_sym___attribute__] = ACTIONS(2173), - [anon_sym_sizeof] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_unsigned] = ACTIONS(2173), - [anon_sym_short] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [aux_sym_preproc_else_token1] = ACTIONS(2173), - [sym_preproc_directive] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2175), - [aux_sym_preproc_if_token1] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2173), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2175), - [aux_sym_preproc_include_token1] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_register] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2175), - [aux_sym_preproc_def_token1] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_auto] = ACTIONS(2173), - [anon_sym_inline] = ACTIONS(2173), + [sym_true] = ACTIONS(535), + [anon_sym_restrict] = ACTIONS(535), + [sym_null] = ACTIONS(535), + [anon_sym_goto] = ACTIONS(535), + [aux_sym_preproc_if_token2] = ACTIONS(535), + [anon_sym_const] = ACTIONS(535), + [anon_sym_typedef] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym__Atomic] = ACTIONS(535), + [sym_identifier] = ACTIONS(535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(535), + [sym_number_literal] = ACTIONS(537), + [anon_sym_volatile] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [anon_sym_extern] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_struct] = ACTIONS(535), + [anon_sym_signed] = ACTIONS(535), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(535), + [anon_sym_L_SQUOTE] = ACTIONS(537), + [anon_sym___attribute__] = ACTIONS(535), + [anon_sym_sizeof] = ACTIONS(535), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_union] = ACTIONS(535), + [anon_sym_unsigned] = ACTIONS(535), + [anon_sym_short] = ACTIONS(535), + [anon_sym_do] = ACTIONS(535), + [sym_preproc_directive] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(537), + [aux_sym_preproc_if_token1] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_L_DQUOTE] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(537), + [anon_sym_else] = ACTIONS(535), + [sym_primitive_type] = ACTIONS(535), + [anon_sym_for] = ACTIONS(535), + [anon_sym_break] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(537), + [aux_sym_preproc_include_token1] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_static] = ACTIONS(535), + [anon_sym_DQUOTE] = ACTIONS(537), + [anon_sym_register] = ACTIONS(535), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(535), + [anon_sym_enum] = ACTIONS(535), + [sym_false] = ACTIONS(535), + [anon_sym_return] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(535), + [anon_sym_SEMI] = ACTIONS(537), + [aux_sym_preproc_def_token1] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(535), + [anon_sym_auto] = ACTIONS(535), + [anon_sym_inline] = ACTIONS(535), }, [722] = { - [sym_false] = ACTIONS(2177), - [anon_sym_restrict] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2177), - [anon_sym_goto] = ACTIONS(2177), - [aux_sym_preproc_if_token2] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_typedef] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym__Atomic] = ACTIONS(2177), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2177), - [sym_number_literal] = ACTIONS(2179), - [anon_sym_volatile] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_extern] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_signed] = ACTIONS(2177), - [anon_sym_long] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2177), - [aux_sym_preproc_elif_token1] = ACTIONS(2177), - [anon_sym_L] = ACTIONS(2177), - [anon_sym___attribute__] = ACTIONS(2177), - [anon_sym_sizeof] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsigned] = ACTIONS(2177), - [anon_sym_short] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [aux_sym_preproc_else_token1] = ACTIONS(2177), - [sym_preproc_directive] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2179), - [aux_sym_preproc_if_token1] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(2179), - [anon_sym_LPAREN2] = ACTIONS(2179), - [anon_sym_else] = ACTIONS(2177), - [sym_primitive_type] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2179), - [aux_sym_preproc_include_token1] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_register] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [sym_null] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_SEMI] = ACTIONS(2179), - [aux_sym_preproc_def_token1] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_auto] = ACTIONS(2177), - [anon_sym_inline] = ACTIONS(2177), + [sym_true] = ACTIONS(605), + [anon_sym_restrict] = ACTIONS(605), + [sym_null] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [aux_sym_preproc_if_token2] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_typedef] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym__Atomic] = ACTIONS(605), + [sym_identifier] = ACTIONS(605), + [aux_sym_preproc_ifdef_token1] = ACTIONS(605), + [sym_number_literal] = ACTIONS(607), + [anon_sym_volatile] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(605), + [anon_sym_signed] = ACTIONS(605), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(605), + [anon_sym_while] = ACTIONS(605), + [aux_sym_preproc_ifdef_token2] = ACTIONS(605), + [anon_sym_L_SQUOTE] = ACTIONS(607), + [anon_sym___attribute__] = ACTIONS(605), + [anon_sym_sizeof] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_union] = ACTIONS(605), + [anon_sym_unsigned] = ACTIONS(605), + [anon_sym_short] = ACTIONS(605), + [anon_sym_do] = ACTIONS(605), + [sym_preproc_directive] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(607), + [aux_sym_preproc_if_token1] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_L_DQUOTE] = ACTIONS(607), + [anon_sym_LPAREN2] = ACTIONS(607), + [anon_sym_else] = ACTIONS(605), + [sym_primitive_type] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(607), + [aux_sym_preproc_include_token1] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_static] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_register] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_if] = ACTIONS(605), + [anon_sym_switch] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_SEMI] = ACTIONS(607), + [aux_sym_preproc_def_token1] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_auto] = ACTIONS(605), + [anon_sym_inline] = ACTIONS(605), }, [723] = { - [sym_false] = ACTIONS(257), - [anon_sym_restrict] = ACTIONS(257), - [sym_identifier] = ACTIONS(257), - [anon_sym_goto] = ACTIONS(257), - [aux_sym_preproc_if_token2] = ACTIONS(257), - [anon_sym_const] = ACTIONS(257), - [anon_sym_typedef] = ACTIONS(257), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym__Atomic] = ACTIONS(257), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(257), - [sym_number_literal] = ACTIONS(259), - [anon_sym_volatile] = ACTIONS(257), - [anon_sym_SQUOTE] = ACTIONS(259), - [anon_sym_extern] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_struct] = ACTIONS(257), - [anon_sym_signed] = ACTIONS(257), - [anon_sym_long] = ACTIONS(257), - [anon_sym_while] = ACTIONS(257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(257), - [anon_sym_L] = ACTIONS(257), - [anon_sym___attribute__] = ACTIONS(257), - [anon_sym_sizeof] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_union] = ACTIONS(257), - [anon_sym_unsigned] = ACTIONS(257), - [anon_sym_short] = ACTIONS(257), - [anon_sym_do] = ACTIONS(257), - [sym_preproc_directive] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(259), - [aux_sym_preproc_if_token1] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(259), - [anon_sym_LPAREN2] = ACTIONS(259), - [anon_sym_else] = ACTIONS(257), - [sym_primitive_type] = ACTIONS(257), - [anon_sym_for] = ACTIONS(257), - [anon_sym_break] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(259), - [aux_sym_preproc_include_token1] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_static] = ACTIONS(257), - [anon_sym_register] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(259), - [anon_sym_if] = ACTIONS(257), - [anon_sym_switch] = ACTIONS(257), - [sym_true] = ACTIONS(257), - [anon_sym_enum] = ACTIONS(257), - [sym_null] = ACTIONS(257), - [anon_sym_return] = ACTIONS(257), - [anon_sym_continue] = ACTIONS(257), - [anon_sym_SEMI] = ACTIONS(259), - [aux_sym_preproc_def_token1] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_auto] = ACTIONS(257), - [anon_sym_inline] = ACTIONS(257), + [sym_true] = ACTIONS(621), + [anon_sym_restrict] = ACTIONS(621), + [sym_null] = ACTIONS(621), + [anon_sym_goto] = ACTIONS(621), + [aux_sym_preproc_if_token2] = ACTIONS(621), + [anon_sym_const] = ACTIONS(621), + [anon_sym_typedef] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym__Atomic] = ACTIONS(621), + [sym_identifier] = ACTIONS(621), + [aux_sym_preproc_ifdef_token1] = ACTIONS(621), + [sym_number_literal] = ACTIONS(623), + [anon_sym_volatile] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_extern] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_struct] = ACTIONS(621), + [anon_sym_signed] = ACTIONS(621), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(621), + [anon_sym_while] = ACTIONS(621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(621), + [anon_sym_L_SQUOTE] = ACTIONS(623), + [anon_sym___attribute__] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_union] = ACTIONS(621), + [anon_sym_unsigned] = ACTIONS(621), + [anon_sym_short] = ACTIONS(621), + [anon_sym_do] = ACTIONS(621), + [sym_preproc_directive] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(623), + [aux_sym_preproc_if_token1] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_L_DQUOTE] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(623), + [sym_primitive_type] = ACTIONS(621), + [anon_sym_for] = ACTIONS(621), + [anon_sym_break] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [aux_sym_preproc_include_token1] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_static] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_register] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_if] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(621), + [anon_sym_enum] = ACTIONS(621), + [sym_false] = ACTIONS(621), + [anon_sym_return] = ACTIONS(621), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(623), + [aux_sym_preproc_def_token1] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_auto] = ACTIONS(621), + [anon_sym_inline] = ACTIONS(621), }, [724] = { - [sym_false] = ACTIONS(348), - [anon_sym_restrict] = ACTIONS(348), - [sym_identifier] = ACTIONS(348), - [anon_sym_goto] = ACTIONS(348), - [aux_sym_preproc_if_token2] = ACTIONS(348), - [anon_sym_const] = ACTIONS(348), - [anon_sym_typedef] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym__Atomic] = ACTIONS(348), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(348), - [sym_number_literal] = ACTIONS(350), - [anon_sym_volatile] = ACTIONS(348), - [anon_sym_SQUOTE] = ACTIONS(350), - [anon_sym_extern] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_struct] = ACTIONS(348), - [anon_sym_signed] = ACTIONS(348), - [anon_sym_long] = ACTIONS(348), - [anon_sym_while] = ACTIONS(348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(348), - [anon_sym_L] = ACTIONS(348), - [anon_sym___attribute__] = ACTIONS(348), - [anon_sym_sizeof] = ACTIONS(348), - [anon_sym_LBRACE] = ACTIONS(350), - [anon_sym_union] = ACTIONS(348), - [anon_sym_unsigned] = ACTIONS(348), - [anon_sym_short] = ACTIONS(348), - [anon_sym_do] = ACTIONS(348), - [sym_preproc_directive] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(350), - [aux_sym_preproc_if_token1] = ACTIONS(348), - [anon_sym_TILDE] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(350), - [anon_sym_LPAREN2] = ACTIONS(350), - [anon_sym_else] = ACTIONS(348), - [sym_primitive_type] = ACTIONS(348), - [anon_sym_for] = ACTIONS(348), - [anon_sym_break] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(350), - [aux_sym_preproc_include_token1] = ACTIONS(348), - [anon_sym_DASH] = ACTIONS(348), - [anon_sym_static] = ACTIONS(348), - [anon_sym_register] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_if] = ACTIONS(348), - [anon_sym_switch] = ACTIONS(348), - [sym_true] = ACTIONS(348), - [anon_sym_enum] = ACTIONS(348), - [sym_null] = ACTIONS(348), - [anon_sym_return] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [aux_sym_preproc_def_token1] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(348), - [anon_sym_auto] = ACTIONS(348), - [anon_sym_inline] = ACTIONS(348), + [sym_if_statement] = STATE(724), + [sym_preproc_def] = STATE(724), + [sym_preproc_function_def] = STATE(724), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(724), + [sym_declaration] = STATE(724), + [sym_do_statement] = STATE(724), + [sym_for_statement] = STATE(724), + [aux_sym_translation_unit_repeat1] = STATE(724), + [sym_expression_statement] = STATE(724), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(1031), + [sym_union_specifier] = STATE(1031), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(724), + [sym_return_statement] = STATE(724), + [sym_preproc_call] = STATE(724), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_type_definition] = STATE(724), + [sym_cast_expression] = STATE(1029), + [sym__declaration_specifiers] = STATE(1190), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_break_statement] = STATE(724), + [sym__empty_declaration] = STATE(724), + [sym_sized_type_specifier] = STATE(1031), + [sym_enum_specifier] = STATE(1031), + [sym_labeled_statement] = STATE(724), + [sym_preproc_include] = STATE(724), + [sym_preproc_if] = STATE(724), + [sym_preproc_ifdef] = STATE(724), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(724), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(1031), + [sym_while_statement] = STATE(724), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(724), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(724), + [sym_struct_specifier] = STATE(1031), + [sym_goto_statement] = STATE(724), + [sym_true] = ACTIONS(2377), + [anon_sym_restrict] = ACTIONS(665), + [sym_null] = ACTIONS(2377), + [anon_sym_goto] = ACTIONS(2380), + [aux_sym_preproc_if_token2] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(665), + [anon_sym_typedef] = ACTIONS(2383), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym__Atomic] = ACTIONS(665), + [sym_identifier] = ACTIONS(2386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2389), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_volatile] = ACTIONS(665), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(692), + [anon_sym_signed] = ACTIONS(695), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(695), + [anon_sym_while] = ACTIONS(2398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2389), + [anon_sym_L_SQUOTE] = ACTIONS(686), + [anon_sym___attribute__] = ACTIONS(701), + [anon_sym_sizeof] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(710), + [anon_sym_unsigned] = ACTIONS(695), + [anon_sym_short] = ACTIONS(695), + [anon_sym_do] = ACTIONS(2404), + [sym_preproc_directive] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(719), + [aux_sym_preproc_if_token1] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_L_DQUOTE] = ACTIONS(728), + [anon_sym_LPAREN2] = ACTIONS(731), + [sym_primitive_type] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(725), + [aux_sym_preproc_include_token1] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_static] = ACTIONS(749), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_register] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_switch] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(758), + [sym_false] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2431), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2437), + [aux_sym_preproc_def_token1] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(746), + [anon_sym_auto] = ACTIONS(749), + [anon_sym_inline] = ACTIONS(749), }, [725] = { - [sym_if_statement] = STATE(739), - [sym_do_statement] = STATE(739), - [sym_for_statement] = STATE(739), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(739), - [sym_return_statement] = STATE(739), - [sym_break_statement] = STATE(739), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(739), - [sym_while_statement] = STATE(739), - [sym_continue_statement] = STATE(739), - [sym_goto_statement] = STATE(739), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(739), - [sym_expression_statement] = STATE(739), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(792), + [anon_sym_restrict] = ACTIONS(792), + [sym_null] = ACTIONS(792), + [anon_sym_goto] = ACTIONS(792), + [aux_sym_preproc_if_token2] = ACTIONS(792), + [anon_sym_const] = ACTIONS(792), + [anon_sym_typedef] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym__Atomic] = ACTIONS(792), + [sym_identifier] = ACTIONS(792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(792), + [sym_number_literal] = ACTIONS(794), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(794), + [anon_sym_extern] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_struct] = ACTIONS(792), + [anon_sym_signed] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(792), + [anon_sym_while] = ACTIONS(792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(792), + [anon_sym_L_SQUOTE] = ACTIONS(794), + [anon_sym___attribute__] = ACTIONS(792), + [anon_sym_sizeof] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(794), + [anon_sym_union] = ACTIONS(792), + [anon_sym_unsigned] = ACTIONS(792), + [anon_sym_short] = ACTIONS(792), + [anon_sym_do] = ACTIONS(792), + [sym_preproc_directive] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [aux_sym_preproc_if_token1] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(794), + [anon_sym_L_DQUOTE] = ACTIONS(794), + [anon_sym_LPAREN2] = ACTIONS(794), + [anon_sym_else] = ACTIONS(792), + [sym_primitive_type] = ACTIONS(792), + [anon_sym_for] = ACTIONS(792), + [anon_sym_break] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(794), + [aux_sym_preproc_include_token1] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_static] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_register] = ACTIONS(792), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_if] = ACTIONS(792), + [anon_sym_switch] = ACTIONS(792), + [anon_sym_enum] = ACTIONS(792), + [sym_false] = ACTIONS(792), + [anon_sym_return] = ACTIONS(792), + [anon_sym_continue] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(794), + [aux_sym_preproc_def_token1] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_auto] = ACTIONS(792), + [anon_sym_inline] = ACTIONS(792), }, [726] = { - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(2425), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(143), + [sym_true] = ACTIONS(822), + [anon_sym_restrict] = ACTIONS(822), + [sym_null] = ACTIONS(822), + [anon_sym_goto] = ACTIONS(822), + [aux_sym_preproc_if_token2] = ACTIONS(822), + [anon_sym_const] = ACTIONS(822), + [anon_sym_typedef] = ACTIONS(822), + [anon_sym_DASH_DASH] = ACTIONS(824), + [anon_sym__Atomic] = ACTIONS(822), + [sym_identifier] = ACTIONS(822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(822), + [sym_number_literal] = ACTIONS(824), + [anon_sym_volatile] = ACTIONS(822), + [anon_sym_SQUOTE] = ACTIONS(824), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_struct] = ACTIONS(822), + [anon_sym_signed] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(822), + [anon_sym_L_SQUOTE] = ACTIONS(824), + [anon_sym___attribute__] = ACTIONS(822), + [anon_sym_sizeof] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_union] = ACTIONS(822), + [anon_sym_unsigned] = ACTIONS(822), + [anon_sym_short] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [sym_preproc_directive] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [aux_sym_preproc_if_token1] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_L_DQUOTE] = ACTIONS(824), + [anon_sym_LPAREN2] = ACTIONS(824), + [anon_sym_else] = ACTIONS(822), + [sym_primitive_type] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(824), + [aux_sym_preproc_include_token1] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_register] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_if] = ACTIONS(822), + [anon_sym_switch] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [sym_false] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(824), + [aux_sym_preproc_def_token1] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_auto] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(822), }, [727] = { - [sym_false] = ACTIONS(388), - [anon_sym_restrict] = ACTIONS(388), - [sym_identifier] = ACTIONS(388), - [anon_sym_goto] = ACTIONS(388), - [aux_sym_preproc_if_token2] = ACTIONS(388), - [anon_sym_const] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(386), - [anon_sym__Atomic] = ACTIONS(388), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [sym_number_literal] = ACTIONS(386), - [anon_sym_volatile] = ACTIONS(388), - [anon_sym_SQUOTE] = ACTIONS(386), - [anon_sym_extern] = ACTIONS(388), - [anon_sym_PLUS_PLUS] = ACTIONS(386), - [anon_sym_struct] = ACTIONS(388), - [anon_sym_signed] = ACTIONS(388), - [anon_sym_long] = ACTIONS(388), - [anon_sym_while] = ACTIONS(388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(388), - [anon_sym_L] = ACTIONS(388), - [anon_sym___attribute__] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_union] = ACTIONS(388), - [anon_sym_unsigned] = ACTIONS(388), - [anon_sym_short] = ACTIONS(388), - [anon_sym_do] = ACTIONS(388), - [aux_sym_preproc_else_token1] = ACTIONS(388), - [sym_preproc_directive] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(386), - [aux_sym_preproc_if_token1] = ACTIONS(388), - [anon_sym_TILDE] = ACTIONS(386), - [anon_sym_DQUOTE] = ACTIONS(386), - [anon_sym_LPAREN2] = ACTIONS(386), - [sym_primitive_type] = ACTIONS(388), - [anon_sym_for] = ACTIONS(388), - [anon_sym_break] = ACTIONS(388), - [anon_sym_BANG] = ACTIONS(386), - [aux_sym_preproc_include_token1] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_static] = ACTIONS(388), - [anon_sym_register] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_if] = ACTIONS(388), - [anon_sym_switch] = ACTIONS(388), - [sym_true] = ACTIONS(388), - [anon_sym_enum] = ACTIONS(388), - [sym_null] = ACTIONS(388), - [anon_sym_return] = ACTIONS(388), - [anon_sym_continue] = ACTIONS(388), - [anon_sym_SEMI] = ACTIONS(386), - [aux_sym_preproc_def_token1] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_auto] = ACTIONS(388), - [anon_sym_inline] = ACTIONS(388), + [sym_true] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [sym_null] = ACTIONS(826), + [anon_sym_goto] = ACTIONS(826), + [aux_sym_preproc_if_token2] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_typedef] = ACTIONS(826), + [anon_sym_DASH_DASH] = ACTIONS(828), + [anon_sym__Atomic] = ACTIONS(826), + [sym_identifier] = ACTIONS(826), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), + [sym_number_literal] = ACTIONS(828), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_struct] = ACTIONS(826), + [anon_sym_signed] = ACTIONS(826), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(826), + [anon_sym_L_SQUOTE] = ACTIONS(828), + [anon_sym___attribute__] = ACTIONS(826), + [anon_sym_sizeof] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsigned] = ACTIONS(826), + [anon_sym_short] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [aux_sym_preproc_else_token1] = ACTIONS(826), + [sym_preproc_directive] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(828), + [aux_sym_preproc_if_token1] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(828), + [anon_sym_L_DQUOTE] = ACTIONS(828), + [anon_sym_LPAREN2] = ACTIONS(828), + [sym_primitive_type] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(828), + [aux_sym_preproc_include_token1] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_register] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_if] = ACTIONS(826), + [anon_sym_switch] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [sym_false] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(828), + [aux_sym_preproc_def_token1] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_auto] = ACTIONS(826), + [anon_sym_inline] = ACTIONS(826), }, [728] = { - [sym_false] = ACTIONS(483), - [anon_sym_restrict] = ACTIONS(483), - [sym_identifier] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(483), - [aux_sym_preproc_if_token2] = ACTIONS(483), - [anon_sym_const] = ACTIONS(483), - [anon_sym_typedef] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym__Atomic] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(483), - [sym_number_literal] = ACTIONS(485), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_SQUOTE] = ACTIONS(485), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_signed] = ACTIONS(483), - [anon_sym_long] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(483), - [aux_sym_preproc_elif_token1] = ACTIONS(483), - [anon_sym_L] = ACTIONS(483), - [anon_sym___attribute__] = ACTIONS(483), - [anon_sym_sizeof] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_union] = ACTIONS(483), - [anon_sym_unsigned] = ACTIONS(483), - [anon_sym_short] = ACTIONS(483), - [anon_sym_do] = ACTIONS(483), - [aux_sym_preproc_else_token1] = ACTIONS(483), - [sym_preproc_directive] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(485), - [aux_sym_preproc_if_token1] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_DQUOTE] = ACTIONS(485), - [anon_sym_LPAREN2] = ACTIONS(485), - [sym_primitive_type] = ACTIONS(483), - [anon_sym_for] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_BANG] = ACTIONS(485), - [aux_sym_preproc_include_token1] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_register] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(485), - [anon_sym_if] = ACTIONS(483), - [anon_sym_switch] = ACTIONS(483), - [sym_true] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [sym_null] = ACTIONS(483), - [anon_sym_return] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_SEMI] = ACTIONS(485), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_auto] = ACTIONS(483), - [anon_sym_inline] = ACTIONS(483), + [sym_true] = ACTIONS(830), + [anon_sym_restrict] = ACTIONS(830), + [sym_null] = ACTIONS(830), + [anon_sym_goto] = ACTIONS(830), + [aux_sym_preproc_if_token2] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_typedef] = ACTIONS(830), + [anon_sym_DASH_DASH] = ACTIONS(832), + [anon_sym__Atomic] = ACTIONS(830), + [sym_identifier] = ACTIONS(830), + [aux_sym_preproc_ifdef_token1] = ACTIONS(830), + [sym_number_literal] = ACTIONS(832), + [anon_sym_volatile] = ACTIONS(830), + [anon_sym_SQUOTE] = ACTIONS(832), + [anon_sym_extern] = ACTIONS(830), + [anon_sym_PLUS_PLUS] = ACTIONS(832), + [anon_sym_struct] = ACTIONS(830), + [anon_sym_signed] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [aux_sym_preproc_ifdef_token2] = ACTIONS(830), + [anon_sym_L_SQUOTE] = ACTIONS(832), + [anon_sym___attribute__] = ACTIONS(830), + [anon_sym_sizeof] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_union] = ACTIONS(830), + [anon_sym_unsigned] = ACTIONS(830), + [anon_sym_short] = ACTIONS(830), + [anon_sym_do] = ACTIONS(830), + [sym_preproc_directive] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [aux_sym_preproc_if_token1] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(832), + [anon_sym_L_DQUOTE] = ACTIONS(832), + [anon_sym_LPAREN2] = ACTIONS(832), + [sym_primitive_type] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(832), + [aux_sym_preproc_include_token1] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_register] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(832), + [anon_sym_if] = ACTIONS(830), + [anon_sym_switch] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [sym_false] = ACTIONS(830), + [anon_sym_return] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(832), + [aux_sym_preproc_def_token1] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_auto] = ACTIONS(830), + [anon_sym_inline] = ACTIONS(830), }, [729] = { - [sym_false] = ACTIONS(499), - [anon_sym_restrict] = ACTIONS(499), - [sym_identifier] = ACTIONS(499), - [anon_sym_goto] = ACTIONS(499), - [aux_sym_preproc_if_token2] = ACTIONS(499), - [anon_sym_const] = ACTIONS(499), - [anon_sym_typedef] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym__Atomic] = ACTIONS(499), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(499), - [sym_number_literal] = ACTIONS(501), - [anon_sym_volatile] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(501), - [anon_sym_extern] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_struct] = ACTIONS(499), - [anon_sym_signed] = ACTIONS(499), - [anon_sym_long] = ACTIONS(499), - [anon_sym_while] = ACTIONS(499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(499), - [anon_sym_L] = ACTIONS(499), - [anon_sym___attribute__] = ACTIONS(499), - [anon_sym_sizeof] = ACTIONS(499), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_union] = ACTIONS(499), - [anon_sym_unsigned] = ACTIONS(499), - [anon_sym_short] = ACTIONS(499), - [anon_sym_do] = ACTIONS(499), - [sym_preproc_directive] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [aux_sym_preproc_if_token1] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_LPAREN2] = ACTIONS(501), - [anon_sym_else] = ACTIONS(499), - [sym_primitive_type] = ACTIONS(499), - [anon_sym_for] = ACTIONS(499), - [anon_sym_break] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(501), - [aux_sym_preproc_include_token1] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_static] = ACTIONS(499), - [anon_sym_register] = ACTIONS(499), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_if] = ACTIONS(499), - [anon_sym_switch] = ACTIONS(499), - [sym_true] = ACTIONS(499), - [anon_sym_enum] = ACTIONS(499), - [sym_null] = ACTIONS(499), - [anon_sym_return] = ACTIONS(499), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(501), - [aux_sym_preproc_def_token1] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_auto] = ACTIONS(499), - [anon_sym_inline] = ACTIONS(499), + [sym_true] = ACTIONS(892), + [anon_sym_restrict] = ACTIONS(892), + [sym_null] = ACTIONS(892), + [anon_sym_goto] = ACTIONS(892), + [anon_sym_const] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(892), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(892), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(892), + [sym_number_literal] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(892), + [anon_sym_signed] = ACTIONS(892), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(892), + [anon_sym_while] = ACTIONS(892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_union] = ACTIONS(892), + [anon_sym_unsigned] = ACTIONS(892), + [anon_sym_short] = ACTIONS(892), + [anon_sym_do] = ACTIONS(892), + [sym_preproc_directive] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_L_DQUOTE] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [anon_sym_else] = ACTIONS(892), + [sym_primitive_type] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_break] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_static] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(894), + [anon_sym_register] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_if] = ACTIONS(892), + [anon_sym_switch] = ACTIONS(892), + [anon_sym_enum] = ACTIONS(892), + [sym_false] = ACTIONS(892), + [anon_sym_return] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(892), + [anon_sym_auto] = ACTIONS(892), + [anon_sym_inline] = ACTIONS(892), }, [730] = { - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_union] = ACTIONS(507), - [sym_true] = ACTIONS(507), - [anon_sym_unsigned] = ACTIONS(507), - [anon_sym_restrict] = ACTIONS(507), - [anon_sym_short] = ACTIONS(507), - [sym_false] = ACTIONS(507), - [sym_null] = ACTIONS(507), - [sym_identifier] = ACTIONS(507), - [anon_sym_do] = ACTIONS(507), - [anon_sym_goto] = ACTIONS(507), - [aux_sym_preproc_if_token2] = ACTIONS(507), - [sym_preproc_directive] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(505), - [aux_sym_preproc_if_token1] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_const] = ACTIONS(507), - [anon_sym_LPAREN2] = ACTIONS(505), - [anon_sym_typedef] = ACTIONS(507), - [anon_sym_DASH_DASH] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym__Atomic] = ACTIONS(507), - [sym_primitive_type] = ACTIONS(507), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(507), - [anon_sym_break] = ACTIONS(507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(505), - [aux_sym_preproc_include_token1] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_static] = ACTIONS(507), - [anon_sym_volatile] = ACTIONS(507), - [anon_sym_register] = ACTIONS(507), - [anon_sym_extern] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(505), - [anon_sym_if] = ACTIONS(507), - [anon_sym_struct] = ACTIONS(507), - [anon_sym_switch] = ACTIONS(507), - [anon_sym_signed] = ACTIONS(507), - [anon_sym_enum] = ACTIONS(507), - [anon_sym_long] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(505), - [sym_number_literal] = ACTIONS(505), - [anon_sym_return] = ACTIONS(507), - [anon_sym_while] = ACTIONS(507), - [anon_sym_continue] = ACTIONS(507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(505), - [aux_sym_preproc_def_token1] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_auto] = ACTIONS(507), - [anon_sym_L] = ACTIONS(507), - [anon_sym_inline] = ACTIONS(507), - [anon_sym___attribute__] = ACTIONS(507), - [anon_sym_sizeof] = ACTIONS(507), + [sym_true] = ACTIONS(937), + [anon_sym_restrict] = ACTIONS(937), + [sym_null] = ACTIONS(937), + [anon_sym_goto] = ACTIONS(937), + [aux_sym_preproc_if_token2] = ACTIONS(937), + [anon_sym_const] = ACTIONS(937), + [anon_sym_typedef] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym__Atomic] = ACTIONS(937), + [sym_identifier] = ACTIONS(937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(937), + [sym_number_literal] = ACTIONS(939), + [anon_sym_volatile] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(937), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(937), + [anon_sym_signed] = ACTIONS(937), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(937), + [anon_sym_while] = ACTIONS(937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(937), + [aux_sym_preproc_elif_token1] = ACTIONS(937), + [anon_sym_L_SQUOTE] = ACTIONS(939), + [anon_sym___attribute__] = ACTIONS(937), + [anon_sym_sizeof] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_union] = ACTIONS(937), + [anon_sym_unsigned] = ACTIONS(937), + [anon_sym_short] = ACTIONS(937), + [anon_sym_do] = ACTIONS(937), + [aux_sym_preproc_else_token1] = ACTIONS(937), + [sym_preproc_directive] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(939), + [aux_sym_preproc_if_token1] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_L_DQUOTE] = ACTIONS(939), + [anon_sym_LPAREN2] = ACTIONS(939), + [sym_primitive_type] = ACTIONS(937), + [anon_sym_for] = ACTIONS(937), + [anon_sym_break] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(939), + [aux_sym_preproc_include_token1] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_static] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_register] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_if] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_return] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), + [aux_sym_preproc_def_token1] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_auto] = ACTIONS(937), + [anon_sym_inline] = ACTIONS(937), }, [731] = { - [sym_if_statement] = STATE(747), - [sym_do_statement] = STATE(747), - [sym_for_statement] = STATE(747), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(747), - [sym_return_statement] = STATE(747), - [sym_break_statement] = STATE(747), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(747), - [sym_while_statement] = STATE(747), - [sym_continue_statement] = STATE(747), - [sym_goto_statement] = STATE(747), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(747), - [sym_expression_statement] = STATE(747), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(950), + [anon_sym_restrict] = ACTIONS(950), + [sym_null] = ACTIONS(950), + [anon_sym_goto] = ACTIONS(950), + [aux_sym_preproc_if_token2] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(950), + [sym_identifier] = ACTIONS(950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(950), + [sym_number_literal] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(950), + [anon_sym_signed] = ACTIONS(950), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_union] = ACTIONS(950), + [anon_sym_unsigned] = ACTIONS(950), + [anon_sym_short] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [sym_preproc_directive] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_L_DQUOTE] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(952), + [anon_sym_else] = ACTIONS(950), + [sym_primitive_type] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_static] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_if] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(950), + [sym_false] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_auto] = ACTIONS(950), + [anon_sym_inline] = ACTIONS(950), }, [732] = { - [sym_false] = ACTIONS(541), - [anon_sym_restrict] = ACTIONS(541), - [sym_identifier] = ACTIONS(541), - [anon_sym_goto] = ACTIONS(541), - [aux_sym_preproc_if_token2] = ACTIONS(541), - [anon_sym_const] = ACTIONS(541), - [anon_sym_typedef] = ACTIONS(541), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym__Atomic] = ACTIONS(541), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_volatile] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_struct] = ACTIONS(541), - [anon_sym_signed] = ACTIONS(541), - [anon_sym_long] = ACTIONS(541), - [anon_sym_while] = ACTIONS(541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(541), - [anon_sym_L] = ACTIONS(541), - [anon_sym___attribute__] = ACTIONS(541), - [anon_sym_sizeof] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_union] = ACTIONS(541), - [anon_sym_unsigned] = ACTIONS(541), - [anon_sym_short] = ACTIONS(541), - [anon_sym_do] = ACTIONS(541), - [sym_preproc_directive] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [aux_sym_preproc_if_token1] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [anon_sym_LPAREN2] = ACTIONS(543), - [anon_sym_else] = ACTIONS(541), - [sym_primitive_type] = ACTIONS(541), - [anon_sym_for] = ACTIONS(541), - [anon_sym_break] = ACTIONS(541), - [anon_sym_BANG] = ACTIONS(543), - [aux_sym_preproc_include_token1] = ACTIONS(541), - [anon_sym_DASH] = ACTIONS(541), - [anon_sym_static] = ACTIONS(541), - [anon_sym_register] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_if] = ACTIONS(541), - [anon_sym_switch] = ACTIONS(541), - [sym_true] = ACTIONS(541), - [anon_sym_enum] = ACTIONS(541), - [sym_null] = ACTIONS(541), - [anon_sym_return] = ACTIONS(541), - [anon_sym_continue] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(543), - [aux_sym_preproc_def_token1] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(541), - [anon_sym_auto] = ACTIONS(541), - [anon_sym_inline] = ACTIONS(541), + [sym_true] = ACTIONS(970), + [anon_sym_restrict] = ACTIONS(970), + [sym_null] = ACTIONS(970), + [anon_sym_goto] = ACTIONS(970), + [aux_sym_preproc_if_token2] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(970), + [sym_identifier] = ACTIONS(970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(970), + [anon_sym_signed] = ACTIONS(970), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_union] = ACTIONS(970), + [anon_sym_unsigned] = ACTIONS(970), + [anon_sym_short] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [sym_preproc_directive] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(972), + [anon_sym_L_DQUOTE] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_static] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(972), + [anon_sym_register] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_if] = ACTIONS(970), + [anon_sym_switch] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [sym_false] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_auto] = ACTIONS(970), + [anon_sym_inline] = ACTIONS(970), }, [733] = { - [sym_if_statement] = STATE(750), - [sym_do_statement] = STATE(750), - [sym_for_statement] = STATE(750), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(750), - [sym_return_statement] = STATE(750), - [sym_break_statement] = STATE(750), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(750), - [sym_while_statement] = STATE(750), - [sym_continue_statement] = STATE(750), - [sym_goto_statement] = STATE(750), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(750), - [sym_expression_statement] = STATE(750), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym__Atomic] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_union] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(982), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(982), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_static] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(982), + [anon_sym_register] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_if] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), }, [734] = { - [sym_false] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_goto] = ACTIONS(547), - [aux_sym_preproc_if_token2] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym__Atomic] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(547), - [sym_number_literal] = ACTIONS(549), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_SQUOTE] = ACTIONS(549), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_struct] = ACTIONS(547), - [anon_sym_signed] = ACTIONS(547), - [anon_sym_long] = ACTIONS(547), - [anon_sym_while] = ACTIONS(547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(547), - [anon_sym_L] = ACTIONS(547), - [anon_sym___attribute__] = ACTIONS(547), - [anon_sym_sizeof] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_union] = ACTIONS(547), - [anon_sym_unsigned] = ACTIONS(547), - [anon_sym_short] = ACTIONS(547), - [anon_sym_do] = ACTIONS(547), - [sym_preproc_directive] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(549), - [aux_sym_preproc_if_token1] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_LPAREN2] = ACTIONS(549), - [anon_sym_else] = ACTIONS(547), - [sym_primitive_type] = ACTIONS(547), - [anon_sym_for] = ACTIONS(547), - [anon_sym_break] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(549), - [aux_sym_preproc_include_token1] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_if] = ACTIONS(547), - [anon_sym_switch] = ACTIONS(547), - [sym_true] = ACTIONS(547), - [anon_sym_enum] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_return] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(549), - [aux_sym_preproc_def_token1] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_auto] = ACTIONS(547), - [anon_sym_inline] = ACTIONS(547), + [sym_true] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym__Atomic] = ACTIONS(984), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_union] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(986), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_else] = ACTIONS(2443), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(986), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [anon_sym_register] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_if] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), }, [735] = { - [sym_false] = ACTIONS(625), - [anon_sym_restrict] = ACTIONS(625), - [sym_identifier] = ACTIONS(625), - [anon_sym_goto] = ACTIONS(625), - [aux_sym_preproc_if_token2] = ACTIONS(625), - [anon_sym_const] = ACTIONS(625), - [anon_sym_typedef] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym__Atomic] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(625), - [sym_number_literal] = ACTIONS(627), - [anon_sym_volatile] = ACTIONS(625), - [anon_sym_SQUOTE] = ACTIONS(627), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_struct] = ACTIONS(625), - [anon_sym_signed] = ACTIONS(625), - [anon_sym_long] = ACTIONS(625), - [anon_sym_while] = ACTIONS(625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(625), - [anon_sym_L] = ACTIONS(625), - [anon_sym___attribute__] = ACTIONS(625), - [anon_sym_sizeof] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_union] = ACTIONS(625), - [anon_sym_unsigned] = ACTIONS(625), - [anon_sym_short] = ACTIONS(625), - [anon_sym_do] = ACTIONS(625), - [sym_preproc_directive] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(625), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_LPAREN2] = ACTIONS(627), - [anon_sym_else] = ACTIONS(625), - [sym_primitive_type] = ACTIONS(625), - [anon_sym_for] = ACTIONS(625), - [anon_sym_break] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(627), - [aux_sym_preproc_include_token1] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(625), - [anon_sym_static] = ACTIONS(625), - [anon_sym_register] = ACTIONS(625), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_if] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(625), - [sym_true] = ACTIONS(625), - [anon_sym_enum] = ACTIONS(625), - [sym_null] = ACTIONS(625), - [anon_sym_return] = ACTIONS(625), - [anon_sym_continue] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(627), - [aux_sym_preproc_def_token1] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_auto] = ACTIONS(625), - [anon_sym_inline] = ACTIONS(625), + [sym_true] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym__Atomic] = ACTIONS(1028), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1030), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), }, [736] = { - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_union] = ACTIONS(643), - [sym_true] = ACTIONS(643), - [anon_sym_unsigned] = ACTIONS(643), - [anon_sym_restrict] = ACTIONS(643), - [anon_sym_short] = ACTIONS(643), - [sym_false] = ACTIONS(643), - [sym_null] = ACTIONS(643), - [sym_identifier] = ACTIONS(643), - [anon_sym_do] = ACTIONS(643), - [anon_sym_goto] = ACTIONS(643), - [aux_sym_preproc_if_token2] = ACTIONS(643), - [sym_preproc_directive] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(641), - [aux_sym_preproc_if_token1] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_const] = ACTIONS(643), - [anon_sym_LPAREN2] = ACTIONS(641), - [anon_sym_typedef] = ACTIONS(643), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(641), - [anon_sym__Atomic] = ACTIONS(643), - [sym_primitive_type] = ACTIONS(643), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(641), - [aux_sym_preproc_include_token1] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_static] = ACTIONS(643), - [anon_sym_volatile] = ACTIONS(643), - [anon_sym_register] = ACTIONS(643), - [anon_sym_extern] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_if] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_switch] = ACTIONS(643), - [anon_sym_signed] = ACTIONS(643), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_long] = ACTIONS(643), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [sym_number_literal] = ACTIONS(641), - [anon_sym_return] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(643), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_SQUOTE] = ACTIONS(641), - [aux_sym_preproc_def_token1] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_auto] = ACTIONS(643), - [anon_sym_L] = ACTIONS(643), - [anon_sym_inline] = ACTIONS(643), - [anon_sym___attribute__] = ACTIONS(643), - [anon_sym_sizeof] = ACTIONS(643), + [sym_true] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [aux_sym_preproc_if_token2] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym__Atomic] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_sizeof] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), }, [737] = { - [sym_if_statement] = STATE(737), - [sym_preproc_def] = STATE(737), - [sym_preproc_function_def] = STATE(737), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(737), - [sym_declaration] = STATE(737), - [sym_do_statement] = STATE(737), - [sym_for_statement] = STATE(737), - [aux_sym_translation_unit_repeat1] = STATE(737), - [sym_expression_statement] = STATE(737), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(1049), - [sym_union_specifier] = STATE(1049), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(737), - [sym_return_statement] = STATE(737), - [sym_preproc_call] = STATE(737), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_type_definition] = STATE(737), - [sym_cast_expression] = STATE(1047), - [sym__declaration_specifiers] = STATE(1212), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_break_statement] = STATE(737), - [sym__empty_declaration] = STATE(737), - [sym_sized_type_specifier] = STATE(1049), - [sym_enum_specifier] = STATE(1049), - [sym_labeled_statement] = STATE(737), - [sym_preproc_include] = STATE(737), - [sym_preproc_if] = STATE(737), - [sym_preproc_ifdef] = STATE(737), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(737), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(1049), - [sym_while_statement] = STATE(737), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(737), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(737), - [sym_struct_specifier] = STATE(1049), - [sym_goto_statement] = STATE(737), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_union] = ACTIONS(685), - [sym_true] = ACTIONS(2430), - [anon_sym_unsigned] = ACTIONS(691), - [anon_sym_restrict] = ACTIONS(694), - [anon_sym_short] = ACTIONS(691), - [sym_false] = ACTIONS(2430), - [sym_null] = ACTIONS(2430), - [sym_identifier] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2436), - [anon_sym_goto] = ACTIONS(2439), - [aux_sym_preproc_if_token2] = ACTIONS(2350), - [sym_preproc_directive] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(711), - [aux_sym_preproc_if_token1] = ACTIONS(2445), - [anon_sym_TILDE] = ACTIONS(717), - [anon_sym_const] = ACTIONS(694), - [anon_sym_LPAREN2] = ACTIONS(720), - [anon_sym_typedef] = ACTIONS(2448), - [anon_sym_DASH_DASH] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym__Atomic] = ACTIONS(694), - [sym_primitive_type] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2454), - [anon_sym_break] = ACTIONS(2457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(717), - [aux_sym_preproc_include_token1] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_static] = ACTIONS(750), - [anon_sym_volatile] = ACTIONS(694), - [anon_sym_register] = ACTIONS(750), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(759), - [anon_sym_switch] = ACTIONS(2472), - [anon_sym_signed] = ACTIONS(691), - [anon_sym_enum] = ACTIONS(765), - [anon_sym_long] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(726), - [sym_number_literal] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(783), - [aux_sym_preproc_def_token1] = ACTIONS(2490), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_auto] = ACTIONS(750), - [anon_sym_L] = ACTIONS(789), - [anon_sym_inline] = ACTIONS(750), - [anon_sym___attribute__] = ACTIONS(792), - [anon_sym_sizeof] = ACTIONS(795), + [sym_true] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym__Atomic] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), }, [738] = { - [sym_false] = ACTIONS(815), - [anon_sym_restrict] = ACTIONS(815), - [sym_identifier] = ACTIONS(815), - [anon_sym_goto] = ACTIONS(815), - [aux_sym_preproc_if_token2] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_typedef] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym__Atomic] = ACTIONS(815), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(815), - [sym_number_literal] = ACTIONS(817), - [anon_sym_volatile] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_extern] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(815), - [anon_sym_signed] = ACTIONS(815), - [anon_sym_long] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [aux_sym_preproc_ifdef_token2] = ACTIONS(815), - [anon_sym_L] = ACTIONS(815), - [anon_sym___attribute__] = ACTIONS(815), - [anon_sym_sizeof] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_union] = ACTIONS(815), - [anon_sym_unsigned] = ACTIONS(815), - [anon_sym_short] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [sym_preproc_directive] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(817), - [aux_sym_preproc_if_token1] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_LPAREN2] = ACTIONS(817), - [anon_sym_else] = ACTIONS(815), - [sym_primitive_type] = ACTIONS(815), - [anon_sym_for] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [aux_sym_preproc_include_token1] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_static] = ACTIONS(815), - [anon_sym_register] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_if] = ACTIONS(815), - [anon_sym_switch] = ACTIONS(815), - [sym_true] = ACTIONS(815), - [anon_sym_enum] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(817), - [aux_sym_preproc_def_token1] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_auto] = ACTIONS(815), - [anon_sym_inline] = ACTIONS(815), + [sym_true] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [anon_sym_goto] = ACTIONS(1062), + [aux_sym_preproc_if_token2] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), + [sym_number_literal] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1062), + [anon_sym_signed] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [aux_sym_preproc_elif_token1] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_unsigned] = ACTIONS(1062), + [anon_sym_short] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [aux_sym_preproc_else_token1] = ACTIONS(1062), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_L_DQUOTE] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_switch] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_auto] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), }, [739] = { - [sym_false] = ACTIONS(847), - [anon_sym_restrict] = ACTIONS(847), - [sym_identifier] = ACTIONS(847), - [anon_sym_goto] = ACTIONS(847), - [aux_sym_preproc_if_token2] = ACTIONS(847), - [anon_sym_const] = ACTIONS(847), - [anon_sym_typedef] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym__Atomic] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(847), - [sym_number_literal] = ACTIONS(849), - [anon_sym_volatile] = ACTIONS(847), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_extern] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_struct] = ACTIONS(847), - [anon_sym_signed] = ACTIONS(847), - [anon_sym_long] = ACTIONS(847), - [anon_sym_while] = ACTIONS(847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(847), - [anon_sym_L] = ACTIONS(847), - [anon_sym___attribute__] = ACTIONS(847), - [anon_sym_sizeof] = ACTIONS(847), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_union] = ACTIONS(847), - [anon_sym_unsigned] = ACTIONS(847), - [anon_sym_short] = ACTIONS(847), - [anon_sym_do] = ACTIONS(847), - [sym_preproc_directive] = ACTIONS(847), - [anon_sym_AMP] = ACTIONS(849), - [aux_sym_preproc_if_token1] = ACTIONS(847), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(849), - [anon_sym_else] = ACTIONS(847), - [sym_primitive_type] = ACTIONS(847), - [anon_sym_for] = ACTIONS(847), - [anon_sym_break] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(849), - [aux_sym_preproc_include_token1] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_static] = ACTIONS(847), - [anon_sym_register] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_if] = ACTIONS(847), - [anon_sym_switch] = ACTIONS(847), - [sym_true] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(847), - [sym_null] = ACTIONS(847), - [anon_sym_return] = ACTIONS(847), - [anon_sym_continue] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(849), - [aux_sym_preproc_def_token1] = ACTIONS(847), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_auto] = ACTIONS(847), - [anon_sym_inline] = ACTIONS(847), + [sym_true] = ACTIONS(1110), + [anon_sym_restrict] = ACTIONS(1110), + [sym_null] = ACTIONS(1110), + [anon_sym_goto] = ACTIONS(1110), + [aux_sym_preproc_if_token2] = ACTIONS(1110), + [anon_sym_const] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1110), + [sym_number_literal] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1110), + [anon_sym_unsigned] = ACTIONS(1110), + [anon_sym_short] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [sym_preproc_directive] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_L_DQUOTE] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [sym_false] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_auto] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), }, [740] = { - [sym_false] = ACTIONS(853), - [anon_sym_restrict] = ACTIONS(853), - [sym_identifier] = ACTIONS(853), - [anon_sym_goto] = ACTIONS(853), - [aux_sym_preproc_if_token2] = ACTIONS(853), - [anon_sym_const] = ACTIONS(853), - [anon_sym_typedef] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(855), - [anon_sym__Atomic] = ACTIONS(853), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(853), - [sym_number_literal] = ACTIONS(855), - [anon_sym_volatile] = ACTIONS(853), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_extern] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(855), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_signed] = ACTIONS(853), - [anon_sym_long] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(853), - [anon_sym_L] = ACTIONS(853), - [anon_sym___attribute__] = ACTIONS(853), - [anon_sym_sizeof] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_union] = ACTIONS(853), - [anon_sym_unsigned] = ACTIONS(853), - [anon_sym_short] = ACTIONS(853), - [anon_sym_do] = ACTIONS(853), - [sym_preproc_directive] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), - [aux_sym_preproc_if_token1] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [anon_sym_LPAREN2] = ACTIONS(855), - [anon_sym_else] = ACTIONS(853), - [sym_primitive_type] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(855), - [aux_sym_preproc_include_token1] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_static] = ACTIONS(853), - [anon_sym_register] = ACTIONS(853), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_if] = ACTIONS(853), - [anon_sym_switch] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [anon_sym_return] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [aux_sym_preproc_def_token1] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_auto] = ACTIONS(853), - [anon_sym_inline] = ACTIONS(853), + [sym_true] = ACTIONS(1128), + [anon_sym_restrict] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [anon_sym_goto] = ACTIONS(1128), + [aux_sym_preproc_if_token2] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym__Atomic] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), + [sym_number_literal] = ACTIONS(1130), + [anon_sym_volatile] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_signed] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), + [anon_sym_L_SQUOTE] = ACTIONS(1130), + [anon_sym___attribute__] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_unsigned] = ACTIONS(1128), + [anon_sym_short] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [sym_preproc_directive] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1130), + [aux_sym_preproc_if_token1] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_L_DQUOTE] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1130), + [sym_primitive_type] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1130), + [aux_sym_preproc_include_token1] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1130), + [anon_sym_register] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1130), + [aux_sym_preproc_def_token1] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_auto] = ACTIONS(1128), + [anon_sym_inline] = ACTIONS(1128), }, [741] = { - [sym_false] = ACTIONS(859), - [anon_sym_restrict] = ACTIONS(859), - [sym_identifier] = ACTIONS(859), - [anon_sym_goto] = ACTIONS(859), - [aux_sym_preproc_if_token2] = ACTIONS(859), - [anon_sym_const] = ACTIONS(859), - [anon_sym_typedef] = ACTIONS(859), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym__Atomic] = ACTIONS(859), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(859), - [sym_number_literal] = ACTIONS(857), - [anon_sym_volatile] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(857), - [anon_sym_extern] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_struct] = ACTIONS(859), - [anon_sym_signed] = ACTIONS(859), - [anon_sym_long] = ACTIONS(859), - [anon_sym_while] = ACTIONS(859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(859), - [aux_sym_preproc_elif_token1] = ACTIONS(859), - [anon_sym_L] = ACTIONS(859), - [anon_sym___attribute__] = ACTIONS(859), - [anon_sym_sizeof] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_union] = ACTIONS(859), - [anon_sym_unsigned] = ACTIONS(859), - [anon_sym_short] = ACTIONS(859), - [anon_sym_do] = ACTIONS(859), - [aux_sym_preproc_else_token1] = ACTIONS(859), - [sym_preproc_directive] = ACTIONS(859), - [anon_sym_AMP] = ACTIONS(857), - [aux_sym_preproc_if_token1] = ACTIONS(859), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_LPAREN2] = ACTIONS(857), - [sym_primitive_type] = ACTIONS(859), - [anon_sym_for] = ACTIONS(859), - [anon_sym_break] = ACTIONS(859), - [anon_sym_BANG] = ACTIONS(857), - [aux_sym_preproc_include_token1] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_static] = ACTIONS(859), - [anon_sym_register] = ACTIONS(859), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_if] = ACTIONS(859), - [anon_sym_switch] = ACTIONS(859), - [sym_true] = ACTIONS(859), - [anon_sym_enum] = ACTIONS(859), - [sym_null] = ACTIONS(859), - [anon_sym_return] = ACTIONS(859), - [anon_sym_continue] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(857), - [aux_sym_preproc_def_token1] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_auto] = ACTIONS(859), - [anon_sym_inline] = ACTIONS(859), + [sym_true] = ACTIONS(1226), + [anon_sym_restrict] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [aux_sym_preproc_if_token2] = ACTIONS(1226), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym__Atomic] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym___attribute__] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1226), + [anon_sym_unsigned] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [sym_preproc_directive] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1228), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1226), + [sym_primitive_type] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1228), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1228), + [anon_sym_register] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1228), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_auto] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), }, [742] = { - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_union] = ACTIONS(863), - [sym_true] = ACTIONS(863), - [anon_sym_unsigned] = ACTIONS(863), - [anon_sym_restrict] = ACTIONS(863), - [anon_sym_short] = ACTIONS(863), - [sym_false] = ACTIONS(863), - [sym_null] = ACTIONS(863), - [sym_identifier] = ACTIONS(863), - [anon_sym_do] = ACTIONS(863), - [anon_sym_goto] = ACTIONS(863), - [aux_sym_preproc_if_token2] = ACTIONS(863), - [sym_preproc_directive] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(861), - [aux_sym_preproc_if_token1] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(861), - [anon_sym_const] = ACTIONS(863), - [anon_sym_LPAREN2] = ACTIONS(861), - [anon_sym_typedef] = ACTIONS(863), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym__Atomic] = ACTIONS(863), - [sym_primitive_type] = ACTIONS(863), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(861), - [aux_sym_preproc_include_token1] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_static] = ACTIONS(863), - [anon_sym_volatile] = ACTIONS(863), - [anon_sym_register] = ACTIONS(863), - [anon_sym_extern] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_if] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_switch] = ACTIONS(863), - [anon_sym_signed] = ACTIONS(863), - [anon_sym_enum] = ACTIONS(863), - [anon_sym_long] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [sym_number_literal] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_SQUOTE] = ACTIONS(861), - [aux_sym_preproc_def_token1] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_auto] = ACTIONS(863), - [anon_sym_L] = ACTIONS(863), - [anon_sym_inline] = ACTIONS(863), - [anon_sym___attribute__] = ACTIONS(863), - [anon_sym_sizeof] = ACTIONS(863), + [sym_true] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [sym_null] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [aux_sym_preproc_if_token2] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), }, [743] = { - [sym_false] = ACTIONS(923), - [anon_sym_restrict] = ACTIONS(923), - [sym_identifier] = ACTIONS(923), - [anon_sym_goto] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_typedef] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(925), - [anon_sym__Atomic] = ACTIONS(923), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [sym_number_literal] = ACTIONS(925), - [anon_sym_volatile] = ACTIONS(923), - [anon_sym_SQUOTE] = ACTIONS(925), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_signed] = ACTIONS(923), - [anon_sym_long] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [anon_sym_L] = ACTIONS(923), - [anon_sym___attribute__] = ACTIONS(923), - [anon_sym_sizeof] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_union] = ACTIONS(923), - [anon_sym_unsigned] = ACTIONS(923), - [anon_sym_short] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [anon_sym_TILDE] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_else] = ACTIONS(923), - [sym_primitive_type] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(925), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_if] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(923), - [sym_true] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [sym_null] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_auto] = ACTIONS(923), - [anon_sym_inline] = ACTIONS(923), + [sym_true] = ACTIONS(1238), + [anon_sym_restrict] = ACTIONS(1238), + [sym_null] = ACTIONS(1238), + [anon_sym_goto] = ACTIONS(1238), + [aux_sym_preproc_if_token2] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), + [sym_number_literal] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1238), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_unsigned] = ACTIONS(1238), + [anon_sym_short] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [sym_preproc_directive] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_L_DQUOTE] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [sym_false] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_auto] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), }, [744] = { - [sym_false] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [aux_sym_preproc_if_token2] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [sym_number_literal] = ACTIONS(970), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [aux_sym_preproc_elif_token1] = ACTIONS(968), - [anon_sym_L] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [aux_sym_preproc_else_token1] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym_LPAREN2] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_static] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_if] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [sym_true] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - }, - [745] = { - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_union] = ACTIONS(995), - [sym_true] = ACTIONS(995), - [anon_sym_unsigned] = ACTIONS(995), - [anon_sym_restrict] = ACTIONS(995), - [anon_sym_short] = ACTIONS(995), - [sym_false] = ACTIONS(995), - [sym_null] = ACTIONS(995), - [sym_identifier] = ACTIONS(995), - [anon_sym_do] = ACTIONS(995), - [anon_sym_goto] = ACTIONS(995), - [aux_sym_preproc_if_token2] = ACTIONS(995), - [sym_preproc_directive] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(993), - [aux_sym_preproc_if_token1] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(993), - [anon_sym_const] = ACTIONS(995), - [anon_sym_LPAREN2] = ACTIONS(993), - [anon_sym_typedef] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(993), - [anon_sym_DQUOTE] = ACTIONS(993), - [anon_sym__Atomic] = ACTIONS(995), - [sym_primitive_type] = ACTIONS(995), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [aux_sym_preproc_ifdef_token1] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_static] = ACTIONS(995), - [anon_sym_volatile] = ACTIONS(995), - [anon_sym_register] = ACTIONS(995), - [anon_sym_extern] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_if] = ACTIONS(995), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_switch] = ACTIONS(995), - [anon_sym_signed] = ACTIONS(995), - [anon_sym_enum] = ACTIONS(995), - [anon_sym_long] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(993), - [sym_number_literal] = ACTIONS(993), - [anon_sym_return] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [aux_sym_preproc_ifdef_token2] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_SQUOTE] = ACTIONS(993), - [aux_sym_preproc_def_token1] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_auto] = ACTIONS(995), - [anon_sym_L] = ACTIONS(995), - [anon_sym_inline] = ACTIONS(995), - [anon_sym___attribute__] = ACTIONS(995), - [anon_sym_sizeof] = ACTIONS(995), - }, - [746] = { - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_union] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [anon_sym_unsigned] = ACTIONS(1005), - [anon_sym_restrict] = ACTIONS(1005), - [anon_sym_short] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [sym_null] = ACTIONS(1005), - [sym_identifier] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_goto] = ACTIONS(1005), - [aux_sym_preproc_if_token2] = ACTIONS(1005), - [sym_preproc_directive] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(1003), - [aux_sym_preproc_if_token1] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(1003), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1003), - [anon_sym_typedef] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1003), - [anon_sym__Atomic] = ACTIONS(1005), - [sym_primitive_type] = ACTIONS(1005), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [aux_sym_preproc_include_token1] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_static] = ACTIONS(1005), - [anon_sym_volatile] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_struct] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [anon_sym_signed] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1005), - [anon_sym_long] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [sym_number_literal] = ACTIONS(1003), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1003), - [aux_sym_preproc_def_token1] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_auto] = ACTIONS(1005), - [anon_sym_L] = ACTIONS(1005), - [anon_sym_inline] = ACTIONS(1005), - [anon_sym___attribute__] = ACTIONS(1005), - [anon_sym_sizeof] = ACTIONS(1005), - }, - [747] = { - [sym_false] = ACTIONS(1007), - [anon_sym_restrict] = ACTIONS(1007), - [sym_identifier] = ACTIONS(1007), - [anon_sym_goto] = ACTIONS(1007), - [aux_sym_preproc_if_token2] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_typedef] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym__Atomic] = ACTIONS(1007), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1007), - [sym_number_literal] = ACTIONS(1009), - [anon_sym_volatile] = ACTIONS(1007), - [anon_sym_SQUOTE] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_signed] = ACTIONS(1007), - [anon_sym_long] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1007), - [anon_sym_L] = ACTIONS(1007), - [anon_sym___attribute__] = ACTIONS(1007), - [anon_sym_sizeof] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsigned] = ACTIONS(1007), - [anon_sym_short] = ACTIONS(1007), - [anon_sym_do] = ACTIONS(1007), - [sym_preproc_directive] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), - [aux_sym_preproc_if_token1] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [anon_sym_LPAREN2] = ACTIONS(1009), - [anon_sym_else] = ACTIONS(2493), - [sym_primitive_type] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1009), - [aux_sym_preproc_include_token1] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_register] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_switch] = ACTIONS(1007), - [sym_true] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [sym_null] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [aux_sym_preproc_def_token1] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_auto] = ACTIONS(1007), - [anon_sym_inline] = ACTIONS(1007), - }, - [748] = { - [sym_false] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [anon_sym_goto] = ACTIONS(1051), - [aux_sym_preproc_if_token2] = ACTIONS(1051), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_typedef] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1053), - [anon_sym__Atomic] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [sym_number_literal] = ACTIONS(1053), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_extern] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1053), - [anon_sym_struct] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), - [anon_sym_L] = ACTIONS(1051), - [anon_sym___attribute__] = ACTIONS(1051), - [anon_sym_sizeof] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_union] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1051), - [anon_sym_short] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(1051), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1053), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1053), - [anon_sym_LPAREN2] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1053), - [aux_sym_preproc_include_token1] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_switch] = ACTIONS(1051), - [sym_true] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [sym_null] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1053), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [anon_sym_inline] = ACTIONS(1051), - }, - [749] = { - [sym_false] = ACTIONS(1071), - [anon_sym_restrict] = ACTIONS(1071), - [sym_identifier] = ACTIONS(1071), - [anon_sym_goto] = ACTIONS(1071), - [aux_sym_preproc_if_token2] = ACTIONS(1071), - [anon_sym_const] = ACTIONS(1071), - [anon_sym_typedef] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym__Atomic] = ACTIONS(1071), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1071), - [sym_number_literal] = ACTIONS(1073), - [anon_sym_volatile] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_extern] = ACTIONS(1071), - [anon_sym_PLUS_PLUS] = ACTIONS(1073), - [anon_sym_struct] = ACTIONS(1071), - [anon_sym_signed] = ACTIONS(1071), - [anon_sym_long] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1071), - [anon_sym_L] = ACTIONS(1071), - [anon_sym___attribute__] = ACTIONS(1071), - [anon_sym_sizeof] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_union] = ACTIONS(1071), - [anon_sym_unsigned] = ACTIONS(1071), - [anon_sym_short] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(1071), - [sym_preproc_directive] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - [aux_sym_preproc_if_token1] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1073), - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_else] = ACTIONS(1071), - [sym_primitive_type] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1073), - [aux_sym_preproc_include_token1] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_static] = ACTIONS(1071), - [anon_sym_register] = ACTIONS(1071), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_switch] = ACTIONS(1071), - [sym_true] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1071), - [sym_null] = ACTIONS(1071), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [aux_sym_preproc_def_token1] = ACTIONS(1071), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_auto] = ACTIONS(1071), - [anon_sym_inline] = ACTIONS(1071), - }, - [750] = { - [sym_false] = ACTIONS(1075), - [anon_sym_restrict] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [anon_sym_goto] = ACTIONS(1075), - [aux_sym_preproc_if_token2] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(1075), - [anon_sym_typedef] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym__Atomic] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1075), - [sym_number_literal] = ACTIONS(1077), - [anon_sym_volatile] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_extern] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_struct] = ACTIONS(1075), - [anon_sym_signed] = ACTIONS(1075), - [anon_sym_long] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1075), - [anon_sym_L] = ACTIONS(1075), - [anon_sym___attribute__] = ACTIONS(1075), - [anon_sym_sizeof] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_union] = ACTIONS(1075), - [anon_sym_unsigned] = ACTIONS(1075), - [anon_sym_short] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(1075), - [sym_preproc_directive] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - [aux_sym_preproc_if_token1] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_LPAREN2] = ACTIONS(1077), - [anon_sym_else] = ACTIONS(1075), - [sym_primitive_type] = ACTIONS(1075), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), - [aux_sym_preproc_include_token1] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_static] = ACTIONS(1075), - [anon_sym_register] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_switch] = ACTIONS(1075), - [sym_true] = ACTIONS(1075), - [anon_sym_enum] = ACTIONS(1075), - [sym_null] = ACTIONS(1075), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1077), - [aux_sym_preproc_def_token1] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_auto] = ACTIONS(1075), - [anon_sym_inline] = ACTIONS(1075), - }, - [751] = { - [sym_false] = ACTIONS(1087), - [anon_sym_restrict] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1087), - [anon_sym_goto] = ACTIONS(1087), - [aux_sym_preproc_if_token2] = ACTIONS(1087), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_typedef] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym__Atomic] = ACTIONS(1087), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), - [sym_number_literal] = ACTIONS(1085), - [anon_sym_volatile] = ACTIONS(1087), - [anon_sym_SQUOTE] = ACTIONS(1085), - [anon_sym_extern] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_signed] = ACTIONS(1087), - [anon_sym_long] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), - [aux_sym_preproc_elif_token1] = ACTIONS(1087), - [anon_sym_L] = ACTIONS(1087), - [anon_sym___attribute__] = ACTIONS(1087), - [anon_sym_sizeof] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_union] = ACTIONS(1087), - [anon_sym_unsigned] = ACTIONS(1087), - [anon_sym_short] = ACTIONS(1087), - [anon_sym_do] = ACTIONS(1087), - [aux_sym_preproc_else_token1] = ACTIONS(1087), - [sym_preproc_directive] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1085), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_LPAREN2] = ACTIONS(1085), - [sym_primitive_type] = ACTIONS(1087), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1085), - [aux_sym_preproc_include_token1] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_register] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_switch] = ACTIONS(1087), - [sym_true] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [sym_null] = ACTIONS(1087), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1085), - [aux_sym_preproc_def_token1] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_auto] = ACTIONS(1087), - [anon_sym_inline] = ACTIONS(1087), - }, - [752] = { - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1137), - [sym_true] = ACTIONS(1137), - [anon_sym_unsigned] = ACTIONS(1137), - [anon_sym_restrict] = ACTIONS(1137), - [anon_sym_short] = ACTIONS(1137), - [sym_false] = ACTIONS(1137), - [sym_null] = ACTIONS(1137), - [sym_identifier] = ACTIONS(1137), - [anon_sym_do] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1137), - [aux_sym_preproc_if_token2] = ACTIONS(1137), - [sym_preproc_directive] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1137), - [anon_sym_LPAREN2] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1137), - [sym_primitive_type] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1137), - [anon_sym_break] = ACTIONS(1137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_register] = ACTIONS(1137), - [anon_sym_extern] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1137), - [anon_sym_struct] = ACTIONS(1137), - [anon_sym_switch] = ACTIONS(1137), - [anon_sym_signed] = ACTIONS(1137), - [anon_sym_enum] = ACTIONS(1137), - [anon_sym_long] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1137), - [anon_sym_while] = ACTIONS(1137), - [anon_sym_continue] = ACTIONS(1137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_SQUOTE] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_auto] = ACTIONS(1137), - [anon_sym_L] = ACTIONS(1137), - [anon_sym_inline] = ACTIONS(1137), - [anon_sym___attribute__] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1137), - }, - [753] = { - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_true] = ACTIONS(1157), - [anon_sym_unsigned] = ACTIONS(1157), - [anon_sym_restrict] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [sym_null] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_goto] = ACTIONS(1157), - [aux_sym_preproc_if_token2] = ACTIONS(1157), - [sym_preproc_directive] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1157), - [anon_sym_LPAREN2] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1157), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1157), - [sym_primitive_type] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_register] = ACTIONS(1157), - [anon_sym_extern] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_struct] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_auto] = ACTIONS(1157), - [anon_sym_L] = ACTIONS(1157), - [anon_sym_inline] = ACTIONS(1157), - [anon_sym___attribute__] = ACTIONS(1157), - [anon_sym_sizeof] = ACTIONS(1157), - }, - [754] = { - [sym_false] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [aux_sym_preproc_if_token2] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym__Atomic] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [anon_sym_L] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1262), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1262), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [sym_true] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [sym_null] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1262), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - }, - [755] = { - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1270), - [sym_true] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [sym_false] = ACTIONS(1270), - [sym_null] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [aux_sym_preproc_if_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1270), - [sym_primitive_type] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_L] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1270), - }, - [756] = { - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1274), - [sym_true] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_L] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1274), - }, - [757] = { - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1350), - [sym_true] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [sym_null] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_L] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1350), - }, - [758] = { - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), - [anon_sym_restrict] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_null] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [aux_sym_preproc_if_token2] = ACTIONS(1392), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1392), - [sym_primitive_type] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_L] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1392), + [sym_true] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [sym_null] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [aux_sym_preproc_if_token2] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1316), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), }, - [759] = { - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [anon_sym_unsigned] = ACTIONS(1396), - [anon_sym_restrict] = ACTIONS(1396), - [anon_sym_short] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_null] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1396), - [anon_sym_do] = ACTIONS(1396), - [anon_sym_goto] = ACTIONS(1396), - [aux_sym_preproc_if_token2] = ACTIONS(1396), - [sym_preproc_directive] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1396), - [sym_primitive_type] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_volatile] = ACTIONS(1396), - [anon_sym_register] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_long] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_auto] = ACTIONS(1396), - [anon_sym_L] = ACTIONS(1396), - [anon_sym_inline] = ACTIONS(1396), - [anon_sym___attribute__] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1396), + [745] = { + [sym_true] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [sym_null] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), }, - [760] = { - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [sym_null] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1400), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym__Atomic] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1400), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_L] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1402), + [746] = { + [sym_true] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [sym_null] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), }, - [761] = { - [sym_if_statement] = STATE(774), - [sym_do_statement] = STATE(774), - [sym_for_statement] = STATE(774), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(774), - [sym_return_statement] = STATE(774), - [sym_break_statement] = STATE(774), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(774), - [sym_while_statement] = STATE(774), - [sym_continue_statement] = STATE(774), - [sym_goto_statement] = STATE(774), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(774), - [sym_expression_statement] = STATE(774), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [747] = { + [sym_true] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [sym_null] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), }, - [762] = { - [sym_false] = ACTIONS(1410), + [748] = { + [sym_if_statement] = STATE(760), + [sym_do_statement] = STATE(760), + [sym_for_statement] = STATE(760), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(760), + [sym_return_statement] = STATE(760), + [sym_break_statement] = STATE(760), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(760), + [sym_while_statement] = STATE(760), + [sym_continue_statement] = STATE(760), + [sym_goto_statement] = STATE(760), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(760), + [sym_expression_statement] = STATE(760), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [749] = { + [sym_true] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [sym_null] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + }, + [750] = { + [sym_true] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [aux_sym_preproc_elif_token1] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [aux_sym_preproc_else_token1] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + }, + [751] = { + [sym_true] = ACTIONS(1410), [anon_sym_restrict] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), + [sym_null] = ACTIONS(1410), [anon_sym_goto] = ACTIONS(1410), [aux_sym_preproc_if_token2] = ACTIONS(1410), [anon_sym_const] = ACTIONS(1410), [anon_sym_typedef] = ACTIONS(1410), [anon_sym_DASH_DASH] = ACTIONS(1412), [anon_sym__Atomic] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), [sym_number_literal] = ACTIONS(1412), [anon_sym_volatile] = ACTIONS(1410), @@ -35050,10 +35153,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1412), [anon_sym_struct] = ACTIONS(1410), [anon_sym_signed] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), [anon_sym_long] = ACTIONS(1410), [anon_sym_while] = ACTIONS(1410), [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [anon_sym_L] = ACTIONS(1410), + [aux_sym_preproc_elif_token1] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1412), [anon_sym___attribute__] = ACTIONS(1410), [anon_sym_sizeof] = ACTIONS(1410), [anon_sym_LBRACE] = ACTIONS(1412), @@ -35061,13 +35166,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(1410), [anon_sym_short] = ACTIONS(1410), [anon_sym_do] = ACTIONS(1410), + [aux_sym_preproc_else_token1] = ACTIONS(1410), [sym_preproc_directive] = ACTIONS(1410), [anon_sym_AMP] = ACTIONS(1412), [aux_sym_preproc_if_token1] = ACTIONS(1410), [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_else] = ACTIONS(1410), [sym_primitive_type] = ACTIONS(1410), [anon_sym_for] = ACTIONS(1410), [anon_sym_break] = ACTIONS(1410), @@ -35075,13 +35180,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(1410), [anon_sym_DASH] = ACTIONS(1410), [anon_sym_static] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_register] = ACTIONS(1410), [anon_sym_STAR] = ACTIONS(1412), [anon_sym_if] = ACTIONS(1410), [anon_sym_switch] = ACTIONS(1410), - [sym_true] = ACTIONS(1410), [anon_sym_enum] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), [anon_sym_return] = ACTIONS(1410), [anon_sym_continue] = ACTIONS(1410), [anon_sym_SEMI] = ACTIONS(1412), @@ -35090,17080 +35195,17105 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1410), [anon_sym_inline] = ACTIONS(1410), }, - [763] = { - [sym_false] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [aux_sym_preproc_elif_token1] = ACTIONS(1432), - [anon_sym_L] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [aux_sym_preproc_else_token1] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [sym_true] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [sym_null] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), + [752] = { + [sym_true] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [sym_null] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), }, - [764] = { - [sym_false] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [aux_sym_preproc_elif_token1] = ACTIONS(1442), - [anon_sym_L] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [aux_sym_preproc_else_token1] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [sym_true] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [sym_null] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), + [753] = { + [sym_true] = ACTIONS(1533), + [anon_sym_restrict] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [anon_sym_goto] = ACTIONS(1533), + [aux_sym_preproc_if_token2] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_typedef] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym__Atomic] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), + [sym_number_literal] = ACTIONS(1535), + [anon_sym_volatile] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_extern] = ACTIONS(1533), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_signed] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), + [anon_sym_L_SQUOTE] = ACTIONS(1535), + [anon_sym___attribute__] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_union] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [sym_preproc_directive] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1535), + [aux_sym_preproc_if_token1] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_L_DQUOTE] = ACTIONS(1535), + [anon_sym_LPAREN2] = ACTIONS(1535), + [sym_primitive_type] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [aux_sym_preproc_include_token1] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_register] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [aux_sym_preproc_def_token1] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_auto] = ACTIONS(1533), + [anon_sym_inline] = ACTIONS(1533), }, - [765] = { - [sym_false] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [aux_sym_preproc_if_token2] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1450), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1450), - [anon_sym_L] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [sym_true] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [sym_null] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), + [754] = { + [sym_true] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1607), + [aux_sym_preproc_if_token2] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym__Atomic] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), + [sym_number_literal] = ACTIONS(1609), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1609), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), + [anon_sym_L_SQUOTE] = ACTIONS(1609), + [anon_sym___attribute__] = ACTIONS(1607), + [anon_sym_sizeof] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [sym_preproc_directive] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1609), + [aux_sym_preproc_if_token1] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_L_DQUOTE] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [aux_sym_preproc_include_token1] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1609), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1609), + [aux_sym_preproc_def_token1] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), }, - [766] = { - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1504), - [sym_true] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [sym_null] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [aux_sym_preproc_if_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1506), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym__Atomic] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1506), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_L] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_sizeof] = ACTIONS(1504), + [755] = { + [sym_true] = ACTIONS(1616), + [anon_sym_restrict] = ACTIONS(1616), + [sym_null] = ACTIONS(1616), + [anon_sym_goto] = ACTIONS(1616), + [aux_sym_preproc_if_token2] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [anon_sym_typedef] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [anon_sym__Atomic] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1616), + [sym_number_literal] = ACTIONS(1618), + [anon_sym_volatile] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1616), + [anon_sym_signed] = ACTIONS(1616), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1616), + [anon_sym_L_SQUOTE] = ACTIONS(1618), + [anon_sym___attribute__] = ACTIONS(1616), + [anon_sym_sizeof] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsigned] = ACTIONS(1616), + [anon_sym_short] = ACTIONS(1616), + [anon_sym_do] = ACTIONS(1616), + [sym_preproc_directive] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1618), + [aux_sym_preproc_if_token1] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1618), + [anon_sym_L_DQUOTE] = ACTIONS(1618), + [anon_sym_LPAREN2] = ACTIONS(1618), + [sym_primitive_type] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1618), + [aux_sym_preproc_include_token1] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_static] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_register] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_switch] = ACTIONS(1616), + [anon_sym_enum] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1618), + [aux_sym_preproc_def_token1] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_auto] = ACTIONS(1616), + [anon_sym_inline] = ACTIONS(1616), }, - [767] = { - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_union] = ACTIONS(1573), - [sym_true] = ACTIONS(1573), - [anon_sym_unsigned] = ACTIONS(1573), - [anon_sym_restrict] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [sym_false] = ACTIONS(1573), - [sym_null] = ACTIONS(1573), - [sym_identifier] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_goto] = ACTIONS(1573), - [aux_sym_preproc_if_token2] = ACTIONS(1573), - [sym_preproc_directive] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1571), - [aux_sym_preproc_if_token1] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [anon_sym__Atomic] = ACTIONS(1573), - [sym_primitive_type] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1571), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_volatile] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_struct] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_signed] = ACTIONS(1573), - [anon_sym_enum] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_auto] = ACTIONS(1573), - [anon_sym_L] = ACTIONS(1573), - [anon_sym_inline] = ACTIONS(1573), - [anon_sym___attribute__] = ACTIONS(1573), - [anon_sym_sizeof] = ACTIONS(1573), + [756] = { + [sym_if_statement] = STATE(764), + [sym_do_statement] = STATE(764), + [sym_for_statement] = STATE(764), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(764), + [sym_return_statement] = STATE(764), + [sym_break_statement] = STATE(764), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(764), + [sym_while_statement] = STATE(764), + [sym_continue_statement] = STATE(764), + [sym_goto_statement] = STATE(764), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(764), + [sym_expression_statement] = STATE(764), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [768] = { - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_union] = ACTIONS(1645), - [sym_true] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [sym_false] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), - [sym_identifier] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [aux_sym_preproc_if_token2] = ACTIONS(1645), - [sym_preproc_directive] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym__Atomic] = ACTIONS(1645), - [sym_primitive_type] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1647), - [aux_sym_preproc_include_token1] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [aux_sym_preproc_def_token1] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_auto] = ACTIONS(1645), - [anon_sym_L] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym_sizeof] = ACTIONS(1645), + [757] = { + [sym_if_statement] = STATE(768), + [sym_do_statement] = STATE(768), + [sym_for_statement] = STATE(768), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(768), + [sym_return_statement] = STATE(768), + [sym_break_statement] = STATE(768), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(768), + [sym_while_statement] = STATE(768), + [sym_continue_statement] = STATE(768), + [sym_goto_statement] = STATE(768), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(768), + [sym_expression_statement] = STATE(768), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [769] = { - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1654), + [758] = { + [sym_true] = ACTIONS(1646), + [anon_sym_restrict] = ACTIONS(1646), + [sym_null] = ACTIONS(1646), + [anon_sym_goto] = ACTIONS(1646), + [aux_sym_preproc_if_token2] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_typedef] = ACTIONS(1646), + [anon_sym_DASH_DASH] = ACTIONS(1648), + [anon_sym__Atomic] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(1648), + [anon_sym_volatile] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1646), + [anon_sym_PLUS_PLUS] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_signed] = ACTIONS(1646), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1646), + [anon_sym_L_SQUOTE] = ACTIONS(1648), + [anon_sym___attribute__] = ACTIONS(1646), + [anon_sym_sizeof] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_union] = ACTIONS(1646), + [anon_sym_unsigned] = ACTIONS(1646), + [anon_sym_short] = ACTIONS(1646), + [anon_sym_do] = ACTIONS(1646), + [sym_preproc_directive] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1648), + [aux_sym_preproc_if_token1] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_L_DQUOTE] = ACTIONS(1648), + [anon_sym_LPAREN2] = ACTIONS(1648), + [sym_primitive_type] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1648), + [aux_sym_preproc_include_token1] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_register] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [sym_false] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1648), + [aux_sym_preproc_def_token1] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_auto] = ACTIONS(1646), + [anon_sym_inline] = ACTIONS(1646), + }, + [759] = { + [sym_true] = ACTIONS(1650), + [anon_sym_restrict] = ACTIONS(1650), + [sym_null] = ACTIONS(1650), + [anon_sym_goto] = ACTIONS(1650), + [aux_sym_preproc_if_token2] = ACTIONS(1650), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_typedef] = ACTIONS(1650), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [anon_sym__Atomic] = ACTIONS(1650), + [sym_identifier] = ACTIONS(1650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1650), + [sym_number_literal] = ACTIONS(1652), + [anon_sym_volatile] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_extern] = ACTIONS(1650), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_struct] = ACTIONS(1650), + [anon_sym_signed] = ACTIONS(1650), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1650), + [anon_sym_while] = ACTIONS(1650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1650), + [anon_sym_L_SQUOTE] = ACTIONS(1652), + [anon_sym___attribute__] = ACTIONS(1650), + [anon_sym_sizeof] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_union] = ACTIONS(1650), + [anon_sym_unsigned] = ACTIONS(1650), + [anon_sym_short] = ACTIONS(1650), + [anon_sym_do] = ACTIONS(1650), + [sym_preproc_directive] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1652), + [aux_sym_preproc_if_token1] = ACTIONS(1650), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_L_DQUOTE] = ACTIONS(1652), + [anon_sym_LPAREN2] = ACTIONS(1652), + [sym_primitive_type] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1652), + [aux_sym_preproc_include_token1] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_static] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1652), + [anon_sym_register] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_switch] = ACTIONS(1650), + [anon_sym_enum] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1652), + [aux_sym_preproc_def_token1] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_auto] = ACTIONS(1650), + [anon_sym_inline] = ACTIONS(1650), + }, + [760] = { [sym_true] = ACTIONS(1654), - [anon_sym_unsigned] = ACTIONS(1654), [anon_sym_restrict] = ACTIONS(1654), - [anon_sym_short] = ACTIONS(1654), - [sym_false] = ACTIONS(1654), [sym_null] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), [anon_sym_goto] = ACTIONS(1654), [aux_sym_preproc_if_token2] = ACTIONS(1654), + [anon_sym_const] = ACTIONS(1654), + [anon_sym_typedef] = ACTIONS(1654), + [anon_sym_DASH_DASH] = ACTIONS(1656), + [anon_sym__Atomic] = ACTIONS(1654), + [sym_identifier] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1656), + [anon_sym_volatile] = ACTIONS(1654), + [anon_sym_SQUOTE] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1654), + [anon_sym_PLUS_PLUS] = ACTIONS(1656), + [anon_sym_struct] = ACTIONS(1654), + [anon_sym_signed] = ACTIONS(1654), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), + [anon_sym_L_SQUOTE] = ACTIONS(1656), + [anon_sym___attribute__] = ACTIONS(1654), + [anon_sym_sizeof] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_union] = ACTIONS(1654), + [anon_sym_unsigned] = ACTIONS(1654), + [anon_sym_short] = ACTIONS(1654), + [anon_sym_do] = ACTIONS(1654), [sym_preproc_directive] = ACTIONS(1654), [anon_sym_AMP] = ACTIONS(1656), [aux_sym_preproc_if_token1] = ACTIONS(1654), [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1654), + [anon_sym_L_DQUOTE] = ACTIONS(1656), [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_typedef] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym__Atomic] = ACTIONS(1654), + [anon_sym_else] = ACTIONS(1654), [sym_primitive_type] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), [anon_sym_for] = ACTIONS(1654), [anon_sym_break] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(1656), [aux_sym_preproc_include_token1] = ACTIONS(1654), [anon_sym_DASH] = ACTIONS(1654), [anon_sym_static] = ACTIONS(1654), - [anon_sym_volatile] = ACTIONS(1654), + [anon_sym_DQUOTE] = ACTIONS(1656), [anon_sym_register] = ACTIONS(1654), - [anon_sym_extern] = ACTIONS(1654), [anon_sym_STAR] = ACTIONS(1656), [anon_sym_if] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1654), [anon_sym_switch] = ACTIONS(1654), - [anon_sym_signed] = ACTIONS(1654), [anon_sym_enum] = ACTIONS(1654), - [anon_sym_long] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [sym_number_literal] = ACTIONS(1656), + [sym_false] = ACTIONS(1654), [anon_sym_return] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), [anon_sym_continue] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_SQUOTE] = ACTIONS(1656), [aux_sym_preproc_def_token1] = ACTIONS(1654), [anon_sym_PLUS] = ACTIONS(1654), [anon_sym_auto] = ACTIONS(1654), - [anon_sym_L] = ACTIONS(1654), [anon_sym_inline] = ACTIONS(1654), - [anon_sym___attribute__] = ACTIONS(1654), - [anon_sym_sizeof] = ACTIONS(1654), + }, + [761] = { + [sym_true] = ACTIONS(1666), + [anon_sym_restrict] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [anon_sym_goto] = ACTIONS(1666), + [aux_sym_preproc_if_token2] = ACTIONS(1666), + [anon_sym_const] = ACTIONS(1666), + [anon_sym_typedef] = ACTIONS(1666), + [anon_sym_DASH_DASH] = ACTIONS(1668), + [anon_sym__Atomic] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1666), + [sym_number_literal] = ACTIONS(1668), + [anon_sym_volatile] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1666), + [anon_sym_PLUS_PLUS] = ACTIONS(1668), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_signed] = ACTIONS(1666), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1666), + [anon_sym_L_SQUOTE] = ACTIONS(1668), + [anon_sym___attribute__] = ACTIONS(1666), + [anon_sym_sizeof] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_union] = ACTIONS(1666), + [anon_sym_unsigned] = ACTIONS(1666), + [anon_sym_short] = ACTIONS(1666), + [anon_sym_do] = ACTIONS(1666), + [sym_preproc_directive] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1668), + [aux_sym_preproc_if_token1] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1668), + [anon_sym_L_DQUOTE] = ACTIONS(1668), + [anon_sym_LPAREN2] = ACTIONS(1668), + [anon_sym_else] = ACTIONS(1666), + [sym_primitive_type] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1668), + [aux_sym_preproc_include_token1] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_static] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1668), + [anon_sym_register] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1666), + [anon_sym_enum] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1668), + [aux_sym_preproc_def_token1] = ACTIONS(1666), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_auto] = ACTIONS(1666), + [anon_sym_inline] = ACTIONS(1666), + }, + [762] = { + [sym_true] = ACTIONS(1763), + [anon_sym_restrict] = ACTIONS(1763), + [sym_null] = ACTIONS(1763), + [anon_sym_goto] = ACTIONS(1763), + [aux_sym_preproc_if_token2] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_typedef] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym__Atomic] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), + [sym_number_literal] = ACTIONS(1765), + [anon_sym_volatile] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_struct] = ACTIONS(1763), + [anon_sym_signed] = ACTIONS(1763), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), + [aux_sym_preproc_elif_token1] = ACTIONS(1763), + [anon_sym_L_SQUOTE] = ACTIONS(1765), + [anon_sym___attribute__] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1763), + [aux_sym_preproc_else_token1] = ACTIONS(1763), + [sym_preproc_directive] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + [aux_sym_preproc_if_token1] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_L_DQUOTE] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1765), + [sym_primitive_type] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1765), + [aux_sym_preproc_include_token1] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_switch] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [sym_false] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [aux_sym_preproc_def_token1] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_auto] = ACTIONS(1763), + [anon_sym_inline] = ACTIONS(1763), + }, + [763] = { + [sym_true] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [sym_null] = ACTIONS(1900), + [anon_sym_goto] = ACTIONS(1900), + [aux_sym_preproc_if_token2] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_typedef] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym__Atomic] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), + [sym_number_literal] = ACTIONS(1902), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_signed] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), + [anon_sym_L_SQUOTE] = ACTIONS(1902), + [anon_sym___attribute__] = ACTIONS(1900), + [anon_sym_sizeof] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsigned] = ACTIONS(1900), + [anon_sym_short] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [sym_preproc_directive] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1902), + [aux_sym_preproc_if_token1] = ACTIONS(1900), + [anon_sym_TILDE] = ACTIONS(1902), + [anon_sym_L_DQUOTE] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1902), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1902), + [aux_sym_preproc_include_token1] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1902), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_switch] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [sym_false] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1902), + [aux_sym_preproc_def_token1] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_auto] = ACTIONS(1900), + [anon_sym_inline] = ACTIONS(1900), + }, + [764] = { + [sym_true] = ACTIONS(1904), + [anon_sym_restrict] = ACTIONS(1904), + [sym_null] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1904), + [aux_sym_preproc_if_token2] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_typedef] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym__Atomic] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), + [sym_number_literal] = ACTIONS(1906), + [anon_sym_volatile] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_signed] = ACTIONS(1904), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), + [anon_sym_L_SQUOTE] = ACTIONS(1906), + [anon_sym___attribute__] = ACTIONS(1904), + [anon_sym_sizeof] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_unsigned] = ACTIONS(1904), + [anon_sym_short] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [sym_preproc_directive] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1906), + [aux_sym_preproc_if_token1] = ACTIONS(1904), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_L_DQUOTE] = ACTIONS(1906), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_else] = ACTIONS(1904), + [sym_primitive_type] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1906), + [aux_sym_preproc_include_token1] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [sym_false] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1906), + [aux_sym_preproc_def_token1] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_auto] = ACTIONS(1904), + [anon_sym_inline] = ACTIONS(1904), + }, + [765] = { + [sym_if_statement] = STATE(771), + [sym_do_statement] = STATE(771), + [sym_for_statement] = STATE(771), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(771), + [sym_return_statement] = STATE(771), + [sym_break_statement] = STATE(771), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(771), + [sym_while_statement] = STATE(771), + [sym_continue_statement] = STATE(771), + [sym_goto_statement] = STATE(771), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [766] = { + [sym_if_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [767] = { + [sym_if_statement] = STATE(774), + [sym_do_statement] = STATE(774), + [sym_for_statement] = STATE(774), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(774), + [sym_return_statement] = STATE(774), + [sym_break_statement] = STATE(774), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(774), + [sym_while_statement] = STATE(774), + [sym_continue_statement] = STATE(774), + [sym_goto_statement] = STATE(774), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(774), + [sym_expression_statement] = STATE(774), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [768] = { + [sym_true] = ACTIONS(1918), + [anon_sym_restrict] = ACTIONS(1918), + [sym_null] = ACTIONS(1918), + [anon_sym_goto] = ACTIONS(1918), + [aux_sym_preproc_if_token2] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_typedef] = ACTIONS(1918), + [anon_sym_DASH_DASH] = ACTIONS(1920), + [anon_sym__Atomic] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), + [sym_number_literal] = ACTIONS(1920), + [anon_sym_volatile] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_signed] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), + [anon_sym_L_SQUOTE] = ACTIONS(1920), + [anon_sym___attribute__] = ACTIONS(1918), + [anon_sym_sizeof] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsigned] = ACTIONS(1918), + [anon_sym_short] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [sym_preproc_directive] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1920), + [aux_sym_preproc_if_token1] = ACTIONS(1918), + [anon_sym_TILDE] = ACTIONS(1920), + [anon_sym_L_DQUOTE] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_else] = ACTIONS(1918), + [sym_primitive_type] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1920), + [aux_sym_preproc_include_token1] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_register] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_switch] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [sym_false] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1920), + [aux_sym_preproc_def_token1] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_auto] = ACTIONS(1918), + [anon_sym_inline] = ACTIONS(1918), + }, + [769] = { + [sym_if_statement] = STATE(777), + [sym_do_statement] = STATE(777), + [sym_for_statement] = STATE(777), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(777), + [sym_return_statement] = STATE(777), + [sym_break_statement] = STATE(777), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(777), + [sym_while_statement] = STATE(777), + [sym_continue_statement] = STATE(777), + [sym_goto_statement] = STATE(777), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(777), + [sym_expression_statement] = STATE(777), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [770] = { [sym_if_statement] = STATE(778), [sym_do_statement] = STATE(778), [sym_for_statement] = STATE(778), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(778), [sym_return_statement] = STATE(778), [sym_break_statement] = STATE(778), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), [sym_labeled_statement] = STATE(778), [sym_while_statement] = STATE(778), [sym_continue_statement] = STATE(778), [sym_goto_statement] = STATE(778), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(778), [sym_expression_statement] = STATE(778), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [771] = { + [sym_true] = ACTIONS(1986), + [anon_sym_restrict] = ACTIONS(1986), + [sym_null] = ACTIONS(1986), + [anon_sym_goto] = ACTIONS(1986), + [aux_sym_preproc_if_token2] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1986), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), + [sym_number_literal] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_signed] = ACTIONS(1986), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1986), + [anon_sym_unsigned] = ACTIONS(1986), + [anon_sym_short] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [sym_preproc_directive] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1988), + [aux_sym_preproc_if_token1] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_L_DQUOTE] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1986), + [sym_primitive_type] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_switch] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [sym_false] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1988), + [aux_sym_preproc_def_token1] = ACTIONS(1986), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_auto] = ACTIONS(1986), + [anon_sym_inline] = ACTIONS(1986), + }, + [772] = { + [sym_true] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [aux_sym_preproc_if_token2] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_signed] = ACTIONS(1990), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1992), + [aux_sym_preproc_if_token1] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1992), + [anon_sym_L_DQUOTE] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [sym_false] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1992), + [aux_sym_preproc_def_token1] = ACTIONS(1990), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_auto] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + }, + [773] = { + [sym_if_statement] = STATE(780), + [sym_do_statement] = STATE(780), + [sym_for_statement] = STATE(780), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(780), + [sym_return_statement] = STATE(780), + [sym_break_statement] = STATE(780), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(780), + [sym_while_statement] = STATE(780), + [sym_continue_statement] = STATE(780), + [sym_goto_statement] = STATE(780), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(780), + [sym_expression_statement] = STATE(780), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [774] = { + [sym_true] = ACTIONS(1994), + [anon_sym_restrict] = ACTIONS(1994), + [sym_null] = ACTIONS(1994), + [anon_sym_goto] = ACTIONS(1994), + [aux_sym_preproc_if_token2] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), + [sym_number_literal] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_signed] = ACTIONS(1994), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_unsigned] = ACTIONS(1994), + [anon_sym_short] = ACTIONS(1994), + [anon_sym_do] = ACTIONS(1994), + [sym_preproc_directive] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1996), + [aux_sym_preproc_if_token1] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1996), + [anon_sym_L_DQUOTE] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1994), + [sym_primitive_type] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1994), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_switch] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [sym_false] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1996), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [anon_sym_PLUS] = ACTIONS(1994), + [anon_sym_auto] = ACTIONS(1994), + [anon_sym_inline] = ACTIONS(1994), + }, + [775] = { + [sym_if_statement] = STATE(781), + [sym_do_statement] = STATE(781), + [sym_for_statement] = STATE(781), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(781), + [sym_return_statement] = STATE(781), + [sym_break_statement] = STATE(781), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(781), + [sym_while_statement] = STATE(781), + [sym_continue_statement] = STATE(781), + [sym_goto_statement] = STATE(781), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [776] = { [sym_if_statement] = STATE(782), [sym_do_statement] = STATE(782), [sym_for_statement] = STATE(782), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(782), [sym_return_statement] = STATE(782), [sym_break_statement] = STATE(782), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), [sym_labeled_statement] = STATE(782), [sym_while_statement] = STATE(782), [sym_continue_statement] = STATE(782), [sym_goto_statement] = STATE(782), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(782), [sym_expression_statement] = STATE(782), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [772] = { - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1686), - [sym_true] = ACTIONS(1686), - [anon_sym_unsigned] = ACTIONS(1686), - [anon_sym_restrict] = ACTIONS(1686), - [anon_sym_short] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_goto] = ACTIONS(1686), - [aux_sym_preproc_if_token2] = ACTIONS(1686), - [sym_preproc_directive] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1684), - [aux_sym_preproc_if_token1] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_LPAREN2] = ACTIONS(1684), - [anon_sym_typedef] = ACTIONS(1686), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym__Atomic] = ACTIONS(1686), - [sym_primitive_type] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [aux_sym_preproc_include_token1] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1686), - [anon_sym_register] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_signed] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [anon_sym_long] = ACTIONS(1686), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [sym_number_literal] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [aux_sym_preproc_def_token1] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_auto] = ACTIONS(1686), - [anon_sym_L] = ACTIONS(1686), - [anon_sym_inline] = ACTIONS(1686), - [anon_sym___attribute__] = ACTIONS(1686), - [anon_sym_sizeof] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [773] = { - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_union] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [anon_sym_unsigned] = ACTIONS(1690), - [anon_sym_restrict] = ACTIONS(1690), - [anon_sym_short] = ACTIONS(1690), - [sym_false] = ACTIONS(1690), - [sym_null] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1690), - [anon_sym_do] = ACTIONS(1690), - [anon_sym_goto] = ACTIONS(1690), - [aux_sym_preproc_if_token2] = ACTIONS(1690), - [sym_preproc_directive] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1688), - [aux_sym_preproc_if_token1] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1688), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1688), - [anon_sym_typedef] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym__Atomic] = ACTIONS(1690), - [sym_primitive_type] = ACTIONS(1690), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1688), - [aux_sym_preproc_include_token1] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_volatile] = ACTIONS(1690), - [anon_sym_register] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1690), - [anon_sym_signed] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_long] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1688), - [sym_number_literal] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_SQUOTE] = ACTIONS(1688), - [aux_sym_preproc_def_token1] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_auto] = ACTIONS(1690), - [anon_sym_L] = ACTIONS(1690), - [anon_sym_inline] = ACTIONS(1690), - [anon_sym___attribute__] = ACTIONS(1690), - [anon_sym_sizeof] = ACTIONS(1690), + [777] = { + [sym_true] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [sym_null] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [aux_sym_preproc_if_token2] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym__Atomic] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym_sizeof] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [sym_preproc_directive] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_else] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [aux_sym_preproc_include_token1] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2002), + [aux_sym_preproc_def_token1] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), }, - [774] = { - [sym_false] = ACTIONS(1692), - [anon_sym_restrict] = ACTIONS(1692), - [sym_identifier] = ACTIONS(1692), - [anon_sym_goto] = ACTIONS(1692), - [aux_sym_preproc_if_token2] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_typedef] = ACTIONS(1692), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym__Atomic] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1692), - [sym_number_literal] = ACTIONS(1694), - [anon_sym_volatile] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_struct] = ACTIONS(1692), - [anon_sym_signed] = ACTIONS(1692), - [anon_sym_long] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1692), - [anon_sym_L] = ACTIONS(1692), - [anon_sym___attribute__] = ACTIONS(1692), - [anon_sym_sizeof] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_union] = ACTIONS(1692), - [anon_sym_unsigned] = ACTIONS(1692), - [anon_sym_short] = ACTIONS(1692), - [anon_sym_do] = ACTIONS(1692), - [sym_preproc_directive] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1694), - [aux_sym_preproc_if_token1] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LPAREN2] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1692), - [sym_primitive_type] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1694), - [aux_sym_preproc_include_token1] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_register] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [sym_true] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [sym_null] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1694), - [aux_sym_preproc_def_token1] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_auto] = ACTIONS(1692), - [anon_sym_inline] = ACTIONS(1692), + [778] = { + [sym_true] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym__Atomic] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym_sizeof] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [sym_preproc_directive] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2006), + [aux_sym_preproc_include_token1] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), }, - [775] = { - [sym_false] = ACTIONS(1704), - [anon_sym_restrict] = ACTIONS(1704), - [sym_identifier] = ACTIONS(1704), - [anon_sym_goto] = ACTIONS(1704), - [aux_sym_preproc_if_token2] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_typedef] = ACTIONS(1704), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym__Atomic] = ACTIONS(1704), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1704), - [sym_number_literal] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1704), - [anon_sym_signed] = ACTIONS(1704), - [anon_sym_long] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1704), - [anon_sym_L] = ACTIONS(1704), - [anon_sym___attribute__] = ACTIONS(1704), - [anon_sym_sizeof] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_unsigned] = ACTIONS(1704), - [anon_sym_short] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [sym_preproc_directive] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1706), - [aux_sym_preproc_if_token1] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1704), - [sym_primitive_type] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1706), - [aux_sym_preproc_include_token1] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_register] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1706), - [aux_sym_preproc_def_token1] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_auto] = ACTIONS(1704), - [anon_sym_inline] = ACTIONS(1704), + [779] = { + [sym_if_statement] = STATE(784), + [sym_do_statement] = STATE(784), + [sym_for_statement] = STATE(784), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(784), + [sym_return_statement] = STATE(784), + [sym_break_statement] = STATE(784), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_labeled_statement] = STATE(784), + [sym_while_statement] = STATE(784), + [sym_continue_statement] = STATE(784), + [sym_goto_statement] = STATE(784), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(784), + [sym_expression_statement] = STATE(784), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, - [776] = { - [sym_false] = ACTIONS(1806), - [anon_sym_restrict] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1806), - [anon_sym_goto] = ACTIONS(1806), - [aux_sym_preproc_if_token2] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_typedef] = ACTIONS(1806), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym__Atomic] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1806), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_volatile] = ACTIONS(1806), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_signed] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1806), - [aux_sym_preproc_elif_token1] = ACTIONS(1806), - [anon_sym_L] = ACTIONS(1806), - [anon_sym___attribute__] = ACTIONS(1806), - [anon_sym_sizeof] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_unsigned] = ACTIONS(1806), - [anon_sym_short] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1806), - [aux_sym_preproc_else_token1] = ACTIONS(1806), - [sym_preproc_directive] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [anon_sym_LPAREN2] = ACTIONS(1804), - [sym_primitive_type] = ACTIONS(1806), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1804), - [aux_sym_preproc_include_token1] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_switch] = ACTIONS(1806), - [sym_true] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), + [780] = { + [sym_true] = ACTIONS(2117), + [anon_sym_restrict] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [anon_sym_goto] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_typedef] = ACTIONS(2117), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym__Atomic] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2117), + [sym_number_literal] = ACTIONS(2119), + [anon_sym_volatile] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_signed] = ACTIONS(2117), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2119), + [anon_sym___attribute__] = ACTIONS(2117), + [anon_sym_sizeof] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2117), + [anon_sym_unsigned] = ACTIONS(2117), + [anon_sym_short] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [sym_preproc_directive] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2119), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_L_DQUOTE] = ACTIONS(2119), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_else] = ACTIONS(2117), + [sym_primitive_type] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2119), + [aux_sym_preproc_include_token1] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2119), + [anon_sym_register] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2119), + [aux_sym_preproc_def_token1] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_auto] = ACTIONS(2117), + [anon_sym_inline] = ACTIONS(2117), }, - [777] = { - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1941), - [sym_true] = ACTIONS(1941), - [anon_sym_unsigned] = ACTIONS(1941), - [anon_sym_restrict] = ACTIONS(1941), - [anon_sym_short] = ACTIONS(1941), - [sym_false] = ACTIONS(1941), - [sym_null] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_goto] = ACTIONS(1941), - [aux_sym_preproc_if_token2] = ACTIONS(1941), - [sym_preproc_directive] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1943), - [aux_sym_preproc_if_token1] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1943), - [anon_sym_typedef] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [anon_sym__Atomic] = ACTIONS(1941), - [sym_primitive_type] = ACTIONS(1941), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1941), - [anon_sym_BANG] = ACTIONS(1943), - [aux_sym_preproc_include_token1] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_static] = ACTIONS(1941), - [anon_sym_volatile] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_struct] = ACTIONS(1941), - [anon_sym_switch] = ACTIONS(1941), - [anon_sym_signed] = ACTIONS(1941), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_long] = ACTIONS(1941), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [sym_number_literal] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1943), - [aux_sym_preproc_def_token1] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_auto] = ACTIONS(1941), - [anon_sym_L] = ACTIONS(1941), - [anon_sym_inline] = ACTIONS(1941), - [anon_sym___attribute__] = ACTIONS(1941), - [anon_sym_sizeof] = ACTIONS(1941), + [781] = { + [sym_true] = ACTIONS(2121), + [anon_sym_restrict] = ACTIONS(2121), + [sym_null] = ACTIONS(2121), + [anon_sym_goto] = ACTIONS(2121), + [aux_sym_preproc_if_token2] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_typedef] = ACTIONS(2121), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym__Atomic] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [sym_number_literal] = ACTIONS(2123), + [anon_sym_volatile] = ACTIONS(2121), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_signed] = ACTIONS(2121), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [anon_sym_L_SQUOTE] = ACTIONS(2123), + [anon_sym___attribute__] = ACTIONS(2121), + [anon_sym_sizeof] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_unsigned] = ACTIONS(2121), + [anon_sym_short] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [sym_preproc_directive] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2123), + [aux_sym_preproc_if_token1] = ACTIONS(2121), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_LPAREN2] = ACTIONS(2123), + [anon_sym_else] = ACTIONS(2121), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2123), + [aux_sym_preproc_include_token1] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2123), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [sym_false] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2123), + [aux_sym_preproc_def_token1] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_auto] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), }, - [778] = { - [sym_false] = ACTIONS(1945), - [anon_sym_restrict] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1945), - [anon_sym_goto] = ACTIONS(1945), - [aux_sym_preproc_if_token2] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [anon_sym_typedef] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym__Atomic] = ACTIONS(1945), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1945), - [sym_number_literal] = ACTIONS(1947), - [anon_sym_volatile] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_PLUS_PLUS] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_signed] = ACTIONS(1945), - [anon_sym_long] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1945), - [anon_sym_L] = ACTIONS(1945), - [anon_sym___attribute__] = ACTIONS(1945), - [anon_sym_sizeof] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1945), - [anon_sym_unsigned] = ACTIONS(1945), - [anon_sym_short] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [sym_preproc_directive] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1947), - [aux_sym_preproc_if_token1] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [anon_sym_LPAREN2] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1945), - [sym_primitive_type] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1947), - [aux_sym_preproc_include_token1] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_switch] = ACTIONS(1945), - [sym_true] = ACTIONS(1945), - [anon_sym_enum] = ACTIONS(1945), - [sym_null] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1947), - [aux_sym_preproc_def_token1] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1945), - [anon_sym_auto] = ACTIONS(1945), - [anon_sym_inline] = ACTIONS(1945), + [782] = { + [sym_true] = ACTIONS(2125), + [anon_sym_restrict] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [anon_sym_goto] = ACTIONS(2125), + [aux_sym_preproc_if_token2] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_typedef] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym__Atomic] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2125), + [sym_number_literal] = ACTIONS(2127), + [anon_sym_volatile] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_signed] = ACTIONS(2125), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2125), + [anon_sym_L_SQUOTE] = ACTIONS(2127), + [anon_sym___attribute__] = ACTIONS(2125), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsigned] = ACTIONS(2125), + [anon_sym_short] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [sym_preproc_directive] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2127), + [aux_sym_preproc_if_token1] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_L_DQUOTE] = ACTIONS(2127), + [anon_sym_LPAREN2] = ACTIONS(2127), + [anon_sym_else] = ACTIONS(2125), + [sym_primitive_type] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2127), + [aux_sym_preproc_include_token1] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_register] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2127), + [aux_sym_preproc_def_token1] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_auto] = ACTIONS(2125), + [anon_sym_inline] = ACTIONS(2125), }, - [779] = { + [783] = { [sym_if_statement] = STATE(785), [sym_do_statement] = STATE(785), [sym_for_statement] = STATE(785), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), + [sym__expression] = STATE(1029), + [sym_comma_expression] = STATE(1030), + [sym_binary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(785), [sym_return_statement] = STATE(785), [sym_break_statement] = STATE(785), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), [sym_labeled_statement] = STATE(785), [sym_while_statement] = STATE(785), [sym_continue_statement] = STATE(785), [sym_goto_statement] = STATE(785), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(41), [sym_compound_statement] = STATE(785), [sym_expression_statement] = STATE(785), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [780] = { - [sym_if_statement] = STATE(786), - [sym_do_statement] = STATE(786), - [sym_for_statement] = STATE(786), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(786), - [sym_return_statement] = STATE(786), - [sym_break_statement] = STATE(786), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(786), - [sym_while_statement] = STATE(786), - [sym_continue_statement] = STATE(786), - [sym_goto_statement] = STATE(786), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(786), - [sym_expression_statement] = STATE(786), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [781] = { - [sym_if_statement] = STATE(788), - [sym_do_statement] = STATE(788), - [sym_for_statement] = STATE(788), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(788), - [sym_return_statement] = STATE(788), - [sym_break_statement] = STATE(788), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(788), - [sym_while_statement] = STATE(788), - [sym_continue_statement] = STATE(788), - [sym_goto_statement] = STATE(788), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(788), - [sym_expression_statement] = STATE(788), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [782] = { - [sym_false] = ACTIONS(1959), - [anon_sym_restrict] = ACTIONS(1959), - [sym_identifier] = ACTIONS(1959), - [anon_sym_goto] = ACTIONS(1959), - [aux_sym_preproc_if_token2] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [anon_sym_typedef] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym__Atomic] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1959), - [sym_number_literal] = ACTIONS(1961), - [anon_sym_volatile] = ACTIONS(1959), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_signed] = ACTIONS(1959), - [anon_sym_long] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1959), - [anon_sym_L] = ACTIONS(1959), - [anon_sym___attribute__] = ACTIONS(1959), - [anon_sym_sizeof] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_union] = ACTIONS(1959), - [anon_sym_unsigned] = ACTIONS(1959), - [anon_sym_short] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [sym_preproc_directive] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), - [aux_sym_preproc_if_token1] = ACTIONS(1959), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_LPAREN2] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1959), - [sym_primitive_type] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1961), - [aux_sym_preproc_include_token1] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_static] = ACTIONS(1959), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_switch] = ACTIONS(1959), - [sym_true] = ACTIONS(1959), - [anon_sym_enum] = ACTIONS(1959), - [sym_null] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [aux_sym_preproc_def_token1] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_auto] = ACTIONS(1959), - [anon_sym_inline] = ACTIONS(1959), - }, - [783] = { - [sym_if_statement] = STATE(791), - [sym_do_statement] = STATE(791), - [sym_for_statement] = STATE(791), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(791), - [sym_return_statement] = STATE(791), - [sym_break_statement] = STATE(791), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(791), - [sym_while_statement] = STATE(791), - [sym_continue_statement] = STATE(791), - [sym_goto_statement] = STATE(791), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(791), - [sym_expression_statement] = STATE(791), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(854), + [sym_true] = ACTIONS(836), + [sym_null] = ACTIONS(836), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(838), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(864), + [anon_sym_break] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(870), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(872), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(836), + [anon_sym_return] = ACTIONS(874), + [anon_sym_while] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [784] = { - [sym_if_statement] = STATE(792), - [sym_do_statement] = STATE(792), - [sym_for_statement] = STATE(792), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(792), - [sym_return_statement] = STATE(792), - [sym_break_statement] = STATE(792), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(792), - [sym_while_statement] = STATE(792), - [sym_continue_statement] = STATE(792), - [sym_goto_statement] = STATE(792), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(792), - [sym_expression_statement] = STATE(792), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(2129), + [anon_sym_restrict] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [anon_sym_goto] = ACTIONS(2129), + [aux_sym_preproc_if_token2] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_typedef] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym__Atomic] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2129), + [sym_number_literal] = ACTIONS(2131), + [anon_sym_volatile] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_signed] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2129), + [anon_sym_L_SQUOTE] = ACTIONS(2131), + [anon_sym___attribute__] = ACTIONS(2129), + [anon_sym_sizeof] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsigned] = ACTIONS(2129), + [anon_sym_short] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [sym_preproc_directive] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2131), + [aux_sym_preproc_if_token1] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_L_DQUOTE] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2129), + [sym_primitive_type] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2131), + [aux_sym_preproc_include_token1] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2131), + [aux_sym_preproc_def_token1] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_auto] = ACTIONS(2129), + [anon_sym_inline] = ACTIONS(2129), }, [785] = { - [sym_false] = ACTIONS(2027), - [anon_sym_restrict] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2027), - [anon_sym_goto] = ACTIONS(2027), - [aux_sym_preproc_if_token2] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [anon_sym_typedef] = ACTIONS(2027), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym__Atomic] = ACTIONS(2027), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2027), - [sym_number_literal] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2027), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_struct] = ACTIONS(2027), - [anon_sym_signed] = ACTIONS(2027), - [anon_sym_long] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2027), - [anon_sym_L] = ACTIONS(2027), - [anon_sym___attribute__] = ACTIONS(2027), - [anon_sym_sizeof] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2027), - [anon_sym_unsigned] = ACTIONS(2027), - [anon_sym_short] = ACTIONS(2027), - [anon_sym_do] = ACTIONS(2027), - [sym_preproc_directive] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2029), - [aux_sym_preproc_if_token1] = ACTIONS(2027), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_else] = ACTIONS(2027), - [sym_primitive_type] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_BANG] = ACTIONS(2029), - [aux_sym_preproc_include_token1] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_static] = ACTIONS(2027), - [anon_sym_register] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_switch] = ACTIONS(2027), - [sym_true] = ACTIONS(2027), - [anon_sym_enum] = ACTIONS(2027), - [sym_null] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2029), - [aux_sym_preproc_def_token1] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_auto] = ACTIONS(2027), - [anon_sym_inline] = ACTIONS(2027), + [sym_true] = ACTIONS(2133), + [anon_sym_restrict] = ACTIONS(2133), + [sym_null] = ACTIONS(2133), + [anon_sym_goto] = ACTIONS(2133), + [aux_sym_preproc_if_token2] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_typedef] = ACTIONS(2133), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym__Atomic] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2133), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2133), + [sym_number_literal] = ACTIONS(2135), + [anon_sym_volatile] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_signed] = ACTIONS(2133), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2133), + [anon_sym_L_SQUOTE] = ACTIONS(2135), + [anon_sym___attribute__] = ACTIONS(2133), + [anon_sym_sizeof] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_unsigned] = ACTIONS(2133), + [anon_sym_short] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [sym_preproc_directive] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_L_DQUOTE] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_else] = ACTIONS(2133), + [sym_primitive_type] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2135), + [aux_sym_preproc_include_token1] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2135), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_switch] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2135), + [aux_sym_preproc_def_token1] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_auto] = ACTIONS(2133), + [anon_sym_inline] = ACTIONS(2133), }, [786] = { - [sym_false] = ACTIONS(2031), - [anon_sym_restrict] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2031), - [anon_sym_goto] = ACTIONS(2031), - [aux_sym_preproc_if_token2] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_typedef] = ACTIONS(2031), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym__Atomic] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2031), - [sym_number_literal] = ACTIONS(2033), - [anon_sym_volatile] = ACTIONS(2031), - [anon_sym_SQUOTE] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_struct] = ACTIONS(2031), - [anon_sym_signed] = ACTIONS(2031), - [anon_sym_long] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2031), - [anon_sym_L] = ACTIONS(2031), - [anon_sym___attribute__] = ACTIONS(2031), - [anon_sym_sizeof] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_union] = ACTIONS(2031), - [anon_sym_unsigned] = ACTIONS(2031), - [anon_sym_short] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [sym_preproc_directive] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2033), - [aux_sym_preproc_if_token1] = ACTIONS(2031), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2031), - [sym_primitive_type] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [aux_sym_preproc_include_token1] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2031), - [anon_sym_STAR] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_switch] = ACTIONS(2031), - [sym_true] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [sym_null] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2033), - [aux_sym_preproc_def_token1] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_auto] = ACTIONS(2031), - [anon_sym_inline] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_case] = ACTIONS(255), + [sym_true] = ACTIONS(255), + [sym_null] = ACTIONS(255), + [anon_sym_do] = ACTIONS(255), + [anon_sym_goto] = ACTIONS(255), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_L_DQUOTE] = ACTIONS(257), + [anon_sym_LPAREN2] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_default] = ACTIONS(255), + [anon_sym_else] = ACTIONS(255), + [sym_identifier] = ACTIONS(255), + [anon_sym_for] = ACTIONS(255), + [anon_sym_break] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(255), + [sym_number_literal] = ACTIONS(257), + [anon_sym_DQUOTE] = ACTIONS(257), + [anon_sym_SQUOTE] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_if] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_switch] = ACTIONS(255), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(255), + [anon_sym_return] = ACTIONS(255), + [anon_sym_while] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_L_SQUOTE] = ACTIONS(257), + [anon_sym_sizeof] = ACTIONS(255), }, [787] = { - [sym_if_statement] = STATE(794), - [sym_do_statement] = STATE(794), - [sym_for_statement] = STATE(794), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(794), - [sym_return_statement] = STATE(794), - [sym_break_statement] = STATE(794), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(794), - [sym_while_statement] = STATE(794), - [sym_continue_statement] = STATE(794), - [sym_goto_statement] = STATE(794), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(794), - [sym_expression_statement] = STATE(794), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_case] = ACTIONS(336), + [sym_true] = ACTIONS(336), + [sym_null] = ACTIONS(336), + [anon_sym_do] = ACTIONS(336), + [anon_sym_goto] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_L_DQUOTE] = ACTIONS(338), + [anon_sym_LPAREN2] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_DASH_DASH] = ACTIONS(338), + [anon_sym_default] = ACTIONS(336), + [anon_sym_else] = ACTIONS(336), + [sym_identifier] = ACTIONS(336), + [anon_sym_for] = ACTIONS(336), + [anon_sym_break] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(336), + [sym_number_literal] = ACTIONS(338), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_SQUOTE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_if] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(336), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(336), + [anon_sym_return] = ACTIONS(336), + [anon_sym_while] = ACTIONS(336), + [anon_sym_continue] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_L_SQUOTE] = ACTIONS(338), + [anon_sym_sizeof] = ACTIONS(336), }, [788] = { - [sym_false] = ACTIONS(2035), - [anon_sym_restrict] = ACTIONS(2035), - [sym_identifier] = ACTIONS(2035), - [anon_sym_goto] = ACTIONS(2035), - [aux_sym_preproc_if_token2] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_typedef] = ACTIONS(2035), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym__Atomic] = ACTIONS(2035), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2035), - [sym_number_literal] = ACTIONS(2037), - [anon_sym_volatile] = ACTIONS(2035), - [anon_sym_SQUOTE] = ACTIONS(2037), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_signed] = ACTIONS(2035), - [anon_sym_long] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2035), - [anon_sym_L] = ACTIONS(2035), - [anon_sym___attribute__] = ACTIONS(2035), - [anon_sym_sizeof] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_union] = ACTIONS(2035), - [anon_sym_unsigned] = ACTIONS(2035), - [anon_sym_short] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [sym_preproc_directive] = ACTIONS(2035), - [anon_sym_AMP] = ACTIONS(2037), - [aux_sym_preproc_if_token1] = ACTIONS(2035), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2037), - [anon_sym_LPAREN2] = ACTIONS(2037), - [anon_sym_else] = ACTIONS(2035), - [sym_primitive_type] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [aux_sym_preproc_include_token1] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_register] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_switch] = ACTIONS(2035), - [sym_true] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [sym_null] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2037), - [aux_sym_preproc_def_token1] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_auto] = ACTIONS(2035), - [anon_sym_inline] = ACTIONS(2035), + [sym_true] = ACTIONS(368), + [anon_sym_restrict] = ACTIONS(368), + [sym_null] = ACTIONS(368), + [anon_sym_goto] = ACTIONS(368), + [aux_sym_preproc_if_token2] = ACTIONS(368), + [anon_sym_const] = ACTIONS(368), + [anon_sym_typedef] = ACTIONS(368), + [anon_sym_DASH_DASH] = ACTIONS(370), + [anon_sym__Atomic] = ACTIONS(368), + [sym_identifier] = ACTIONS(368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(368), + [sym_number_literal] = ACTIONS(370), + [anon_sym_volatile] = ACTIONS(368), + [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_extern] = ACTIONS(368), + [anon_sym_PLUS_PLUS] = ACTIONS(370), + [anon_sym_struct] = ACTIONS(368), + [anon_sym_signed] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(368), + [anon_sym_while] = ACTIONS(368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(368), + [anon_sym_L_SQUOTE] = ACTIONS(370), + [anon_sym___attribute__] = ACTIONS(368), + [anon_sym_sizeof] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_union] = ACTIONS(368), + [anon_sym_unsigned] = ACTIONS(368), + [anon_sym_short] = ACTIONS(368), + [anon_sym_do] = ACTIONS(368), + [sym_preproc_directive] = ACTIONS(368), + [anon_sym_AMP] = ACTIONS(370), + [aux_sym_preproc_if_token1] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_L_DQUOTE] = ACTIONS(370), + [anon_sym_LPAREN2] = ACTIONS(370), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_for] = ACTIONS(368), + [anon_sym_break] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [aux_sym_preproc_include_token1] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_static] = ACTIONS(368), + [anon_sym_DQUOTE] = ACTIONS(370), + [anon_sym_register] = ACTIONS(368), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_if] = ACTIONS(368), + [anon_sym_switch] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(368), + [sym_false] = ACTIONS(368), + [anon_sym_return] = ACTIONS(368), + [anon_sym_continue] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(370), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_auto] = ACTIONS(368), + [anon_sym_inline] = ACTIONS(368), }, [789] = { - [sym_if_statement] = STATE(795), - [sym_do_statement] = STATE(795), - [sym_for_statement] = STATE(795), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(795), - [sym_return_statement] = STATE(795), - [sym_break_statement] = STATE(795), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(795), - [sym_while_statement] = STATE(795), - [sym_continue_statement] = STATE(795), - [sym_goto_statement] = STATE(795), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(795), - [sym_expression_statement] = STATE(795), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(465), + [anon_sym_restrict] = ACTIONS(465), + [sym_null] = ACTIONS(465), + [anon_sym_goto] = ACTIONS(465), + [aux_sym_preproc_if_token2] = ACTIONS(465), + [anon_sym_const] = ACTIONS(465), + [anon_sym_typedef] = ACTIONS(465), + [anon_sym_DASH_DASH] = ACTIONS(467), + [anon_sym__Atomic] = ACTIONS(465), + [sym_identifier] = ACTIONS(465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(465), + [sym_number_literal] = ACTIONS(467), + [anon_sym_volatile] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_extern] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(467), + [anon_sym_struct] = ACTIONS(465), + [anon_sym_signed] = ACTIONS(465), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(465), + [anon_sym_while] = ACTIONS(465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(465), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym___attribute__] = ACTIONS(465), + [anon_sym_sizeof] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_union] = ACTIONS(465), + [anon_sym_unsigned] = ACTIONS(465), + [anon_sym_short] = ACTIONS(465), + [anon_sym_do] = ACTIONS(465), + [sym_preproc_directive] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(467), + [aux_sym_preproc_if_token1] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(467), + [anon_sym_LPAREN2] = ACTIONS(467), + [sym_primitive_type] = ACTIONS(465), + [anon_sym_for] = ACTIONS(465), + [anon_sym_break] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [aux_sym_preproc_include_token1] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_static] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_register] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(467), + [anon_sym_if] = ACTIONS(465), + [anon_sym_switch] = ACTIONS(465), + [anon_sym_enum] = ACTIONS(465), + [sym_false] = ACTIONS(465), + [anon_sym_return] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(467), + [aux_sym_preproc_def_token1] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_auto] = ACTIONS(465), + [anon_sym_inline] = ACTIONS(465), }, [790] = { - [sym_if_statement] = STATE(796), - [sym_do_statement] = STATE(796), - [sym_for_statement] = STATE(796), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(796), - [sym_return_statement] = STATE(796), - [sym_break_statement] = STATE(796), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(796), - [sym_while_statement] = STATE(796), - [sym_continue_statement] = STATE(796), - [sym_goto_statement] = STATE(796), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(796), - [sym_expression_statement] = STATE(796), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(802), + [sym_do_statement] = STATE(802), + [sym_for_statement] = STATE(802), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(802), + [sym_return_statement] = STATE(802), + [sym_break_statement] = STATE(802), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(802), + [sym_while_statement] = STATE(802), + [sym_continue_statement] = STATE(802), + [sym_goto_statement] = STATE(802), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(802), + [sym_expression_statement] = STATE(802), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [791] = { - [sym_false] = ACTIONS(2041), - [anon_sym_restrict] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2041), - [anon_sym_goto] = ACTIONS(2041), - [aux_sym_preproc_if_token2] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_typedef] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym__Atomic] = ACTIONS(2041), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2041), - [sym_number_literal] = ACTIONS(2043), - [anon_sym_volatile] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_signed] = ACTIONS(2041), - [anon_sym_long] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2041), - [anon_sym_L] = ACTIONS(2041), - [anon_sym___attribute__] = ACTIONS(2041), - [anon_sym_sizeof] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_unsigned] = ACTIONS(2041), - [anon_sym_short] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [sym_preproc_directive] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2043), - [aux_sym_preproc_if_token1] = ACTIONS(2041), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_LPAREN2] = ACTIONS(2043), - [anon_sym_else] = ACTIONS(2041), - [sym_primitive_type] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [aux_sym_preproc_include_token1] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_register] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_switch] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [sym_null] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2043), - [aux_sym_preproc_def_token1] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_auto] = ACTIONS(2041), - [anon_sym_inline] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_case] = ACTIONS(487), + [sym_true] = ACTIONS(487), + [sym_null] = ACTIONS(487), + [anon_sym_do] = ACTIONS(487), + [anon_sym_goto] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_L_DQUOTE] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(489), + [anon_sym_default] = ACTIONS(487), + [anon_sym_else] = ACTIONS(487), + [sym_identifier] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), + [anon_sym_break] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(487), + [sym_number_literal] = ACTIONS(489), + [anon_sym_DQUOTE] = ACTIONS(489), + [anon_sym_SQUOTE] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_if] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(487), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_L_SQUOTE] = ACTIONS(489), + [anon_sym_sizeof] = ACTIONS(487), }, [792] = { - [sym_false] = ACTIONS(2045), - [anon_sym_restrict] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [aux_sym_preproc_if_token2] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_typedef] = ACTIONS(2045), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym__Atomic] = ACTIONS(2045), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2045), - [sym_number_literal] = ACTIONS(2047), - [anon_sym_volatile] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_signed] = ACTIONS(2045), - [anon_sym_long] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2045), - [anon_sym_L] = ACTIONS(2045), - [anon_sym___attribute__] = ACTIONS(2045), - [anon_sym_sizeof] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_union] = ACTIONS(2045), - [anon_sym_unsigned] = ACTIONS(2045), - [anon_sym_short] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [sym_preproc_directive] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2047), - [aux_sym_preproc_if_token1] = ACTIONS(2045), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2047), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2045), - [sym_primitive_type] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [aux_sym_preproc_include_token1] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_register] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_switch] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [sym_null] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2047), - [aux_sym_preproc_def_token1] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_auto] = ACTIONS(2045), - [anon_sym_inline] = ACTIONS(2045), + [sym_if_statement] = STATE(803), + [sym_do_statement] = STATE(803), + [sym_for_statement] = STATE(803), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(803), + [sym_return_statement] = STATE(803), + [sym_break_statement] = STATE(803), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(803), + [sym_while_statement] = STATE(803), + [sym_continue_statement] = STATE(803), + [sym_goto_statement] = STATE(803), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(803), + [sym_expression_statement] = STATE(803), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [793] = { - [sym_if_statement] = STATE(798), - [sym_do_statement] = STATE(798), - [sym_for_statement] = STATE(798), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(798), - [sym_return_statement] = STATE(798), - [sym_break_statement] = STATE(798), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(798), - [sym_while_statement] = STATE(798), - [sym_continue_statement] = STATE(798), - [sym_goto_statement] = STATE(798), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(798), - [sym_expression_statement] = STATE(798), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(531), + [anon_sym_case] = ACTIONS(529), + [sym_true] = ACTIONS(529), + [sym_null] = ACTIONS(529), + [anon_sym_do] = ACTIONS(529), + [anon_sym_goto] = ACTIONS(529), + [anon_sym_AMP] = ACTIONS(531), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_L_DQUOTE] = ACTIONS(531), + [anon_sym_LPAREN2] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_DASH_DASH] = ACTIONS(531), + [anon_sym_default] = ACTIONS(529), + [anon_sym_else] = ACTIONS(529), + [sym_identifier] = ACTIONS(529), + [anon_sym_for] = ACTIONS(529), + [anon_sym_break] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(529), + [sym_number_literal] = ACTIONS(531), + [anon_sym_DQUOTE] = ACTIONS(531), + [anon_sym_SQUOTE] = ACTIONS(531), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_if] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(531), + [anon_sym_switch] = ACTIONS(529), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(529), + [anon_sym_return] = ACTIONS(529), + [anon_sym_while] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(529), + [anon_sym_SEMI] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_L_SQUOTE] = ACTIONS(531), + [anon_sym_sizeof] = ACTIONS(529), }, [794] = { - [sym_false] = ACTIONS(2161), - [anon_sym_restrict] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2161), - [anon_sym_goto] = ACTIONS(2161), - [aux_sym_preproc_if_token2] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_typedef] = ACTIONS(2161), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym__Atomic] = ACTIONS(2161), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2161), - [sym_number_literal] = ACTIONS(2163), - [anon_sym_volatile] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_extern] = ACTIONS(2161), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_signed] = ACTIONS(2161), - [anon_sym_long] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2161), - [anon_sym_L] = ACTIONS(2161), - [anon_sym___attribute__] = ACTIONS(2161), - [anon_sym_sizeof] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsigned] = ACTIONS(2161), - [anon_sym_short] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [sym_preproc_directive] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2163), - [aux_sym_preproc_if_token1] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_else] = ACTIONS(2161), - [sym_primitive_type] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2163), - [aux_sym_preproc_include_token1] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_register] = ACTIONS(2161), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_switch] = ACTIONS(2161), - [sym_true] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [sym_null] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2163), - [aux_sym_preproc_def_token1] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_auto] = ACTIONS(2161), - [anon_sym_inline] = ACTIONS(2161), + [sym_if_statement] = STATE(806), + [sym_do_statement] = STATE(806), + [sym_for_statement] = STATE(806), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(806), + [sym_return_statement] = STATE(806), + [sym_break_statement] = STATE(806), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(806), + [sym_while_statement] = STATE(806), + [sym_continue_statement] = STATE(806), + [sym_goto_statement] = STATE(806), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(806), + [sym_expression_statement] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [795] = { - [sym_false] = ACTIONS(2165), - [anon_sym_restrict] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2165), - [anon_sym_goto] = ACTIONS(2165), - [aux_sym_preproc_if_token2] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_typedef] = ACTIONS(2165), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym__Atomic] = ACTIONS(2165), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2165), - [sym_number_literal] = ACTIONS(2167), - [anon_sym_volatile] = ACTIONS(2165), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_signed] = ACTIONS(2165), - [anon_sym_long] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2165), - [anon_sym_L] = ACTIONS(2165), - [anon_sym___attribute__] = ACTIONS(2165), - [anon_sym_sizeof] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2165), - [anon_sym_unsigned] = ACTIONS(2165), - [anon_sym_short] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [sym_preproc_directive] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2167), - [aux_sym_preproc_if_token1] = ACTIONS(2165), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2165), - [sym_primitive_type] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2167), - [aux_sym_preproc_include_token1] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_register] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_switch] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [sym_null] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2167), - [aux_sym_preproc_def_token1] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_auto] = ACTIONS(2165), - [anon_sym_inline] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_case] = ACTIONS(535), + [sym_true] = ACTIONS(535), + [sym_null] = ACTIONS(535), + [anon_sym_do] = ACTIONS(535), + [anon_sym_goto] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_L_DQUOTE] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_default] = ACTIONS(535), + [anon_sym_else] = ACTIONS(535), + [sym_identifier] = ACTIONS(535), + [anon_sym_for] = ACTIONS(535), + [anon_sym_break] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(535), + [sym_number_literal] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(537), + [anon_sym_if] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_switch] = ACTIONS(535), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(535), + [anon_sym_return] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(535), + [anon_sym_SEMI] = ACTIONS(537), + [anon_sym_PLUS] = ACTIONS(535), + [anon_sym_L_SQUOTE] = ACTIONS(537), + [anon_sym_sizeof] = ACTIONS(535), }, [796] = { - [sym_false] = ACTIONS(2169), - [anon_sym_restrict] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2169), - [anon_sym_goto] = ACTIONS(2169), - [aux_sym_preproc_if_token2] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_typedef] = ACTIONS(2169), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym__Atomic] = ACTIONS(2169), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2169), - [sym_number_literal] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_signed] = ACTIONS(2169), - [anon_sym_long] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2169), - [anon_sym_L] = ACTIONS(2169), - [anon_sym___attribute__] = ACTIONS(2169), - [anon_sym_sizeof] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_unsigned] = ACTIONS(2169), - [anon_sym_short] = ACTIONS(2169), - [anon_sym_do] = ACTIONS(2169), - [sym_preproc_directive] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2171), - [aux_sym_preproc_if_token1] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_LPAREN2] = ACTIONS(2171), - [anon_sym_else] = ACTIONS(2169), - [sym_primitive_type] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2171), - [aux_sym_preproc_include_token1] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_register] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_switch] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [sym_null] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2171), - [aux_sym_preproc_def_token1] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_auto] = ACTIONS(2169), - [anon_sym_inline] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_case] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_null] = ACTIONS(605), + [anon_sym_do] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_L_DQUOTE] = ACTIONS(607), + [anon_sym_LPAREN2] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_default] = ACTIONS(605), + [anon_sym_else] = ACTIONS(605), + [sym_identifier] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(605), + [sym_number_literal] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_if] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_switch] = ACTIONS(605), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_while] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_L_SQUOTE] = ACTIONS(607), + [anon_sym_sizeof] = ACTIONS(605), }, [797] = { - [sym_if_statement] = STATE(799), - [sym_do_statement] = STATE(799), - [sym_for_statement] = STATE(799), - [sym__expression] = STATE(1047), - [sym_comma_expression] = STATE(1048), - [sym_binary_expression] = STATE(1047), - [sym_update_expression] = STATE(1047), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(799), - [sym_return_statement] = STATE(799), - [sym_break_statement] = STATE(799), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_labeled_statement] = STATE(799), - [sym_while_statement] = STATE(799), - [sym_continue_statement] = STATE(799), - [sym_goto_statement] = STATE(799), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(799), - [sym_expression_statement] = STATE(799), - [anon_sym_LBRACE] = ACTIONS(867), - [sym_false] = ACTIONS(869), - [sym_identifier] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(873), - [anon_sym_goto] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(887), - [anon_sym_break] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(901), - [sym_true] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [anon_sym_return] = ACTIONS(903), - [anon_sym_while] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(794), + [anon_sym_case] = ACTIONS(792), + [sym_true] = ACTIONS(792), + [sym_null] = ACTIONS(792), + [anon_sym_do] = ACTIONS(792), + [anon_sym_goto] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_TILDE] = ACTIONS(794), + [anon_sym_L_DQUOTE] = ACTIONS(794), + [anon_sym_LPAREN2] = ACTIONS(794), + [anon_sym_RBRACE] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [anon_sym_default] = ACTIONS(792), + [anon_sym_else] = ACTIONS(792), + [sym_identifier] = ACTIONS(792), + [anon_sym_for] = ACTIONS(792), + [anon_sym_break] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(792), + [sym_number_literal] = ACTIONS(794), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_if] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(792), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(792), + [anon_sym_return] = ACTIONS(792), + [anon_sym_while] = ACTIONS(792), + [anon_sym_continue] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_L_SQUOTE] = ACTIONS(794), + [anon_sym_sizeof] = ACTIONS(792), }, [798] = { - [sym_false] = ACTIONS(2173), - [anon_sym_restrict] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2173), - [anon_sym_goto] = ACTIONS(2173), - [aux_sym_preproc_if_token2] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_typedef] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym__Atomic] = ACTIONS(2173), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2173), - [sym_number_literal] = ACTIONS(2175), - [anon_sym_volatile] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_signed] = ACTIONS(2173), - [anon_sym_long] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2173), - [anon_sym_L] = ACTIONS(2173), - [anon_sym___attribute__] = ACTIONS(2173), - [anon_sym_sizeof] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_unsigned] = ACTIONS(2173), - [anon_sym_short] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [sym_preproc_directive] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2175), - [aux_sym_preproc_if_token1] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2173), - [sym_primitive_type] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2175), - [aux_sym_preproc_include_token1] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_register] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2175), - [aux_sym_preproc_def_token1] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_auto] = ACTIONS(2173), - [anon_sym_inline] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_case] = ACTIONS(822), + [sym_true] = ACTIONS(822), + [sym_null] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_goto] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_L_DQUOTE] = ACTIONS(824), + [anon_sym_LPAREN2] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [anon_sym_default] = ACTIONS(822), + [anon_sym_else] = ACTIONS(822), + [sym_identifier] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(822), + [sym_number_literal] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_SQUOTE] = ACTIONS(824), + [anon_sym_STAR] = ACTIONS(824), + [anon_sym_if] = ACTIONS(822), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_switch] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_L_SQUOTE] = ACTIONS(824), + [anon_sym_sizeof] = ACTIONS(822), }, [799] = { - [sym_false] = ACTIONS(2177), - [anon_sym_restrict] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2177), - [anon_sym_goto] = ACTIONS(2177), - [aux_sym_preproc_if_token2] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_typedef] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym__Atomic] = ACTIONS(2177), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2177), - [sym_number_literal] = ACTIONS(2179), - [anon_sym_volatile] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_extern] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_signed] = ACTIONS(2177), - [anon_sym_long] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2177), - [anon_sym_L] = ACTIONS(2177), - [anon_sym___attribute__] = ACTIONS(2177), - [anon_sym_sizeof] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsigned] = ACTIONS(2177), - [anon_sym_short] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [sym_preproc_directive] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2179), - [aux_sym_preproc_if_token1] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(2179), - [anon_sym_LPAREN2] = ACTIONS(2179), - [anon_sym_else] = ACTIONS(2177), - [sym_primitive_type] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2179), - [aux_sym_preproc_include_token1] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_register] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_switch] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [sym_null] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_SEMI] = ACTIONS(2179), - [aux_sym_preproc_def_token1] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_auto] = ACTIONS(2177), - [anon_sym_inline] = ACTIONS(2177), + [sym_true] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [sym_null] = ACTIONS(826), + [anon_sym_goto] = ACTIONS(826), + [aux_sym_preproc_if_token2] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_typedef] = ACTIONS(826), + [anon_sym_DASH_DASH] = ACTIONS(828), + [anon_sym__Atomic] = ACTIONS(826), + [sym_identifier] = ACTIONS(826), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), + [sym_number_literal] = ACTIONS(828), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_struct] = ACTIONS(826), + [anon_sym_signed] = ACTIONS(826), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [anon_sym_L_SQUOTE] = ACTIONS(828), + [anon_sym___attribute__] = ACTIONS(826), + [anon_sym_sizeof] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsigned] = ACTIONS(826), + [anon_sym_short] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [sym_preproc_directive] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(828), + [aux_sym_preproc_if_token1] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(828), + [anon_sym_L_DQUOTE] = ACTIONS(828), + [anon_sym_LPAREN2] = ACTIONS(828), + [sym_primitive_type] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(828), + [aux_sym_preproc_include_token1] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_register] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_if] = ACTIONS(826), + [anon_sym_switch] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [sym_false] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(828), + [aux_sym_preproc_def_token1] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_auto] = ACTIONS(826), + [anon_sym_inline] = ACTIONS(826), }, [800] = { - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_case] = ACTIONS(257), - [sym_false] = ACTIONS(257), - [sym_identifier] = ACTIONS(257), - [anon_sym_do] = ACTIONS(257), - [anon_sym_goto] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(259), - [anon_sym_LPAREN2] = ACTIONS(259), - [anon_sym_RBRACE] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_default] = ACTIONS(257), - [anon_sym_else] = ACTIONS(257), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(257), - [anon_sym_break] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(257), - [sym_number_literal] = ACTIONS(259), - [anon_sym_SQUOTE] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(259), - [anon_sym_if] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(257), - [sym_true] = ACTIONS(257), - [sym_null] = ACTIONS(257), - [anon_sym_return] = ACTIONS(257), - [anon_sym_while] = ACTIONS(257), - [anon_sym_continue] = ACTIONS(257), - [anon_sym_SEMI] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_L] = ACTIONS(257), - [anon_sym_sizeof] = ACTIONS(257), + [sym_true] = ACTIONS(892), + [anon_sym_restrict] = ACTIONS(892), + [sym_null] = ACTIONS(892), + [anon_sym_goto] = ACTIONS(892), + [aux_sym_preproc_if_token2] = ACTIONS(892), + [anon_sym_const] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(892), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(892), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(892), + [sym_number_literal] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(892), + [anon_sym_signed] = ACTIONS(892), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(892), + [anon_sym_while] = ACTIONS(892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(892), + [aux_sym_preproc_elif_token1] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_union] = ACTIONS(892), + [anon_sym_unsigned] = ACTIONS(892), + [anon_sym_short] = ACTIONS(892), + [anon_sym_do] = ACTIONS(892), + [aux_sym_preproc_else_token1] = ACTIONS(892), + [sym_preproc_directive] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_L_DQUOTE] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_else] = ACTIONS(892), + [sym_primitive_type] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_break] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_static] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(894), + [anon_sym_register] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_if] = ACTIONS(892), + [anon_sym_switch] = ACTIONS(892), + [anon_sym_enum] = ACTIONS(892), + [sym_false] = ACTIONS(892), + [anon_sym_return] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(892), + [anon_sym_auto] = ACTIONS(892), + [anon_sym_inline] = ACTIONS(892), }, [801] = { - [anon_sym_LBRACE] = ACTIONS(350), - [anon_sym_case] = ACTIONS(348), - [sym_false] = ACTIONS(348), - [sym_identifier] = ACTIONS(348), - [anon_sym_do] = ACTIONS(348), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(350), - [anon_sym_TILDE] = ACTIONS(350), - [anon_sym_DQUOTE] = ACTIONS(350), - [anon_sym_LPAREN2] = ACTIONS(350), - [anon_sym_RBRACE] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_default] = ACTIONS(348), - [anon_sym_else] = ACTIONS(348), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(348), - [anon_sym_break] = ACTIONS(348), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_DASH] = ACTIONS(348), - [sym_number_literal] = ACTIONS(350), - [anon_sym_SQUOTE] = ACTIONS(350), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_if] = ACTIONS(348), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_switch] = ACTIONS(348), - [sym_true] = ACTIONS(348), - [sym_null] = ACTIONS(348), - [anon_sym_return] = ACTIONS(348), - [anon_sym_while] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(348), - [anon_sym_L] = ACTIONS(348), - [anon_sym_sizeof] = ACTIONS(348), + [sym_true] = ACTIONS(937), + [anon_sym_restrict] = ACTIONS(937), + [sym_null] = ACTIONS(937), + [anon_sym_goto] = ACTIONS(937), + [aux_sym_preproc_if_token2] = ACTIONS(937), + [anon_sym_const] = ACTIONS(937), + [anon_sym_typedef] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym__Atomic] = ACTIONS(937), + [sym_identifier] = ACTIONS(937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(937), + [sym_number_literal] = ACTIONS(939), + [anon_sym_volatile] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(937), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(937), + [anon_sym_signed] = ACTIONS(937), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(937), + [anon_sym_while] = ACTIONS(937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(937), + [anon_sym_L_SQUOTE] = ACTIONS(939), + [anon_sym___attribute__] = ACTIONS(937), + [anon_sym_sizeof] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_union] = ACTIONS(937), + [anon_sym_unsigned] = ACTIONS(937), + [anon_sym_short] = ACTIONS(937), + [anon_sym_do] = ACTIONS(937), + [sym_preproc_directive] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(939), + [aux_sym_preproc_if_token1] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_L_DQUOTE] = ACTIONS(939), + [anon_sym_LPAREN2] = ACTIONS(939), + [sym_primitive_type] = ACTIONS(937), + [anon_sym_for] = ACTIONS(937), + [anon_sym_break] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(939), + [aux_sym_preproc_include_token1] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_static] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_register] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_if] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(937), + [sym_false] = ACTIONS(937), + [anon_sym_return] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), + [aux_sym_preproc_def_token1] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_auto] = ACTIONS(937), + [anon_sym_inline] = ACTIONS(937), }, [802] = { - [sym_if_statement] = STATE(812), - [sym_do_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_break_statement] = STATE(812), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_case] = ACTIONS(950), + [sym_true] = ACTIONS(950), + [sym_null] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_goto] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_L_DQUOTE] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_default] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [sym_identifier] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(950), + [sym_number_literal] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_if] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(950), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(950), }, [803] = { - [anon_sym_LBRACE] = ACTIONS(386), - [anon_sym_union] = ACTIONS(388), - [sym_true] = ACTIONS(388), - [anon_sym_unsigned] = ACTIONS(388), - [anon_sym_restrict] = ACTIONS(388), - [anon_sym_short] = ACTIONS(388), - [sym_false] = ACTIONS(388), - [sym_null] = ACTIONS(388), - [sym_identifier] = ACTIONS(388), - [anon_sym_do] = ACTIONS(388), - [anon_sym_goto] = ACTIONS(388), - [aux_sym_preproc_if_token2] = ACTIONS(388), - [sym_preproc_directive] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(386), - [aux_sym_preproc_if_token1] = ACTIONS(388), - [anon_sym_TILDE] = ACTIONS(386), - [anon_sym_const] = ACTIONS(388), - [anon_sym_LPAREN2] = ACTIONS(386), - [anon_sym_typedef] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(386), - [anon_sym_DQUOTE] = ACTIONS(386), - [anon_sym__Atomic] = ACTIONS(388), - [sym_primitive_type] = ACTIONS(388), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(388), - [anon_sym_break] = ACTIONS(388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [anon_sym_BANG] = ACTIONS(386), - [aux_sym_preproc_include_token1] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(388), - [anon_sym_static] = ACTIONS(388), - [anon_sym_volatile] = ACTIONS(388), - [anon_sym_register] = ACTIONS(388), - [anon_sym_extern] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_if] = ACTIONS(388), - [anon_sym_struct] = ACTIONS(388), - [anon_sym_switch] = ACTIONS(388), - [anon_sym_signed] = ACTIONS(388), - [anon_sym_enum] = ACTIONS(388), - [anon_sym_long] = ACTIONS(388), - [anon_sym_PLUS_PLUS] = ACTIONS(386), - [sym_number_literal] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_while] = ACTIONS(388), - [anon_sym_continue] = ACTIONS(388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [anon_sym_SEMI] = ACTIONS(386), - [anon_sym_SQUOTE] = ACTIONS(386), - [aux_sym_preproc_def_token1] = ACTIONS(388), - [anon_sym_PLUS] = ACTIONS(388), - [anon_sym_auto] = ACTIONS(388), - [anon_sym_L] = ACTIONS(388), - [anon_sym_inline] = ACTIONS(388), - [anon_sym___attribute__] = ACTIONS(388), - [anon_sym_sizeof] = ACTIONS(388), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_case] = ACTIONS(984), + [sym_true] = ACTIONS(984), + [sym_null] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_default] = ACTIONS(984), + [anon_sym_else] = ACTIONS(2445), + [sym_identifier] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_if] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), }, [804] = { - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_union] = ACTIONS(483), - [sym_true] = ACTIONS(483), - [anon_sym_unsigned] = ACTIONS(483), - [anon_sym_restrict] = ACTIONS(483), - [anon_sym_short] = ACTIONS(483), - [sym_false] = ACTIONS(483), - [sym_null] = ACTIONS(483), - [sym_identifier] = ACTIONS(483), - [anon_sym_do] = ACTIONS(483), - [anon_sym_goto] = ACTIONS(483), - [aux_sym_preproc_if_token2] = ACTIONS(483), - [sym_preproc_directive] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(485), - [aux_sym_preproc_if_token1] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_const] = ACTIONS(483), - [anon_sym_LPAREN2] = ACTIONS(485), - [anon_sym_typedef] = ACTIONS(483), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_DQUOTE] = ACTIONS(485), - [anon_sym__Atomic] = ACTIONS(483), - [sym_primitive_type] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(483), - [anon_sym_BANG] = ACTIONS(485), - [aux_sym_preproc_include_token1] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_register] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(485), - [anon_sym_if] = ACTIONS(483), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_signed] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [anon_sym_long] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [sym_number_literal] = ACTIONS(485), - [anon_sym_return] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(483), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_SQUOTE] = ACTIONS(485), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_auto] = ACTIONS(483), - [anon_sym_L] = ACTIONS(483), - [anon_sym_inline] = ACTIONS(483), - [anon_sym___attribute__] = ACTIONS(483), - [anon_sym_sizeof] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_case] = ACTIONS(1028), + [sym_true] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [sym_identifier] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_switch] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), }, [805] = { - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_case] = ACTIONS(499), - [sym_false] = ACTIONS(499), - [sym_identifier] = ACTIONS(499), - [anon_sym_do] = ACTIONS(499), - [anon_sym_goto] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_LPAREN2] = ACTIONS(501), - [anon_sym_RBRACE] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym_default] = ACTIONS(499), - [anon_sym_else] = ACTIONS(499), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(499), - [anon_sym_break] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(499), - [sym_number_literal] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_if] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(499), - [sym_true] = ACTIONS(499), - [sym_null] = ACTIONS(499), - [anon_sym_return] = ACTIONS(499), - [anon_sym_while] = ACTIONS(499), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_L] = ACTIONS(499), - [anon_sym_sizeof] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_case] = ACTIONS(1052), + [sym_true] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_switch] = ACTIONS(1052), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), }, [806] = { - [sym_if_statement] = STATE(817), - [sym_do_statement] = STATE(817), - [sym_for_statement] = STATE(817), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(817), - [sym_return_statement] = STATE(817), - [sym_break_statement] = STATE(817), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(817), - [sym_while_statement] = STATE(817), - [sym_continue_statement] = STATE(817), - [sym_goto_statement] = STATE(817), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(817), - [sym_expression_statement] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_case] = ACTIONS(1056), + [sym_true] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_switch] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), }, [807] = { - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_case] = ACTIONS(541), - [sym_false] = ACTIONS(541), - [sym_identifier] = ACTIONS(541), - [anon_sym_do] = ACTIONS(541), - [anon_sym_goto] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [anon_sym_TILDE] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [anon_sym_LPAREN2] = ACTIONS(543), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_DASH_DASH] = ACTIONS(543), - [anon_sym_default] = ACTIONS(541), - [anon_sym_else] = ACTIONS(541), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(541), - [anon_sym_break] = ACTIONS(541), - [anon_sym_BANG] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(541), - [sym_number_literal] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_if] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(541), - [sym_true] = ACTIONS(541), - [sym_null] = ACTIONS(541), - [anon_sym_return] = ACTIONS(541), - [anon_sym_while] = ACTIONS(541), - [anon_sym_continue] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(541), - [anon_sym_L] = ACTIONS(541), - [anon_sym_sizeof] = ACTIONS(541), + [sym_true] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [anon_sym_goto] = ACTIONS(1062), + [aux_sym_preproc_if_token2] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), + [sym_number_literal] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1062), + [anon_sym_signed] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_unsigned] = ACTIONS(1062), + [anon_sym_short] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_L_DQUOTE] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_switch] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_auto] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), }, [808] = { - [sym_if_statement] = STATE(820), - [sym_do_statement] = STATE(820), - [sym_for_statement] = STATE(820), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(820), - [sym_return_statement] = STATE(820), - [sym_break_statement] = STATE(820), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(820), - [sym_while_statement] = STATE(820), - [sym_continue_statement] = STATE(820), - [sym_goto_statement] = STATE(820), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(820), - [sym_expression_statement] = STATE(820), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_case] = ACTIONS(1226), + [sym_true] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [anon_sym_goto] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1228), + [anon_sym_L_DQUOTE] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1226), + [sym_number_literal] = ACTIONS(1228), + [anon_sym_DQUOTE] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1228), + [anon_sym_sizeof] = ACTIONS(1226), }, [809] = { - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_case] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [anon_sym_do] = ACTIONS(547), - [anon_sym_goto] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_DQUOTE] = ACTIONS(549), - [anon_sym_LPAREN2] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym_default] = ACTIONS(547), - [anon_sym_else] = ACTIONS(547), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(547), - [anon_sym_break] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_DASH] = ACTIONS(547), - [sym_number_literal] = ACTIONS(549), - [anon_sym_SQUOTE] = ACTIONS(549), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_if] = ACTIONS(547), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_switch] = ACTIONS(547), - [sym_true] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_return] = ACTIONS(547), - [anon_sym_while] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_L] = ACTIONS(547), - [anon_sym_sizeof] = ACTIONS(547), + [sym_if_statement] = STATE(815), + [sym_do_statement] = STATE(815), + [sym_for_statement] = STATE(815), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(815), + [sym_return_statement] = STATE(815), + [sym_break_statement] = STATE(815), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(815), + [sym_while_statement] = STATE(815), + [sym_continue_statement] = STATE(815), + [sym_goto_statement] = STATE(815), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(815), + [sym_expression_statement] = STATE(815), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [810] = { - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_case] = ACTIONS(625), - [sym_false] = ACTIONS(625), - [sym_identifier] = ACTIONS(625), - [anon_sym_do] = ACTIONS(625), - [anon_sym_goto] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_LPAREN2] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_default] = ACTIONS(625), - [anon_sym_else] = ACTIONS(625), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(625), - [anon_sym_break] = ACTIONS(625), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(625), - [sym_number_literal] = ACTIONS(627), - [anon_sym_SQUOTE] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_if] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(625), - [sym_true] = ACTIONS(625), - [sym_null] = ACTIONS(625), - [anon_sym_return] = ACTIONS(625), - [anon_sym_while] = ACTIONS(625), - [anon_sym_continue] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(625), - [anon_sym_L] = ACTIONS(625), - [anon_sym_sizeof] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1380), + [sym_true] = ACTIONS(1380), + [sym_null] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), }, [811] = { - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_case] = ACTIONS(815), - [sym_false] = ACTIONS(815), - [sym_identifier] = ACTIONS(815), - [anon_sym_do] = ACTIONS(815), - [anon_sym_goto] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(817), - [anon_sym_TILDE] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_LPAREN2] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_default] = ACTIONS(815), - [anon_sym_else] = ACTIONS(815), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(815), - [anon_sym_break] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(815), - [sym_number_literal] = ACTIONS(817), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_if] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_switch] = ACTIONS(815), - [sym_true] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [anon_sym_return] = ACTIONS(815), - [anon_sym_while] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_L] = ACTIONS(815), - [anon_sym_sizeof] = ACTIONS(815), + [sym_true] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), }, [812] = { - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_case] = ACTIONS(847), - [sym_false] = ACTIONS(847), - [sym_identifier] = ACTIONS(847), - [anon_sym_do] = ACTIONS(847), - [anon_sym_goto] = ACTIONS(847), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_LPAREN2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_default] = ACTIONS(847), - [anon_sym_else] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(847), - [anon_sym_break] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(847), - [sym_number_literal] = ACTIONS(849), - [anon_sym_SQUOTE] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_if] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_switch] = ACTIONS(847), - [sym_true] = ACTIONS(847), - [sym_null] = ACTIONS(847), - [anon_sym_return] = ACTIONS(847), - [anon_sym_while] = ACTIONS(847), - [anon_sym_continue] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_L] = ACTIONS(847), - [anon_sym_sizeof] = ACTIONS(847), + [sym_true] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [sym_null] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), }, [813] = { - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_case] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [sym_identifier] = ACTIONS(853), - [anon_sym_do] = ACTIONS(853), - [anon_sym_goto] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [anon_sym_LPAREN2] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(855), - [anon_sym_default] = ACTIONS(853), - [anon_sym_else] = ACTIONS(853), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(853), - [sym_number_literal] = ACTIONS(855), - [anon_sym_SQUOTE] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_if] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(855), - [anon_sym_switch] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [anon_sym_return] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_L] = ACTIONS(853), - [anon_sym_sizeof] = ACTIONS(853), + [sym_if_statement] = STATE(818), + [sym_do_statement] = STATE(818), + [sym_for_statement] = STATE(818), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(818), + [sym_return_statement] = STATE(818), + [sym_break_statement] = STATE(818), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(818), + [sym_while_statement] = STATE(818), + [sym_continue_statement] = STATE(818), + [sym_goto_statement] = STATE(818), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(818), + [sym_expression_statement] = STATE(818), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [814] = { - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_union] = ACTIONS(859), - [sym_true] = ACTIONS(859), - [anon_sym_unsigned] = ACTIONS(859), - [anon_sym_restrict] = ACTIONS(859), - [anon_sym_short] = ACTIONS(859), - [sym_false] = ACTIONS(859), - [sym_null] = ACTIONS(859), - [sym_identifier] = ACTIONS(859), - [anon_sym_do] = ACTIONS(859), - [anon_sym_goto] = ACTIONS(859), - [aux_sym_preproc_if_token2] = ACTIONS(859), - [sym_preproc_directive] = ACTIONS(859), - [anon_sym_AMP] = ACTIONS(857), - [aux_sym_preproc_if_token1] = ACTIONS(859), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_const] = ACTIONS(859), - [anon_sym_LPAREN2] = ACTIONS(857), - [anon_sym_typedef] = ACTIONS(859), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym__Atomic] = ACTIONS(859), - [sym_primitive_type] = ACTIONS(859), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(859), - [anon_sym_break] = ACTIONS(859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(859), - [anon_sym_BANG] = ACTIONS(857), - [aux_sym_preproc_include_token1] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_static] = ACTIONS(859), - [anon_sym_volatile] = ACTIONS(859), - [anon_sym_register] = ACTIONS(859), - [anon_sym_extern] = ACTIONS(859), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_if] = ACTIONS(859), - [anon_sym_struct] = ACTIONS(859), - [anon_sym_switch] = ACTIONS(859), - [anon_sym_signed] = ACTIONS(859), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_long] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [sym_number_literal] = ACTIONS(857), - [anon_sym_return] = ACTIONS(859), - [anon_sym_while] = ACTIONS(859), - [anon_sym_continue] = ACTIONS(859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(857), - [aux_sym_preproc_def_token1] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_auto] = ACTIONS(859), - [anon_sym_L] = ACTIONS(859), - [anon_sym_inline] = ACTIONS(859), - [anon_sym___attribute__] = ACTIONS(859), - [anon_sym_sizeof] = ACTIONS(859), + [sym_if_statement] = STATE(822), + [sym_do_statement] = STATE(822), + [sym_for_statement] = STATE(822), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(822), + [sym_return_statement] = STATE(822), + [sym_break_statement] = STATE(822), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(822), + [sym_while_statement] = STATE(822), + [sym_continue_statement] = STATE(822), + [sym_goto_statement] = STATE(822), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(822), + [sym_expression_statement] = STATE(822), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [815] = { - [sym_false] = ACTIONS(923), - [anon_sym_restrict] = ACTIONS(923), - [sym_identifier] = ACTIONS(923), - [anon_sym_goto] = ACTIONS(923), - [aux_sym_preproc_if_token2] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_typedef] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(925), - [anon_sym__Atomic] = ACTIONS(923), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [sym_number_literal] = ACTIONS(925), - [anon_sym_volatile] = ACTIONS(923), - [anon_sym_SQUOTE] = ACTIONS(925), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_signed] = ACTIONS(923), - [anon_sym_long] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [aux_sym_preproc_elif_token1] = ACTIONS(923), - [anon_sym_L] = ACTIONS(923), - [anon_sym___attribute__] = ACTIONS(923), - [anon_sym_sizeof] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_union] = ACTIONS(923), - [anon_sym_unsigned] = ACTIONS(923), - [anon_sym_short] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [aux_sym_preproc_else_token1] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [anon_sym_TILDE] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_else] = ACTIONS(923), - [sym_primitive_type] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(925), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_if] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(923), - [sym_true] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [sym_null] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_auto] = ACTIONS(923), - [anon_sym_inline] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_case] = ACTIONS(1654), + [sym_true] = ACTIONS(1654), + [sym_null] = ACTIONS(1654), + [anon_sym_do] = ACTIONS(1654), + [anon_sym_goto] = ACTIONS(1654), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1656), + [anon_sym_L_DQUOTE] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_DASH_DASH] = ACTIONS(1656), + [anon_sym_default] = ACTIONS(1654), + [anon_sym_else] = ACTIONS(1654), + [sym_identifier] = ACTIONS(1654), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1656), + [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_SQUOTE] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_PLUS_PLUS] = ACTIONS(1656), + [anon_sym_switch] = ACTIONS(1654), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1654), + [anon_sym_L_SQUOTE] = ACTIONS(1656), + [anon_sym_sizeof] = ACTIONS(1654), }, [816] = { - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_union] = ACTIONS(968), - [sym_true] = ACTIONS(968), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_restrict] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_goto] = ACTIONS(968), - [aux_sym_preproc_if_token2] = ACTIONS(968), - [sym_preproc_directive] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_const] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(968), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_static] = ACTIONS(968), - [anon_sym_volatile] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_if] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_signed] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [sym_number_literal] = ACTIONS(970), - [anon_sym_return] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [aux_sym_preproc_ifdef_token2] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_auto] = ACTIONS(968), - [anon_sym_L] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym___attribute__] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1666), + [sym_true] = ACTIONS(1666), + [sym_null] = ACTIONS(1666), + [anon_sym_do] = ACTIONS(1666), + [anon_sym_goto] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_TILDE] = ACTIONS(1668), + [anon_sym_L_DQUOTE] = ACTIONS(1668), + [anon_sym_LPAREN2] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_DASH_DASH] = ACTIONS(1668), + [anon_sym_default] = ACTIONS(1666), + [anon_sym_else] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1666), + [sym_number_literal] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_PLUS_PLUS] = ACTIONS(1668), + [anon_sym_switch] = ACTIONS(1666), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_L_SQUOTE] = ACTIONS(1668), + [anon_sym_sizeof] = ACTIONS(1666), }, [817] = { - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_case] = ACTIONS(1007), - [sym_false] = ACTIONS(1007), - [sym_identifier] = ACTIONS(1007), - [anon_sym_do] = ACTIONS(1007), - [anon_sym_goto] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [anon_sym_LPAREN2] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_default] = ACTIONS(1007), - [anon_sym_else] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1007), - [sym_number_literal] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_switch] = ACTIONS(1007), - [sym_true] = ACTIONS(1007), - [sym_null] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_L] = ACTIONS(1007), - [anon_sym_sizeof] = ACTIONS(1007), + [sym_true] = ACTIONS(1763), + [anon_sym_restrict] = ACTIONS(1763), + [sym_null] = ACTIONS(1763), + [anon_sym_goto] = ACTIONS(1763), + [aux_sym_preproc_if_token2] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_typedef] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym__Atomic] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), + [sym_number_literal] = ACTIONS(1765), + [anon_sym_volatile] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_struct] = ACTIONS(1763), + [anon_sym_signed] = ACTIONS(1763), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), + [anon_sym_L_SQUOTE] = ACTIONS(1765), + [anon_sym___attribute__] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1763), + [sym_preproc_directive] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + [aux_sym_preproc_if_token1] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_L_DQUOTE] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1765), + [sym_primitive_type] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1765), + [aux_sym_preproc_include_token1] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_switch] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [sym_false] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [aux_sym_preproc_def_token1] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_auto] = ACTIONS(1763), + [anon_sym_inline] = ACTIONS(1763), }, [818] = { - [anon_sym_LBRACE] = ACTIONS(1053), - [anon_sym_case] = ACTIONS(1051), - [sym_false] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(1051), - [anon_sym_goto] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1053), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1053), - [anon_sym_LPAREN2] = ACTIONS(1053), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_DASH_DASH] = ACTIONS(1053), - [anon_sym_default] = ACTIONS(1051), - [anon_sym_else] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1051), - [sym_number_literal] = ACTIONS(1053), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1053), - [anon_sym_switch] = ACTIONS(1051), - [sym_true] = ACTIONS(1051), - [sym_null] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1053), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_L] = ACTIONS(1051), - [anon_sym_sizeof] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_case] = ACTIONS(1904), + [sym_true] = ACTIONS(1904), + [sym_null] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_L_DQUOTE] = ACTIONS(1906), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_else] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1904), + [sym_number_literal] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_switch] = ACTIONS(1904), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_L_SQUOTE] = ACTIONS(1906), + [anon_sym_sizeof] = ACTIONS(1904), }, [819] = { - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_case] = ACTIONS(1071), - [sym_false] = ACTIONS(1071), - [sym_identifier] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(1071), - [anon_sym_goto] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_TILDE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1073), - [anon_sym_LPAREN2] = ACTIONS(1073), - [anon_sym_RBRACE] = ACTIONS(1073), - [anon_sym_DASH_DASH] = ACTIONS(1073), - [anon_sym_default] = ACTIONS(1071), - [anon_sym_else] = ACTIONS(1071), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1071), - [sym_number_literal] = ACTIONS(1073), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_STAR] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_PLUS_PLUS] = ACTIONS(1073), - [anon_sym_switch] = ACTIONS(1071), - [sym_true] = ACTIONS(1071), - [sym_null] = ACTIONS(1071), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_L] = ACTIONS(1071), - [anon_sym_sizeof] = ACTIONS(1071), + [sym_if_statement] = STATE(825), + [sym_do_statement] = STATE(825), + [sym_for_statement] = STATE(825), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(825), + [sym_return_statement] = STATE(825), + [sym_break_statement] = STATE(825), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(825), + [sym_while_statement] = STATE(825), + [sym_continue_statement] = STATE(825), + [sym_goto_statement] = STATE(825), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(825), + [sym_expression_statement] = STATE(825), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [820] = { - [anon_sym_LBRACE] = ACTIONS(1077), - [anon_sym_case] = ACTIONS(1075), - [sym_false] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(1075), - [anon_sym_goto] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - [anon_sym_TILDE] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_LPAREN2] = ACTIONS(1077), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_DASH_DASH] = ACTIONS(1077), - [anon_sym_default] = ACTIONS(1075), - [anon_sym_else] = ACTIONS(1075), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_break] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1075), - [sym_number_literal] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1077), - [anon_sym_STAR] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(1075), - [sym_true] = ACTIONS(1075), - [sym_null] = ACTIONS(1075), - [anon_sym_return] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1075), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1077), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_L] = ACTIONS(1075), - [anon_sym_sizeof] = ACTIONS(1075), + [sym_if_statement] = STATE(826), + [sym_do_statement] = STATE(826), + [sym_for_statement] = STATE(826), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(826), + [sym_return_statement] = STATE(826), + [sym_break_statement] = STATE(826), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(826), + [sym_while_statement] = STATE(826), + [sym_continue_statement] = STATE(826), + [sym_goto_statement] = STATE(826), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(826), + [sym_expression_statement] = STATE(826), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [821] = { - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_union] = ACTIONS(1087), - [sym_true] = ACTIONS(1087), - [anon_sym_unsigned] = ACTIONS(1087), - [anon_sym_restrict] = ACTIONS(1087), - [anon_sym_short] = ACTIONS(1087), - [sym_false] = ACTIONS(1087), - [sym_null] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1087), - [anon_sym_do] = ACTIONS(1087), - [anon_sym_goto] = ACTIONS(1087), - [aux_sym_preproc_if_token2] = ACTIONS(1087), - [sym_preproc_directive] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1085), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_LPAREN2] = ACTIONS(1085), - [anon_sym_typedef] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym__Atomic] = ACTIONS(1087), - [sym_primitive_type] = ACTIONS(1087), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1085), - [aux_sym_preproc_include_token1] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_volatile] = ACTIONS(1087), - [anon_sym_register] = ACTIONS(1087), - [anon_sym_extern] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1087), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_switch] = ACTIONS(1087), - [anon_sym_signed] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [anon_sym_long] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1085), - [sym_number_literal] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_while] = ACTIONS(1087), - [anon_sym_continue] = ACTIONS(1087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1085), - [anon_sym_SQUOTE] = ACTIONS(1085), - [aux_sym_preproc_def_token1] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_auto] = ACTIONS(1087), - [anon_sym_L] = ACTIONS(1087), - [anon_sym_inline] = ACTIONS(1087), - [anon_sym___attribute__] = ACTIONS(1087), - [anon_sym_sizeof] = ACTIONS(1087), + [sym_if_statement] = STATE(828), + [sym_do_statement] = STATE(828), + [sym_for_statement] = STATE(828), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(828), + [sym_return_statement] = STATE(828), + [sym_break_statement] = STATE(828), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(828), + [sym_while_statement] = STATE(828), + [sym_continue_statement] = STATE(828), + [sym_goto_statement] = STATE(828), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(828), + [sym_expression_statement] = STATE(828), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [822] = { - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_case] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1260), - [sym_true] = ACTIONS(1260), - [sym_null] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_L] = ACTIONS(1260), - [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1918), + [sym_true] = ACTIONS(1918), + [sym_null] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [anon_sym_goto] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_TILDE] = ACTIONS(1920), + [anon_sym_L_DQUOTE] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_DASH_DASH] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_else] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1918), + [sym_number_literal] = ACTIONS(1920), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1920), + [anon_sym_switch] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_L_SQUOTE] = ACTIONS(1920), + [anon_sym_sizeof] = ACTIONS(1918), }, [823] = { - [sym_if_statement] = STATE(830), - [sym_do_statement] = STATE(830), - [sym_for_statement] = STATE(830), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(830), - [sym_return_statement] = STATE(830), - [sym_break_statement] = STATE(830), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(830), - [sym_while_statement] = STATE(830), - [sym_continue_statement] = STATE(830), - [sym_goto_statement] = STATE(830), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(830), - [sym_expression_statement] = STATE(830), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(831), + [sym_do_statement] = STATE(831), + [sym_for_statement] = STATE(831), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(831), + [sym_return_statement] = STATE(831), + [sym_break_statement] = STATE(831), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(831), + [sym_while_statement] = STATE(831), + [sym_continue_statement] = STATE(831), + [sym_goto_statement] = STATE(831), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(831), + [sym_expression_statement] = STATE(831), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [824] = { - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_else] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1410), - [sym_true] = ACTIONS(1410), - [sym_null] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_L] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1410), + [sym_if_statement] = STATE(832), + [sym_do_statement] = STATE(832), + [sym_for_statement] = STATE(832), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(832), + [sym_return_statement] = STATE(832), + [sym_break_statement] = STATE(832), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_continue_statement] = STATE(832), + [sym_goto_statement] = STATE(832), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(832), + [sym_expression_statement] = STATE(832), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [825] = { - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1432), - [sym_true] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [sym_null] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_L] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1986), + [sym_true] = ACTIONS(1986), + [sym_null] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_goto] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_L_DQUOTE] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_DASH] = ACTIONS(1986), + [sym_number_literal] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1986), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1988), + [anon_sym_sizeof] = ACTIONS(1986), }, [826] = { - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1442), - [sym_true] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [sym_null] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_L] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1990), + [sym_true] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_TILDE] = ACTIONS(1992), + [anon_sym_L_DQUOTE] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_else] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1992), + [anon_sym_DASH] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_SQUOTE] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1990), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1992), + [anon_sym_sizeof] = ACTIONS(1990), }, [827] = { - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1450), - [sym_true] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), - [sym_null] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [aux_sym_preproc_if_token2] = ACTIONS(1450), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(1450), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_L] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1450), + [sym_if_statement] = STATE(834), + [sym_do_statement] = STATE(834), + [sym_for_statement] = STATE(834), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(834), + [sym_return_statement] = STATE(834), + [sym_break_statement] = STATE(834), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(834), + [sym_while_statement] = STATE(834), + [sym_continue_statement] = STATE(834), + [sym_goto_statement] = STATE(834), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(834), + [sym_expression_statement] = STATE(834), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [828] = { - [sym_if_statement] = STATE(833), - [sym_do_statement] = STATE(833), - [sym_for_statement] = STATE(833), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(833), - [sym_return_statement] = STATE(833), - [sym_break_statement] = STATE(833), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(833), - [sym_while_statement] = STATE(833), - [sym_continue_statement] = STATE(833), - [sym_goto_statement] = STATE(833), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(833), - [sym_expression_statement] = STATE(833), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_case] = ACTIONS(1994), + [sym_true] = ACTIONS(1994), + [sym_null] = ACTIONS(1994), + [anon_sym_do] = ACTIONS(1994), + [anon_sym_goto] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_TILDE] = ACTIONS(1996), + [anon_sym_L_DQUOTE] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_else] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1996), + [anon_sym_DASH] = ACTIONS(1994), + [sym_number_literal] = ACTIONS(1996), + [anon_sym_DQUOTE] = ACTIONS(1996), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1994), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1996), + [anon_sym_sizeof] = ACTIONS(1994), }, [829] = { - [sym_if_statement] = STATE(837), - [sym_do_statement] = STATE(837), - [sym_for_statement] = STATE(837), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(837), - [sym_return_statement] = STATE(837), - [sym_break_statement] = STATE(837), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(837), - [sym_while_statement] = STATE(837), - [sym_continue_statement] = STATE(837), - [sym_goto_statement] = STATE(837), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(837), - [sym_expression_statement] = STATE(837), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(835), + [sym_do_statement] = STATE(835), + [sym_for_statement] = STATE(835), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(835), + [sym_return_statement] = STATE(835), + [sym_break_statement] = STATE(835), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(835), + [sym_while_statement] = STATE(835), + [sym_continue_statement] = STATE(835), + [sym_goto_statement] = STATE(835), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(835), + [sym_expression_statement] = STATE(835), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [830] = { - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_case] = ACTIONS(1692), - [sym_false] = ACTIONS(1692), - [sym_identifier] = ACTIONS(1692), - [anon_sym_do] = ACTIONS(1692), - [anon_sym_goto] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_LPAREN2] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_else] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1692), - [sym_number_literal] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_switch] = ACTIONS(1692), - [sym_true] = ACTIONS(1692), - [sym_null] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_L] = ACTIONS(1692), - [anon_sym_sizeof] = ACTIONS(1692), + [sym_if_statement] = STATE(836), + [sym_do_statement] = STATE(836), + [sym_for_statement] = STATE(836), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(836), + [sym_return_statement] = STATE(836), + [sym_break_statement] = STATE(836), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(836), + [sym_while_statement] = STATE(836), + [sym_continue_statement] = STATE(836), + [sym_goto_statement] = STATE(836), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(836), + [sym_expression_statement] = STATE(836), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [831] = { - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_case] = ACTIONS(1704), - [sym_false] = ACTIONS(1704), - [sym_identifier] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_goto] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_else] = ACTIONS(1704), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1704), - [sym_number_literal] = ACTIONS(1706), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_L] = ACTIONS(1704), - [anon_sym_sizeof] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_case] = ACTIONS(2000), + [sym_true] = ACTIONS(2000), + [sym_null] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_switch] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym_sizeof] = ACTIONS(2000), }, [832] = { - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1806), - [sym_true] = ACTIONS(1806), - [anon_sym_unsigned] = ACTIONS(1806), - [anon_sym_restrict] = ACTIONS(1806), - [anon_sym_short] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1806), - [anon_sym_goto] = ACTIONS(1806), - [aux_sym_preproc_if_token2] = ACTIONS(1806), - [sym_preproc_directive] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1806), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [anon_sym__Atomic] = ACTIONS(1806), - [sym_primitive_type] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1804), - [aux_sym_preproc_include_token1] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_volatile] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_switch] = ACTIONS(1806), - [anon_sym_signed] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(1806), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [anon_sym_L] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [anon_sym___attribute__] = ACTIONS(1806), - [anon_sym_sizeof] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_case] = ACTIONS(2004), + [sym_true] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_switch] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), }, [833] = { - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_case] = ACTIONS(1945), - [sym_false] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_goto] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1947), - [anon_sym_TILDE] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [anon_sym_LPAREN2] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1945), - [sym_number_literal] = ACTIONS(1947), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_PLUS_PLUS] = ACTIONS(1947), - [anon_sym_switch] = ACTIONS(1945), - [sym_true] = ACTIONS(1945), - [sym_null] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1945), - [anon_sym_L] = ACTIONS(1945), - [anon_sym_sizeof] = ACTIONS(1945), + [sym_if_statement] = STATE(838), + [sym_do_statement] = STATE(838), + [sym_for_statement] = STATE(838), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(838), + [sym_return_statement] = STATE(838), + [sym_break_statement] = STATE(838), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(838), + [sym_while_statement] = STATE(838), + [sym_continue_statement] = STATE(838), + [sym_goto_statement] = STATE(838), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(838), + [sym_expression_statement] = STATE(838), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [834] = { - [sym_if_statement] = STATE(840), - [sym_do_statement] = STATE(840), - [sym_for_statement] = STATE(840), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(840), - [sym_return_statement] = STATE(840), - [sym_break_statement] = STATE(840), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(840), - [sym_while_statement] = STATE(840), - [sym_continue_statement] = STATE(840), - [sym_goto_statement] = STATE(840), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(840), - [sym_expression_statement] = STATE(840), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_case] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_null] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_goto] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_L_DQUOTE] = ACTIONS(2119), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_else] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2117), + [sym_number_literal] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_switch] = ACTIONS(2117), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_L_SQUOTE] = ACTIONS(2119), + [anon_sym_sizeof] = ACTIONS(2117), }, [835] = { - [sym_if_statement] = STATE(841), - [sym_do_statement] = STATE(841), - [sym_for_statement] = STATE(841), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(841), - [sym_return_statement] = STATE(841), - [sym_break_statement] = STATE(841), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(841), - [sym_while_statement] = STATE(841), - [sym_continue_statement] = STATE(841), - [sym_goto_statement] = STATE(841), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(841), - [sym_expression_statement] = STATE(841), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_case] = ACTIONS(2121), + [sym_true] = ACTIONS(2121), + [sym_null] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_goto] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_L_DQUOTE] = ACTIONS(2123), + [anon_sym_LPAREN2] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_else] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2121), + [sym_number_literal] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_switch] = ACTIONS(2121), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_L_SQUOTE] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2121), }, [836] = { - [sym_if_statement] = STATE(843), - [sym_do_statement] = STATE(843), - [sym_for_statement] = STATE(843), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(843), - [sym_return_statement] = STATE(843), - [sym_break_statement] = STATE(843), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(843), - [sym_while_statement] = STATE(843), - [sym_continue_statement] = STATE(843), - [sym_goto_statement] = STATE(843), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(843), - [sym_expression_statement] = STATE(843), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_case] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_goto] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_L_DQUOTE] = ACTIONS(2127), + [anon_sym_LPAREN2] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2125), + [sym_number_literal] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(2125), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_L_SQUOTE] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(2125), }, [837] = { - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_case] = ACTIONS(1959), - [sym_false] = ACTIONS(1959), - [sym_identifier] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_goto] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [anon_sym_LPAREN2] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1959), - [sym_number_literal] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1961), - [anon_sym_switch] = ACTIONS(1959), - [sym_true] = ACTIONS(1959), - [sym_null] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_L] = ACTIONS(1959), - [anon_sym_sizeof] = ACTIONS(1959), + [sym_if_statement] = STATE(839), + [sym_do_statement] = STATE(839), + [sym_for_statement] = STATE(839), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(839), + [sym_return_statement] = STATE(839), + [sym_break_statement] = STATE(839), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(839), + [sym_while_statement] = STATE(839), + [sym_continue_statement] = STATE(839), + [sym_goto_statement] = STATE(839), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(839), + [sym_expression_statement] = STATE(839), + [anon_sym_LBRACE] = ACTIONS(994), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [838] = { - [sym_if_statement] = STATE(846), - [sym_do_statement] = STATE(846), - [sym_for_statement] = STATE(846), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(846), - [sym_return_statement] = STATE(846), - [sym_break_statement] = STATE(846), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(846), - [sym_while_statement] = STATE(846), - [sym_continue_statement] = STATE(846), - [sym_goto_statement] = STATE(846), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(846), - [sym_expression_statement] = STATE(846), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_case] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_goto] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2131), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_L_DQUOTE] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2129), + [sym_number_literal] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2131), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_switch] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_L_SQUOTE] = ACTIONS(2131), + [anon_sym_sizeof] = ACTIONS(2129), }, [839] = { - [sym_if_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_goto_statement] = STATE(847), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(847), - [sym_expression_statement] = STATE(847), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_case] = ACTIONS(2133), + [sym_true] = ACTIONS(2133), + [sym_null] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_goto] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_L_DQUOTE] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym_default] = ACTIONS(2133), + [anon_sym_else] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2133), + [sym_number_literal] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_PLUS_PLUS] = ACTIONS(2135), + [anon_sym_switch] = ACTIONS(2133), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_L_SQUOTE] = ACTIONS(2135), + [anon_sym_sizeof] = ACTIONS(2133), }, [840] = { - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_case] = ACTIONS(2027), - [sym_false] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2027), - [anon_sym_do] = ACTIONS(2027), - [anon_sym_goto] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [anon_sym_LPAREN2] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_default] = ACTIONS(2027), - [anon_sym_else] = ACTIONS(2027), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2027), - [sym_number_literal] = ACTIONS(2029), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_switch] = ACTIONS(2027), - [sym_true] = ACTIONS(2027), - [sym_null] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_L] = ACTIONS(2027), - [anon_sym_sizeof] = ACTIONS(2027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(368), + [anon_sym_union] = ACTIONS(368), + [anon_sym_unsigned] = ACTIONS(368), + [anon_sym_restrict] = ACTIONS(368), + [anon_sym_short] = ACTIONS(368), + [anon_sym_static] = ACTIONS(368), + [anon_sym_volatile] = ACTIONS(368), + [anon_sym_register] = ACTIONS(368), + [anon_sym_extern] = ACTIONS(368), + [aux_sym_preproc_else_token1] = ACTIONS(368), + [aux_sym_preproc_if_token2] = ACTIONS(368), + [sym_preproc_directive] = ACTIONS(368), + [anon_sym_signed] = ACTIONS(368), + [aux_sym_preproc_if_token1] = ACTIONS(368), + [anon_sym_long] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(368), + [anon_sym_const] = ACTIONS(368), + [anon_sym_struct] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(368), + [aux_sym_preproc_elif_token1] = ACTIONS(368), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [anon_sym__Atomic] = ACTIONS(368), + [anon_sym_auto] = ACTIONS(368), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_inline] = ACTIONS(368), + [anon_sym___attribute__] = ACTIONS(368), + [sym_identifier] = ACTIONS(368), }, [841] = { - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_case] = ACTIONS(2031), - [sym_false] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2031), - [anon_sym_do] = ACTIONS(2031), - [anon_sym_goto] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym_TILDE] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [anon_sym_LPAREN2] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2033), - [anon_sym_default] = ACTIONS(2031), - [anon_sym_else] = ACTIONS(2031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2031), - [sym_number_literal] = ACTIONS(2033), - [anon_sym_SQUOTE] = ACTIONS(2033), - [anon_sym_STAR] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(2033), - [anon_sym_switch] = ACTIONS(2031), - [sym_true] = ACTIONS(2031), - [sym_null] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_PLUS] = ACTIONS(2031), - [anon_sym_L] = ACTIONS(2031), - [anon_sym_sizeof] = ACTIONS(2031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsigned] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym_short] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_register] = ACTIONS(826), + [anon_sym_extern] = ACTIONS(826), + [aux_sym_preproc_else_token1] = ACTIONS(826), + [aux_sym_preproc_if_token2] = ACTIONS(826), + [sym_preproc_directive] = ACTIONS(826), + [anon_sym_signed] = ACTIONS(826), + [aux_sym_preproc_if_token1] = ACTIONS(826), + [anon_sym_long] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_struct] = ACTIONS(826), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_elif_token1] = ACTIONS(826), + [aux_sym_preproc_def_token1] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym_auto] = ACTIONS(826), + [sym_primitive_type] = ACTIONS(826), + [anon_sym_inline] = ACTIONS(826), + [anon_sym___attribute__] = ACTIONS(826), + [sym_identifier] = ACTIONS(826), }, [842] = { - [sym_if_statement] = STATE(849), - [sym_do_statement] = STATE(849), - [sym_for_statement] = STATE(849), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(849), - [sym_return_statement] = STATE(849), - [sym_break_statement] = STATE(849), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(849), - [sym_while_statement] = STATE(849), - [sym_continue_statement] = STATE(849), - [sym_goto_statement] = STATE(849), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(849), - [sym_expression_statement] = STATE(849), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(892), + [anon_sym_restrict] = ACTIONS(892), + [sym_null] = ACTIONS(892), + [anon_sym_goto] = ACTIONS(892), + [aux_sym_preproc_if_token2] = ACTIONS(892), + [anon_sym_const] = ACTIONS(892), + [anon_sym_typedef] = ACTIONS(892), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym__Atomic] = ACTIONS(892), + [sym_identifier] = ACTIONS(892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(892), + [sym_number_literal] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(892), + [anon_sym_signed] = ACTIONS(892), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(892), + [anon_sym_while] = ACTIONS(892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(892), + [anon_sym_L_SQUOTE] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(892), + [anon_sym_sizeof] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_union] = ACTIONS(892), + [anon_sym_unsigned] = ACTIONS(892), + [anon_sym_short] = ACTIONS(892), + [anon_sym_do] = ACTIONS(892), + [sym_preproc_directive] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [aux_sym_preproc_if_token1] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_L_DQUOTE] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_else] = ACTIONS(892), + [sym_primitive_type] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_break] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(894), + [aux_sym_preproc_include_token1] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_static] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(894), + [anon_sym_register] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_if] = ACTIONS(892), + [anon_sym_switch] = ACTIONS(892), + [anon_sym_enum] = ACTIONS(892), + [sym_false] = ACTIONS(892), + [anon_sym_return] = ACTIONS(892), + [anon_sym_continue] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(894), + [aux_sym_preproc_def_token1] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(892), + [anon_sym_auto] = ACTIONS(892), + [anon_sym_inline] = ACTIONS(892), }, [843] = { - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_case] = ACTIONS(2035), - [sym_false] = ACTIONS(2035), - [sym_identifier] = ACTIONS(2035), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_goto] = ACTIONS(2035), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_TILDE] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2037), - [anon_sym_LPAREN2] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_DASH_DASH] = ACTIONS(2037), - [anon_sym_default] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(2035), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_DASH] = ACTIONS(2035), - [sym_number_literal] = ACTIONS(2037), - [anon_sym_SQUOTE] = ACTIONS(2037), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_PLUS_PLUS] = ACTIONS(2037), - [anon_sym_switch] = ACTIONS(2035), - [sym_true] = ACTIONS(2035), - [sym_null] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_PLUS] = ACTIONS(2035), - [anon_sym_L] = ACTIONS(2035), - [anon_sym_sizeof] = ACTIONS(2035), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_unsigned] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_short] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [aux_sym_preproc_else_token1] = ACTIONS(1062), + [aux_sym_preproc_if_token2] = ACTIONS(1062), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_signed] = ACTIONS(1062), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [anon_sym_struct] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [aux_sym_preproc_elif_token1] = ACTIONS(1062), + [aux_sym_preproc_def_token1] = ACTIONS(1062), + [anon_sym__Atomic] = ACTIONS(1062), + [anon_sym_auto] = ACTIONS(1062), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym___attribute__] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1062), }, [844] = { - [sym_if_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_goto_statement] = STATE(850), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(850), - [sym_expression_statement] = STATE(850), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [aux_sym_preproc_else_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [aux_sym_preproc_elif_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1400), }, [845] = { - [sym_if_statement] = STATE(851), - [sym_do_statement] = STATE(851), - [sym_for_statement] = STATE(851), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(851), - [sym_return_statement] = STATE(851), - [sym_break_statement] = STATE(851), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(851), - [sym_while_statement] = STATE(851), - [sym_continue_statement] = STATE(851), - [sym_goto_statement] = STATE(851), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(851), - [sym_expression_statement] = STATE(851), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [aux_sym_preproc_else_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [aux_sym_preproc_elif_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1410), }, [846] = { - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_case] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_goto] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_TILDE] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [anon_sym_LPAREN2] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_default] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2041), - [sym_number_literal] = ACTIONS(2043), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2043), - [anon_sym_switch] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [sym_null] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_L] = ACTIONS(2041), - [anon_sym_sizeof] = ACTIONS(2041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_restrict] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_volatile] = ACTIONS(1763), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_extern] = ACTIONS(1763), + [aux_sym_preproc_else_token1] = ACTIONS(1763), + [aux_sym_preproc_if_token2] = ACTIONS(1763), + [sym_preproc_directive] = ACTIONS(1763), + [anon_sym_signed] = ACTIONS(1763), + [aux_sym_preproc_if_token1] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1763), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), + [aux_sym_preproc_elif_token1] = ACTIONS(1763), + [aux_sym_preproc_def_token1] = ACTIONS(1763), + [anon_sym__Atomic] = ACTIONS(1763), + [anon_sym_auto] = ACTIONS(1763), + [sym_primitive_type] = ACTIONS(1763), + [anon_sym_inline] = ACTIONS(1763), + [anon_sym___attribute__] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1763), }, [847] = { - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_case] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_TILDE] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2047), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_DASH_DASH] = ACTIONS(2047), - [anon_sym_default] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2045), - [sym_number_literal] = ACTIONS(2047), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_PLUS_PLUS] = ACTIONS(2047), - [anon_sym_switch] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [sym_null] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_L] = ACTIONS(2045), - [anon_sym_sizeof] = ACTIONS(2045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(368), + [anon_sym_union] = ACTIONS(368), + [anon_sym_unsigned] = ACTIONS(368), + [anon_sym_restrict] = ACTIONS(368), + [anon_sym_short] = ACTIONS(368), + [anon_sym_static] = ACTIONS(368), + [anon_sym_volatile] = ACTIONS(368), + [anon_sym_register] = ACTIONS(368), + [anon_sym_extern] = ACTIONS(368), + [aux_sym_preproc_if_token2] = ACTIONS(368), + [sym_preproc_directive] = ACTIONS(368), + [anon_sym_signed] = ACTIONS(368), + [aux_sym_preproc_if_token1] = ACTIONS(368), + [anon_sym_long] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(368), + [anon_sym_const] = ACTIONS(368), + [anon_sym_struct] = ACTIONS(368), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(368), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [anon_sym__Atomic] = ACTIONS(368), + [anon_sym_auto] = ACTIONS(368), + [sym_primitive_type] = ACTIONS(368), + [anon_sym_inline] = ACTIONS(368), + [anon_sym___attribute__] = ACTIONS(368), + [sym_identifier] = ACTIONS(368), }, [848] = { - [sym_if_statement] = STATE(853), - [sym_do_statement] = STATE(853), - [sym_for_statement] = STATE(853), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(853), - [sym_return_statement] = STATE(853), - [sym_break_statement] = STATE(853), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(853), - [sym_while_statement] = STATE(853), - [sym_continue_statement] = STATE(853), - [sym_goto_statement] = STATE(853), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(853), - [sym_expression_statement] = STATE(853), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_preproc_ifdef_token1] = ACTIONS(826), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsigned] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym_short] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_register] = ACTIONS(826), + [anon_sym_extern] = ACTIONS(826), + [aux_sym_preproc_if_token2] = ACTIONS(826), + [sym_preproc_directive] = ACTIONS(826), + [anon_sym_signed] = ACTIONS(826), + [aux_sym_preproc_if_token1] = ACTIONS(826), + [anon_sym_long] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [anon_sym_const] = ACTIONS(826), + [anon_sym_struct] = ACTIONS(826), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(826), + [aux_sym_preproc_def_token1] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym_auto] = ACTIONS(826), + [sym_primitive_type] = ACTIONS(826), + [anon_sym_inline] = ACTIONS(826), + [anon_sym___attribute__] = ACTIONS(826), + [sym_identifier] = ACTIONS(826), }, - [849] = { - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_case] = ACTIONS(2161), - [sym_false] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2161), - [anon_sym_do] = ACTIONS(2161), - [anon_sym_goto] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(2163), - [anon_sym_LPAREN2] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_DASH_DASH] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_else] = ACTIONS(2161), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2161), - [sym_number_literal] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_PLUS_PLUS] = ACTIONS(2163), - [anon_sym_switch] = ACTIONS(2161), - [sym_true] = ACTIONS(2161), - [sym_null] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_L] = ACTIONS(2161), - [anon_sym_sizeof] = ACTIONS(2161), + [849] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1062), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_unsigned] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [anon_sym_short] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_volatile] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [aux_sym_preproc_if_token2] = ACTIONS(1062), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_signed] = ACTIONS(1062), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [anon_sym_struct] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [aux_sym_preproc_def_token1] = ACTIONS(1062), + [anon_sym__Atomic] = ACTIONS(1062), + [anon_sym_auto] = ACTIONS(1062), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym___attribute__] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1062), }, [850] = { - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2165), - [sym_false] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2165), - [anon_sym_do] = ACTIONS(2165), - [anon_sym_goto] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_LPAREN2] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2165), - [anon_sym_else] = ACTIONS(2165), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2165), - [sym_number_literal] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [sym_null] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_L] = ACTIONS(2165), - [anon_sym_sizeof] = ACTIONS(2165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1400), }, [851] = { - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_case] = ACTIONS(2169), - [sym_false] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2169), - [anon_sym_do] = ACTIONS(2169), - [anon_sym_goto] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(2171), - [anon_sym_LPAREN2] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_DASH_DASH] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(2169), - [anon_sym_else] = ACTIONS(2169), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2169), - [sym_number_literal] = ACTIONS(2171), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_PLUS_PLUS] = ACTIONS(2171), - [anon_sym_switch] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [sym_null] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_L] = ACTIONS(2169), - [anon_sym_sizeof] = ACTIONS(2169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1410), }, [852] = { - [sym_if_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_break_statement] = STATE(854), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_continue_statement] = STATE(854), - [sym_goto_statement] = STATE(854), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(854), - [sym_expression_statement] = STATE(854), - [anon_sym_LBRACE] = ACTIONS(1017), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1763), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_restrict] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_volatile] = ACTIONS(1763), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_extern] = ACTIONS(1763), + [aux_sym_preproc_if_token2] = ACTIONS(1763), + [sym_preproc_directive] = ACTIONS(1763), + [anon_sym_signed] = ACTIONS(1763), + [aux_sym_preproc_if_token1] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1763), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1763), + [aux_sym_preproc_def_token1] = ACTIONS(1763), + [anon_sym__Atomic] = ACTIONS(1763), + [anon_sym_auto] = ACTIONS(1763), + [sym_primitive_type] = ACTIONS(1763), + [anon_sym_inline] = ACTIONS(1763), + [anon_sym___attribute__] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1763), }, [853] = { - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_case] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_goto] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2173), - [sym_number_literal] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2175), - [anon_sym_switch] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_L] = ACTIONS(2173), - [anon_sym_sizeof] = ACTIONS(2173), + [sym_do_statement] = STATE(869), + [sym_preproc_function_def] = STATE(869), + [sym__expression] = STATE(866), + [sym_binary_expression] = STATE(866), + [sym_declaration] = STATE(869), + [sym_call_expression] = STATE(36), + [sym__type_specifier] = STATE(868), + [sym_break_statement] = STATE(869), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(869), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym__empty_declaration] = STATE(869), + [sym_sized_type_specifier] = STATE(868), + [sym_preproc_include] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_preproc_ifdef] = STATE(869), + [sym_pointer_expression] = STATE(36), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_macro_type_specifier] = STATE(868), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(868), + [sym_if_statement] = STATE(869), + [sym_preproc_def] = STATE(869), + [sym_for_statement] = STATE(869), + [sym_comma_expression] = STATE(867), + [sym_function_definition] = STATE(869), + [sym_update_expression] = STATE(866), + [sym_type_qualifier] = STATE(43), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(868), + [sym_switch_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_preproc_call] = STATE(869), + [sym_conditional_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(869), + [sym_while_statement] = STATE(869), + [sym_preproc_if] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym_unary_expression] = STATE(866), + [sym_linkage_specification] = STATE(869), + [sym_subscript_expression] = STATE(36), + [sym_string_literal] = STATE(41), + [aux_sym_translation_unit_repeat1] = STATE(869), + [sym_compound_statement] = STATE(869), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_expression_statement] = STATE(869), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2447), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [854] = { - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_case] = ACTIONS(2177), - [sym_false] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2177), - [anon_sym_do] = ACTIONS(2177), - [anon_sym_goto] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2179), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(2179), - [anon_sym_LPAREN2] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_else] = ACTIONS(2177), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_DASH] = ACTIONS(2177), - [sym_number_literal] = ACTIONS(2179), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_STAR] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_switch] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [sym_null] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_L] = ACTIONS(2177), - [anon_sym_sizeof] = ACTIONS(2177), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(2449), + [sym_preproc_arg] = ACTIONS(2451), }, [855] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [anon_sym_union] = ACTIONS(388), - [anon_sym_unsigned] = ACTIONS(388), - [anon_sym_restrict] = ACTIONS(388), - [anon_sym_short] = ACTIONS(388), - [anon_sym_static] = ACTIONS(388), - [anon_sym_volatile] = ACTIONS(388), - [anon_sym_register] = ACTIONS(388), - [anon_sym_extern] = ACTIONS(388), - [sym_identifier] = ACTIONS(388), - [aux_sym_preproc_else_token1] = ACTIONS(388), - [aux_sym_preproc_if_token2] = ACTIONS(388), - [sym_preproc_directive] = ACTIONS(388), - [anon_sym_signed] = ACTIONS(388), - [aux_sym_preproc_if_token1] = ACTIONS(388), - [anon_sym_long] = ACTIONS(388), - [anon_sym_enum] = ACTIONS(388), - [anon_sym_const] = ACTIONS(388), - [anon_sym_struct] = ACTIONS(388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_elif_token1] = ACTIONS(388), - [aux_sym_preproc_def_token1] = ACTIONS(388), - [anon_sym__Atomic] = ACTIONS(388), - [anon_sym_auto] = ACTIONS(388), - [sym_primitive_type] = ACTIONS(388), - [anon_sym_inline] = ACTIONS(388), - [anon_sym___attribute__] = ACTIONS(388), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(56), + [sym__expression] = STATE(56), + [sym_binary_expression] = STATE(56), + [sym_update_expression] = STATE(56), + [sym_call_expression] = STATE(56), + [sym_pointer_expression] = STATE(56), + [sym_unary_expression] = STATE(56), + [sym_sizeof_expression] = STATE(56), + [sym_subscript_expression] = STATE(56), + [sym_parenthesized_expression] = STATE(56), + [sym_concatenated_string] = STATE(56), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(56), + [sym_assignment_expression] = STATE(56), + [sym_cast_expression] = STATE(56), + [sym_field_expression] = STATE(56), + [sym_compound_literal_expression] = STATE(56), + [sym_true] = ACTIONS(169), + [sym_null] = ACTIONS(169), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(173), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [856] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(859), - [anon_sym_union] = ACTIONS(859), - [anon_sym_unsigned] = ACTIONS(859), - [anon_sym_restrict] = ACTIONS(859), - [anon_sym_short] = ACTIONS(859), - [anon_sym_static] = ACTIONS(859), - [anon_sym_volatile] = ACTIONS(859), - [anon_sym_register] = ACTIONS(859), - [anon_sym_extern] = ACTIONS(859), - [sym_identifier] = ACTIONS(859), - [aux_sym_preproc_else_token1] = ACTIONS(859), - [aux_sym_preproc_if_token2] = ACTIONS(859), - [sym_preproc_directive] = ACTIONS(859), - [anon_sym_signed] = ACTIONS(859), - [aux_sym_preproc_if_token1] = ACTIONS(859), - [anon_sym_long] = ACTIONS(859), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_const] = ACTIONS(859), - [anon_sym_struct] = ACTIONS(859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(859), - [aux_sym_preproc_elif_token1] = ACTIONS(859), - [aux_sym_preproc_def_token1] = ACTIONS(859), - [anon_sym__Atomic] = ACTIONS(859), - [anon_sym_auto] = ACTIONS(859), - [sym_primitive_type] = ACTIONS(859), - [anon_sym_inline] = ACTIONS(859), - [anon_sym___attribute__] = ACTIONS(859), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(66), + [sym__expression] = STATE(66), + [sym_binary_expression] = STATE(66), + [sym_update_expression] = STATE(66), + [sym_call_expression] = STATE(66), + [sym_pointer_expression] = STATE(66), + [sym_unary_expression] = STATE(66), + [sym_sizeof_expression] = STATE(66), + [sym_subscript_expression] = STATE(66), + [sym_parenthesized_expression] = STATE(66), + [sym_concatenated_string] = STATE(66), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(66), + [sym_assignment_expression] = STATE(66), + [sym_cast_expression] = STATE(66), + [sym_field_expression] = STATE(66), + [sym_compound_literal_expression] = STATE(66), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [857] = { - [sym_false] = ACTIONS(923), - [anon_sym_restrict] = ACTIONS(923), - [sym_identifier] = ACTIONS(923), - [anon_sym_goto] = ACTIONS(923), - [aux_sym_preproc_if_token2] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_typedef] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(925), - [anon_sym__Atomic] = ACTIONS(923), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [sym_number_literal] = ACTIONS(925), - [anon_sym_volatile] = ACTIONS(923), - [anon_sym_SQUOTE] = ACTIONS(925), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_signed] = ACTIONS(923), - [anon_sym_long] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [anon_sym_L] = ACTIONS(923), - [anon_sym___attribute__] = ACTIONS(923), - [anon_sym_sizeof] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_union] = ACTIONS(923), - [anon_sym_unsigned] = ACTIONS(923), - [anon_sym_short] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [anon_sym_TILDE] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_else] = ACTIONS(923), - [sym_primitive_type] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(925), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_if] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(923), - [sym_true] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [sym_null] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_auto] = ACTIONS(923), - [anon_sym_inline] = ACTIONS(923), + [aux_sym_string_literal_repeat1] = STATE(877), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(2453), + [aux_sym_string_literal_token1] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2455), }, [858] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), - [anon_sym_union] = ACTIONS(1087), - [anon_sym_unsigned] = ACTIONS(1087), - [anon_sym_restrict] = ACTIONS(1087), - [anon_sym_short] = ACTIONS(1087), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_volatile] = ACTIONS(1087), - [anon_sym_register] = ACTIONS(1087), - [anon_sym_extern] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1087), - [aux_sym_preproc_else_token1] = ACTIONS(1087), - [aux_sym_preproc_if_token2] = ACTIONS(1087), - [sym_preproc_directive] = ACTIONS(1087), - [anon_sym_signed] = ACTIONS(1087), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [anon_sym_long] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_struct] = ACTIONS(1087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), - [aux_sym_preproc_elif_token1] = ACTIONS(1087), - [aux_sym_preproc_def_token1] = ACTIONS(1087), - [anon_sym__Atomic] = ACTIONS(1087), - [anon_sym_auto] = ACTIONS(1087), - [sym_primitive_type] = ACTIONS(1087), - [anon_sym_inline] = ACTIONS(1087), - [anon_sym___attribute__] = ACTIONS(1087), - [sym_comment] = ACTIONS(3), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_const] = ACTIONS(201), + [anon_sym_LPAREN2] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(2457), + [anon_sym__Atomic] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_static] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(203), }, [859] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_else_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [aux_sym_preproc_elif_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2459), }, [860] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_else_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [aux_sym_preproc_elif_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), + [sym_string_literal] = STATE(515), [sym_comment] = ACTIONS(3), + [anon_sym_L_DQUOTE] = ACTIONS(2461), + [sym_system_lib_string] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(2461), }, [861] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_unsigned] = ACTIONS(1806), - [anon_sym_restrict] = ACTIONS(1806), - [anon_sym_short] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_volatile] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1806), - [aux_sym_preproc_else_token1] = ACTIONS(1806), - [aux_sym_preproc_if_token2] = ACTIONS(1806), - [sym_preproc_directive] = ACTIONS(1806), - [anon_sym_signed] = ACTIONS(1806), - [aux_sym_preproc_if_token1] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1806), - [aux_sym_preproc_elif_token1] = ACTIONS(1806), - [aux_sym_preproc_def_token1] = ACTIONS(1806), - [anon_sym__Atomic] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [sym_primitive_type] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [anon_sym___attribute__] = ACTIONS(1806), + [sym_parenthesized_expression] = STATE(516), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(233), }, [862] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(388), - [anon_sym_union] = ACTIONS(388), - [anon_sym_unsigned] = ACTIONS(388), - [anon_sym_restrict] = ACTIONS(388), - [anon_sym_short] = ACTIONS(388), - [anon_sym_static] = ACTIONS(388), - [anon_sym_volatile] = ACTIONS(388), - [anon_sym_register] = ACTIONS(388), - [anon_sym_extern] = ACTIONS(388), - [sym_identifier] = ACTIONS(388), - [aux_sym_preproc_if_token2] = ACTIONS(388), - [sym_preproc_directive] = ACTIONS(388), - [anon_sym_signed] = ACTIONS(388), - [aux_sym_preproc_if_token1] = ACTIONS(388), - [anon_sym_long] = ACTIONS(388), - [anon_sym_enum] = ACTIONS(388), - [anon_sym_const] = ACTIONS(388), - [anon_sym_struct] = ACTIONS(388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(388), - [aux_sym_preproc_def_token1] = ACTIONS(388), - [anon_sym__Atomic] = ACTIONS(388), - [anon_sym_auto] = ACTIONS(388), - [sym_primitive_type] = ACTIONS(388), - [anon_sym_inline] = ACTIONS(388), - [anon_sym___attribute__] = ACTIONS(388), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(882), + [sym__expression] = STATE(882), + [sym_binary_expression] = STATE(882), + [sym_update_expression] = STATE(882), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(882), + [sym_sizeof_expression] = STATE(882), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(882), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(882), + [sym_assignment_expression] = STATE(882), + [sym_cast_expression] = STATE(882), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(882), + [sym_true] = ACTIONS(2465), + [sym_null] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [863] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(859), - [anon_sym_union] = ACTIONS(859), - [anon_sym_unsigned] = ACTIONS(859), - [anon_sym_restrict] = ACTIONS(859), - [anon_sym_short] = ACTIONS(859), - [anon_sym_static] = ACTIONS(859), - [anon_sym_volatile] = ACTIONS(859), - [anon_sym_register] = ACTIONS(859), - [anon_sym_extern] = ACTIONS(859), - [sym_identifier] = ACTIONS(859), - [aux_sym_preproc_if_token2] = ACTIONS(859), - [sym_preproc_directive] = ACTIONS(859), - [anon_sym_signed] = ACTIONS(859), - [aux_sym_preproc_if_token1] = ACTIONS(859), - [anon_sym_long] = ACTIONS(859), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_const] = ACTIONS(859), - [anon_sym_struct] = ACTIONS(859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(859), - [aux_sym_preproc_def_token1] = ACTIONS(859), - [anon_sym__Atomic] = ACTIONS(859), - [anon_sym_auto] = ACTIONS(859), - [sym_primitive_type] = ACTIONS(859), - [anon_sym_inline] = ACTIONS(859), - [anon_sym___attribute__] = ACTIONS(859), + [sym_parenthesized_expression] = STATE(518), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(233), }, [864] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1087), - [anon_sym_union] = ACTIONS(1087), - [anon_sym_unsigned] = ACTIONS(1087), - [anon_sym_restrict] = ACTIONS(1087), - [anon_sym_short] = ACTIONS(1087), - [anon_sym_static] = ACTIONS(1087), - [anon_sym_volatile] = ACTIONS(1087), - [anon_sym_register] = ACTIONS(1087), - [anon_sym_extern] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1087), - [aux_sym_preproc_if_token2] = ACTIONS(1087), - [sym_preproc_directive] = ACTIONS(1087), - [anon_sym_signed] = ACTIONS(1087), - [aux_sym_preproc_if_token1] = ACTIONS(1087), - [anon_sym_long] = ACTIONS(1087), - [anon_sym_enum] = ACTIONS(1087), - [anon_sym_const] = ACTIONS(1087), - [anon_sym_struct] = ACTIONS(1087), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1087), - [aux_sym_preproc_def_token1] = ACTIONS(1087), - [anon_sym__Atomic] = ACTIONS(1087), - [anon_sym_auto] = ACTIONS(1087), - [sym_primitive_type] = ACTIONS(1087), - [anon_sym_inline] = ACTIONS(1087), - [anon_sym___attribute__] = ACTIONS(1087), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2471), }, [865] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(884), + [sym__expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_call_expression] = STATE(884), + [sym_pointer_expression] = STATE(884), + [sym_unary_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_field_expression] = STATE(884), + [sym_compound_literal_expression] = STATE(884), + [sym_true] = ACTIONS(2473), + [sym_null] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(159), + [sym_identifier] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(161), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(165), }, [866] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [867] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_unsigned] = ACTIONS(1806), - [anon_sym_restrict] = ACTIONS(1806), - [anon_sym_short] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_volatile] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1806), - [aux_sym_preproc_if_token2] = ACTIONS(1806), - [sym_preproc_directive] = ACTIONS(1806), - [anon_sym_signed] = ACTIONS(1806), - [aux_sym_preproc_if_token1] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1806), - [aux_sym_preproc_def_token1] = ACTIONS(1806), - [anon_sym__Atomic] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [sym_primitive_type] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [anon_sym___attribute__] = ACTIONS(1806), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2479), }, [868] = { - [sym_do_statement] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym__expression] = STATE(881), - [sym_binary_expression] = STATE(881), - [sym_declaration] = STATE(884), - [sym_call_expression] = STATE(37), - [sym__type_specifier] = STATE(883), - [sym_break_statement] = STATE(884), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(884), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym__empty_declaration] = STATE(884), - [sym_sized_type_specifier] = STATE(883), - [sym_preproc_include] = STATE(884), - [sym_continue_statement] = STATE(884), - [sym_preproc_ifdef] = STATE(884), - [sym_pointer_expression] = STATE(37), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_macro_type_specifier] = STATE(883), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(883), - [sym_if_statement] = STATE(884), - [sym_preproc_def] = STATE(884), - [sym_for_statement] = STATE(884), - [sym_comma_expression] = STATE(882), - [sym_function_definition] = STATE(884), - [sym_update_expression] = STATE(881), - [sym_type_qualifier] = STATE(44), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(883), - [sym_switch_statement] = STATE(884), - [sym_return_statement] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_conditional_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(884), - [sym_while_statement] = STATE(884), - [sym_preproc_if] = STATE(884), - [sym_goto_statement] = STATE(884), - [sym_unary_expression] = STATE(881), - [sym_linkage_specification] = STATE(884), - [sym_subscript_expression] = STATE(37), - [sym_string_literal] = STATE(42), - [aux_sym_translation_unit_repeat1] = STATE(884), - [sym_compound_statement] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_expression_statement] = STATE(884), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(97), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2497), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(113), + [sym_attribute_specifier] = STATE(113), + [sym_storage_class_specifier] = STATE(113), + [sym_type_qualifier] = STATE(113), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(311), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [869] = { - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_restrict] = ACTIONS(141), - [sym_identifier] = ACTIONS(141), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_const] = ACTIONS(141), - [anon_sym_LPAREN2] = ACTIONS(145), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(2185), - [anon_sym__Atomic] = ACTIONS(141), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_static] = ACTIONS(141), - [anon_sym_volatile] = ACTIONS(141), - [anon_sym_register] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(156), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_auto] = ACTIONS(141), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_inline] = ACTIONS(141), - [anon_sym___attribute__] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), + [sym_do_statement] = STATE(532), + [sym_preproc_function_def] = STATE(532), + [sym__expression] = STATE(866), + [sym_binary_expression] = STATE(866), + [sym_declaration] = STATE(532), + [sym_call_expression] = STATE(36), + [sym__type_specifier] = STATE(868), + [sym_break_statement] = STATE(532), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(532), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym__empty_declaration] = STATE(532), + [sym_sized_type_specifier] = STATE(868), + [sym_preproc_include] = STATE(532), + [sym_continue_statement] = STATE(532), + [sym_preproc_ifdef] = STATE(532), + [sym_pointer_expression] = STATE(36), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_macro_type_specifier] = STATE(868), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(868), + [sym_if_statement] = STATE(532), + [sym_preproc_def] = STATE(532), + [sym_for_statement] = STATE(532), + [sym_comma_expression] = STATE(867), + [sym_function_definition] = STATE(532), + [sym_update_expression] = STATE(866), + [sym_type_qualifier] = STATE(43), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(868), + [sym_switch_statement] = STATE(532), + [sym_return_statement] = STATE(532), + [sym_preproc_call] = STATE(532), + [sym_conditional_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(532), + [sym_while_statement] = STATE(532), + [sym_preproc_if] = STATE(532), + [sym_goto_statement] = STATE(532), + [sym_unary_expression] = STATE(866), + [sym_linkage_specification] = STATE(532), + [sym_subscript_expression] = STATE(36), + [sym_string_literal] = STATE(41), + [aux_sym_translation_unit_repeat1] = STATE(532), + [sym_compound_statement] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_expression_statement] = STATE(532), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2483), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [870] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(2499), - [sym_preproc_arg] = ACTIONS(2501), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_LPAREN2] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(2457), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LBRACK] = ACTIONS(203), }, [871] = { - [sym_char_literal] = STATE(60), - [sym__expression] = STATE(60), - [sym_binary_expression] = STATE(60), - [sym_update_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_pointer_expression] = STATE(60), - [sym_unary_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_false] = ACTIONS(193), - [sym_identifier] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(193), - [sym_null] = ACTIONS(193), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2485), }, [872] = { - [sym_char_literal] = STATE(70), - [sym__expression] = STATE(70), - [sym_binary_expression] = STATE(70), - [sym_update_expression] = STATE(70), - [sym_call_expression] = STATE(70), - [sym_pointer_expression] = STATE(70), - [sym_unary_expression] = STATE(70), - [sym_sizeof_expression] = STATE(70), - [sym_subscript_expression] = STATE(70), - [sym_parenthesized_expression] = STATE(70), - [sym_concatenated_string] = STATE(70), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(70), - [sym_assignment_expression] = STATE(70), - [sym_cast_expression] = STATE(70), - [sym_field_expression] = STATE(70), - [sym_compound_literal_expression] = STATE(70), - [sym_false] = ACTIONS(213), - [sym_identifier] = ACTIONS(213), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(213), - [sym_null] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [anon_sym_LF] = ACTIONS(2487), + [sym_comment] = ACTIONS(147), }, [873] = { - [aux_sym_string_literal_repeat1] = STATE(891), - [anon_sym_DQUOTE] = ACTIONS(2503), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(2505), - [aux_sym_string_literal_token1] = ACTIONS(2505), + [sym_if_statement] = STATE(890), + [sym_preproc_def] = STATE(890), + [sym_preproc_function_def] = STATE(890), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(890), + [sym_declaration] = STATE(890), + [sym_do_statement] = STATE(890), + [sym_for_statement] = STATE(890), + [sym_preproc_else] = STATE(889), + [sym_preproc_elif] = STATE(889), + [aux_sym_translation_unit_repeat1] = STATE(890), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(890), + [sym_switch_statement] = STATE(890), + [sym_return_statement] = STATE(890), + [sym_preproc_call] = STATE(890), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(890), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(890), + [sym__empty_declaration] = STATE(890), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(890), + [sym_preproc_include] = STATE(890), + [sym_preproc_if] = STATE(890), + [sym_preproc_ifdef] = STATE(890), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(890), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(890), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(890), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(890), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(890), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [874] = { + [anon_sym_RPAREN] = ACTIONS(2491), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2507), }, [875] = { - [sym_string_literal] = STATE(524), - [sym_system_lib_string] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2511), - [anon_sym_L] = ACTIONS(2513), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2493), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [876] = { - [sym_parenthesized_expression] = STATE(525), + [anon_sym_RPAREN] = ACTIONS(2493), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), }, [877] = { - [sym_char_literal] = STATE(896), - [sym__expression] = STATE(896), - [sym_binary_expression] = STATE(896), - [sym_update_expression] = STATE(896), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(896), - [sym_sizeof_expression] = STATE(896), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(896), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(896), - [sym_assignment_expression] = STATE(896), - [sym_cast_expression] = STATE(896), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(896), - [sym_false] = ACTIONS(2515), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2515), - [sym_null] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_string_literal_repeat1] = STATE(157), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(469), + [aux_sym_string_literal_token1] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(2495), }, [878] = { - [sym_parenthesized_expression] = STATE(527), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [sym_if_statement] = STATE(893), + [sym_preproc_def] = STATE(893), + [sym_preproc_function_def] = STATE(893), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(893), + [sym_declaration] = STATE(893), + [sym_do_statement] = STATE(893), + [sym_for_statement] = STATE(893), + [sym_preproc_else] = STATE(892), + [sym_preproc_elif] = STATE(892), + [aux_sym_translation_unit_repeat1] = STATE(893), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(893), + [sym_switch_statement] = STATE(893), + [sym_return_statement] = STATE(893), + [sym_preproc_call] = STATE(893), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(893), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(893), + [sym__empty_declaration] = STATE(893), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(893), + [sym_preproc_include] = STATE(893), + [sym_preproc_if] = STATE(893), + [sym_preproc_ifdef] = STATE(893), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(893), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(893), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(893), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(893), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(893), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [879] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2521), + [sym_sized_type_specifier] = STATE(130), + [sym_declaration] = STATE(543), + [sym_declaration_list] = STATE(543), + [sym_enum_specifier] = STATE(130), + [sym_function_definition] = STATE(543), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym__declaration_specifiers] = STATE(1150), + [sym_struct_specifier] = STATE(130), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_auto] = ACTIONS(63), + [sym_identifier] = ACTIONS(187), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [880] = { - [sym_char_literal] = STATE(899), - [sym__expression] = STATE(899), - [sym_binary_expression] = STATE(899), - [sym_update_expression] = STATE(899), - [sym_call_expression] = STATE(899), - [sym_pointer_expression] = STATE(899), - [sym_unary_expression] = STATE(899), - [sym_sizeof_expression] = STATE(899), - [sym_subscript_expression] = STATE(899), - [sym_parenthesized_expression] = STATE(899), - [sym_concatenated_string] = STATE(899), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(899), - [sym_assignment_expression] = STATE(899), - [sym_cast_expression] = STATE(899), - [sym_field_expression] = STATE(899), - [sym_compound_literal_expression] = STATE(899), - [sym_false] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(183), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(185), - [sym_number_literal] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(183), - [sym_true] = ACTIONS(2523), - [sym_null] = ACTIONS(2523), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(189), + [sym_char_literal] = STATE(59), + [sym__expression] = STATE(59), + [sym_comma_expression] = STATE(61), + [sym_binary_expression] = STATE(59), + [sym_update_expression] = STATE(59), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(59), + [sym_sizeof_expression] = STATE(59), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(59), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(59), + [sym_assignment_expression] = STATE(59), + [sym_cast_expression] = STATE(59), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(59), + [sym_true] = ACTIONS(175), + [sym_null] = ACTIONS(175), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [881] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(2529), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_switch_body] = STATE(545), + [anon_sym_LBRACE] = ACTIONS(2501), + [sym_comment] = ACTIONS(3), }, [882] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2529), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [883] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(117), - [sym_attribute_specifier] = STATE(117), - [sym_storage_class_specifier] = STATE(117), - [sym_type_qualifier] = STATE(117), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(317), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_preproc_params] = STATE(897), + [sym_preproc_arg] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_LF] = ACTIONS(2507), + [sym_comment] = ACTIONS(147), }, [884] = { - [sym_do_statement] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym__expression] = STATE(881), - [sym_binary_expression] = STATE(881), - [sym_declaration] = STATE(541), - [sym_call_expression] = STATE(37), - [sym__type_specifier] = STATE(883), - [sym_break_statement] = STATE(541), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(541), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym__empty_declaration] = STATE(541), - [sym_sized_type_specifier] = STATE(883), - [sym_preproc_include] = STATE(541), - [sym_continue_statement] = STATE(541), - [sym_preproc_ifdef] = STATE(541), - [sym_pointer_expression] = STATE(37), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_macro_type_specifier] = STATE(883), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(883), - [sym_if_statement] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_for_statement] = STATE(541), - [sym_comma_expression] = STATE(882), - [sym_function_definition] = STATE(541), - [sym_update_expression] = STATE(881), - [sym_type_qualifier] = STATE(44), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(883), - [sym_switch_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_conditional_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_preproc_if] = STATE(541), - [sym_goto_statement] = STATE(541), - [sym_unary_expression] = STATE(881), - [sym_linkage_specification] = STATE(541), - [sym_subscript_expression] = STATE(37), - [sym_string_literal] = STATE(42), - [aux_sym_translation_unit_repeat1] = STATE(541), - [sym_compound_statement] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_expression_statement] = STATE(541), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(97), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2533), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_PERCENT_EQ] = ACTIONS(547), + [anon_sym_DASH_EQ] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_EQ] = ACTIONS(547), + [anon_sym_LT_LT_EQ] = ACTIONS(547), + [anon_sym_QMARK] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_CARET_EQ] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_PIPE_EQ] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(547), + [anon_sym_AMP_EQ] = ACTIONS(547), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_STAR_EQ] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(305), }, [885] = { + [aux_sym_declaration_repeat1] = STATE(900), + [sym_compound_statement] = STATE(559), + [sym_parameter_list] = STATE(213), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_EQ] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LPAREN2] = ACTIONS(652), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(2509), }, [886] = { - [anon_sym_LF] = ACTIONS(2537), - [sym_comment] = ACTIONS(171), + [aux_sym_declaration_repeat1] = STATE(900), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(2509), }, [887] = { - [sym_if_statement] = STATE(905), - [sym_preproc_def] = STATE(905), - [sym_preproc_function_def] = STATE(905), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(905), - [sym_declaration] = STATE(905), - [sym_do_statement] = STATE(905), - [sym_for_statement] = STATE(905), - [sym_preproc_else] = STATE(904), - [sym_preproc_elif] = STATE(904), - [aux_sym_translation_unit_repeat1] = STATE(905), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(905), - [sym_switch_statement] = STATE(905), - [sym_return_statement] = STATE(905), - [sym_preproc_call] = STATE(905), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(905), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(905), - [sym__empty_declaration] = STATE(905), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(905), - [sym_preproc_include] = STATE(905), - [sym_preproc_if] = STATE(905), - [sym_preproc_ifdef] = STATE(905), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(905), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(905), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(905), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(905), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(905), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2539), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym__field_declarator] = STATE(904), + [sym_parenthesized_field_declarator] = STATE(904), + [sym_function_field_declarator] = STATE(904), + [sym_bitfield_clause] = STATE(903), + [sym_pointer_field_declarator] = STATE(904), + [sym_array_field_declarator] = STATE(904), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_LPAREN2] = ACTIONS(808), + [sym_identifier] = ACTIONS(810), + [anon_sym_COLON] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(2511), }, [888] = { - [anon_sym_RPAREN] = ACTIONS(2541), + [sym_parenthesized_expression] = STATE(562), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2513), }, [889] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2543), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_preproc_if_token2] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), }, [890] = { - [anon_sym_RPAREN] = ACTIONS(2543), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(635), + [sym_declaration] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_preproc_else] = STATE(905), + [sym_preproc_elif] = STATE(905), + [aux_sym_translation_unit_repeat1] = STATE(635), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(635), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(635), + [sym__empty_declaration] = STATE(635), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(635), + [sym_preproc_include] = STATE(635), + [sym_preproc_if] = STATE(635), + [sym_preproc_ifdef] = STATE(635), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(635), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(635), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(635), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(635), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [891] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(2545), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), + [aux_sym_type_definition_repeat2] = STATE(906), + [sym_parameter_list] = STATE(260), + [anon_sym_LBRACK] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2519), }, [892] = { - [sym_if_statement] = STATE(908), - [sym_preproc_def] = STATE(908), - [sym_preproc_function_def] = STATE(908), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(908), - [sym_declaration] = STATE(908), - [sym_do_statement] = STATE(908), - [sym_for_statement] = STATE(908), - [sym_preproc_else] = STATE(907), - [sym_preproc_elif] = STATE(907), - [aux_sym_translation_unit_repeat1] = STATE(908), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(908), - [sym_switch_statement] = STATE(908), - [sym_return_statement] = STATE(908), - [sym_preproc_call] = STATE(908), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(908), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(908), - [sym__empty_declaration] = STATE(908), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(908), - [sym_preproc_include] = STATE(908), - [sym_preproc_if] = STATE(908), - [sym_preproc_ifdef] = STATE(908), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(908), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(908), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(908), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(908), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(908), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [aux_sym_preproc_if_token2] = ACTIONS(2521), + [sym_comment] = ACTIONS(3), }, [893] = { - [sym_sized_type_specifier] = STATE(134), - [sym_declaration] = STATE(552), - [sym_declaration_list] = STATE(552), - [sym_enum_specifier] = STATE(134), - [sym_function_definition] = STATE(552), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(1170), - [sym_struct_specifier] = STATE(134), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_auto] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_if_statement] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(635), + [sym_declaration] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_preproc_else] = STATE(910), + [sym_preproc_elif] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(635), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(635), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(635), + [sym__empty_declaration] = STATE(635), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(635), + [sym_preproc_include] = STATE(635), + [sym_preproc_if] = STATE(635), + [sym_preproc_ifdef] = STATE(635), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(635), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(635), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(635), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(635), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [894] = { - [sym_char_literal] = STATE(63), - [sym__expression] = STATE(63), - [sym_comma_expression] = STATE(65), - [sym_binary_expression] = STATE(63), - [sym_update_expression] = STATE(63), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(63), - [sym_sizeof_expression] = STATE(63), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(63), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(63), - [sym_assignment_expression] = STATE(63), - [sym_cast_expression] = STATE(63), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(63), - [sym_false] = ACTIONS(199), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(911), + [sym_preproc_def] = STATE(911), + [sym_preproc_function_def] = STATE(911), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(911), + [sym_declaration] = STATE(911), + [sym_do_statement] = STATE(911), + [sym_for_statement] = STATE(911), + [aux_sym_translation_unit_repeat1] = STATE(911), + [sym_expression_statement] = STATE(911), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(868), + [sym_union_specifier] = STATE(868), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(911), + [sym_return_statement] = STATE(911), + [sym_preproc_call] = STATE(911), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(911), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_break_statement] = STATE(911), + [sym__empty_declaration] = STATE(911), + [sym_sized_type_specifier] = STATE(868), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(911), + [sym_preproc_include] = STATE(911), + [sym_preproc_if] = STATE(911), + [sym_preproc_ifdef] = STATE(911), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(911), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(868), + [sym_while_statement] = STATE(911), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(911), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(911), + [sym_struct_specifier] = STATE(868), + [sym_goto_statement] = STATE(911), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2525), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [895] = { - [sym_switch_body] = STATE(554), - [anon_sym_LBRACE] = ACTIONS(2551), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(912), + [sym_do_statement] = STATE(912), + [sym_for_statement] = STATE(912), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(912), + [sym_return_statement] = STATE(912), + [sym_break_statement] = STATE(912), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(912), + [sym_case_statement] = STATE(912), + [sym_while_statement] = STATE(912), + [sym_continue_statement] = STATE(912), + [sym_goto_statement] = STATE(912), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(912), + [aux_sym_switch_body_repeat1] = STATE(912), + [sym_expression_statement] = STATE(912), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [896] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LF] = ACTIONS(2529), + [sym_comment] = ACTIONS(147), }, [897] = { - [sym_preproc_params] = STATE(912), - [sym_preproc_arg] = ACTIONS(2555), - [anon_sym_LPAREN] = ACTIONS(555), - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(2557), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(2531), + [sym_preproc_arg] = ACTIONS(2533), }, [898] = { - [aux_sym_string_literal_repeat1] = STATE(913), - [anon_sym_DQUOTE] = ACTIONS(2545), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(2559), - [aux_sym_string_literal_token1] = ACTIONS(2559), + [anon_sym_RPAREN] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), }, [899] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_RBRACK] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(2537), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [900] = { - [aux_sym_declaration_repeat1] = STATE(916), - [sym_compound_statement] = STATE(568), - [sym_parameter_list] = STATE(219), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_LPAREN2] = ACTIONS(672), + [aux_sym_declaration_repeat1] = STATE(307), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(2539), }, [901] = { - [aux_sym_declaration_repeat1] = STATE(916), - [anon_sym_COMMA] = ACTIONS(674), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2561), + [sym_preproc_def] = STATE(914), + [sym_preproc_function_def] = STATE(914), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(914), + [sym_field_declaration] = STATE(914), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(914), + [sym_preproc_else_in_field_declaration_list] = STATE(915), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(915), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(914), + [sym_preproc_if_in_field_declaration_list] = STATE(914), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(914), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [902] = { - [sym__field_declarator] = STATE(920), - [sym_parenthesized_field_declarator] = STATE(920), - [sym_function_field_declarator] = STATE(920), - [sym_bitfield_clause] = STATE(919), - [sym_pointer_field_declarator] = STATE(920), - [sym_array_field_declarator] = STATE(920), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_LPAREN2] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(833), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(2563), + [sym_preproc_def] = STATE(916), + [sym_preproc_function_def] = STATE(916), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(916), + [sym_field_declaration] = STATE(916), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(916), + [sym_preproc_else_in_field_declaration_list] = STATE(917), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(917), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(916), + [sym_preproc_if_in_field_declaration_list] = STATE(916), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(916), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [903] = { - [sym_parenthesized_expression] = STATE(571), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2545), }, [904] = { - [aux_sym_preproc_if_token2] = ACTIONS(2567), + [sym_bitfield_clause] = STATE(918), + [aux_sym_field_declaration_repeat1] = STATE(919), + [sym_parameter_list] = STATE(326), + [anon_sym_LBRACK] = ACTIONS(1220), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(2547), }, [905] = { - [sym_if_statement] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(646), - [sym_declaration] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym_preproc_else] = STATE(921), - [sym_preproc_elif] = STATE(921), - [aux_sym_translation_unit_repeat1] = STATE(646), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(646), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(646), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(646), - [sym__empty_declaration] = STATE(646), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(646), - [sym_preproc_include] = STATE(646), - [sym_preproc_if] = STATE(646), - [sym_preproc_ifdef] = STATE(646), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(646), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(646), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(646), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(646), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(646), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [aux_sym_preproc_if_token2] = ACTIONS(2549), + [sym_comment] = ACTIONS(3), }, [906] = { - [aux_sym_type_definition_repeat2] = STATE(922), - [sym_parameter_list] = STATE(267), - [anon_sym_LBRACK] = ACTIONS(966), + [aux_sym_type_definition_repeat2] = STATE(363), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2551), }, [907] = { - [aux_sym_preproc_if_token2] = ACTIONS(2573), + [aux_sym_type_definition_repeat2] = STATE(920), + [sym_parameter_list] = STATE(260), + [anon_sym_LBRACK] = ACTIONS(935), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2553), }, [908] = { - [sym_if_statement] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(646), - [sym_declaration] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym_preproc_else] = STATE(926), - [sym_preproc_elif] = STATE(926), - [aux_sym_translation_unit_repeat1] = STATE(646), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(646), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(646), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(646), - [sym__empty_declaration] = STATE(646), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(646), - [sym_preproc_include] = STATE(646), - [sym_preproc_if] = STATE(646), - [sym_preproc_ifdef] = STATE(646), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(646), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(646), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(646), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(646), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(646), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2575), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_char_literal] = STATE(921), + [sym__expression] = STATE(921), + [sym_comma_expression] = STATE(922), + [sym_binary_expression] = STATE(921), + [sym_update_expression] = STATE(921), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(921), + [sym_true] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_sizeof] = ACTIONS(33), }, [909] = { - [sym_if_statement] = STATE(927), - [sym_preproc_def] = STATE(927), - [sym_preproc_function_def] = STATE(927), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(927), - [sym_declaration] = STATE(927), - [sym_do_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [aux_sym_translation_unit_repeat1] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(883), - [sym_union_specifier] = STATE(883), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_preproc_call] = STATE(927), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(927), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_break_statement] = STATE(927), - [sym__empty_declaration] = STATE(927), - [sym_sized_type_specifier] = STATE(883), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(927), - [sym_preproc_include] = STATE(927), - [sym_preproc_if] = STATE(927), - [sym_preproc_ifdef] = STATE(927), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(927), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(883), - [sym_while_statement] = STATE(927), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(927), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(927), - [sym_struct_specifier] = STATE(883), - [sym_goto_statement] = STATE(927), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym___attribute__] = ACTIONS(19), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(2577), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(95), - [sym_number_literal] = ACTIONS(93), - [anon_sym_if] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(83), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_SQUOTE] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), - [anon_sym_inline] = ACTIONS(9), + [sym_char_literal] = STATE(925), + [sym__expression] = STATE(925), + [sym_comma_expression] = STATE(926), + [sym_binary_expression] = STATE(925), + [sym_update_expression] = STATE(925), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(925), + [sym_sizeof_expression] = STATE(925), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(925), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(925), + [sym_assignment_expression] = STATE(925), + [sym_cast_expression] = STATE(925), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(925), + [sym_true] = ACTIONS(2561), + [sym_null] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2561), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(33), }, [910] = { - [sym_if_statement] = STATE(928), - [sym_do_statement] = STATE(928), - [sym_for_statement] = STATE(928), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(928), - [sym_return_statement] = STATE(928), - [sym_break_statement] = STATE(928), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(928), - [sym_case_statement] = STATE(928), - [sym_while_statement] = STATE(928), - [sym_continue_statement] = STATE(928), - [sym_goto_statement] = STATE(928), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(928), - [aux_sym_switch_body_repeat1] = STATE(928), - [sym_expression_statement] = STATE(928), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_default] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_preproc_if_token2] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), }, [911] = { - [anon_sym_LF] = ACTIONS(2581), - [sym_comment] = ACTIONS(171), + [sym_if_statement] = STATE(532), + [sym_preproc_def] = STATE(532), + [sym_preproc_function_def] = STATE(532), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(532), + [sym_declaration] = STATE(532), + [sym_do_statement] = STATE(532), + [sym_for_statement] = STATE(532), + [aux_sym_translation_unit_repeat1] = STATE(532), + [sym_expression_statement] = STATE(532), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(868), + [sym_union_specifier] = STATE(868), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(532), + [sym_return_statement] = STATE(532), + [sym_preproc_call] = STATE(532), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(532), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_break_statement] = STATE(532), + [sym__empty_declaration] = STATE(532), + [sym_sized_type_specifier] = STATE(868), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(532), + [sym_preproc_include] = STATE(532), + [sym_preproc_if] = STATE(532), + [sym_preproc_ifdef] = STATE(532), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(532), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(868), + [sym_while_statement] = STATE(532), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(532), + [sym_struct_specifier] = STATE(868), + [sym_goto_statement] = STATE(532), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [912] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(2583), - [sym_preproc_arg] = ACTIONS(2585), + [sym_if_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(382), + [aux_sym_switch_body_repeat1] = STATE(382), + [sym_expression_statement] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [913] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(2587), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), + [anon_sym_LF] = ACTIONS(2573), + [sym_comment] = ACTIONS(147), }, [914] = { - [anon_sym_RPAREN] = ACTIONS(2589), + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [sym_preproc_else_in_field_declaration_list] = STATE(928), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(928), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(2575), [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [915] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(2591), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_preproc_if_token2] = ACTIONS(2577), + [sym_comment] = ACTIONS(3), }, [916] = { - [aux_sym_declaration_repeat1] = STATE(315), - [anon_sym_COMMA] = ACTIONS(674), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2593), + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [sym_preproc_else_in_field_declaration_list] = STATE(929), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(929), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [917] = { - [sym_preproc_def] = STATE(930), - [sym_preproc_function_def] = STATE(930), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(930), - [sym_field_declaration] = STATE(930), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(930), - [sym_preproc_else_in_field_declaration_list] = STATE(931), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(931), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(930), - [sym_preproc_if_in_field_declaration_list] = STATE(930), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(930), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(2595), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [aux_sym_preproc_if_token2] = ACTIONS(2581), [sym_comment] = ACTIONS(3), }, [918] = { - [sym_preproc_def] = STATE(932), - [sym_preproc_function_def] = STATE(932), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(932), - [sym_field_declaration] = STATE(932), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(932), - [sym_preproc_else_in_field_declaration_list] = STATE(933), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(933), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(932), - [sym_preproc_if_in_field_declaration_list] = STATE(932), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(932), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(2597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2583), }, [919] = { + [sym_bitfield_clause] = STATE(930), + [aux_sym_field_declaration_repeat1] = STATE(418), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(2583), }, [920] = { - [sym_bitfield_clause] = STATE(934), - [aux_sym_field_declaration_repeat1] = STATE(935), - [sym_parameter_list] = STATE(334), - [anon_sym_LBRACK] = ACTIONS(1250), + [aux_sym_type_definition_repeat2] = STATE(363), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1252), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2585), }, [921] = { - [aux_sym_preproc_if_token2] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2587), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [922] = { - [aux_sym_type_definition_repeat2] = STATE(371), - [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(2587), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2605), }, [923] = { - [aux_sym_type_definition_repeat2] = STATE(936), - [sym_parameter_list] = STATE(267), - [anon_sym_LBRACK] = ACTIONS(966), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2607), + [sym_char_literal] = STATE(931), + [sym__expression] = STATE(931), + [sym_comma_expression] = STATE(932), + [sym_binary_expression] = STATE(931), + [sym_update_expression] = STATE(931), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(931), + [sym_sizeof_expression] = STATE(931), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(931), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(931), + [sym_assignment_expression] = STATE(931), + [sym_cast_expression] = STATE(931), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(931), + [sym_true] = ACTIONS(2589), + [sym_null] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2591), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2593), + [anon_sym_sizeof] = ACTIONS(33), }, [924] = { - [sym_char_literal] = STATE(937), - [sym__expression] = STATE(937), - [sym_comma_expression] = STATE(938), - [sym_binary_expression] = STATE(937), - [sym_update_expression] = STATE(937), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(937), - [sym_sizeof_expression] = STATE(937), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(937), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(937), - [sym_assignment_expression] = STATE(937), - [sym_cast_expression] = STATE(937), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(937), - [sym_false] = ACTIONS(2609), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2609), - [sym_null] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2613), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(933), + [sym__expression] = STATE(933), + [sym_comma_expression] = STATE(934), + [sym_binary_expression] = STATE(933), + [sym_update_expression] = STATE(933), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(933), + [sym_sizeof_expression] = STATE(933), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(933), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(933), + [sym_assignment_expression] = STATE(933), + [sym_cast_expression] = STATE(933), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(933), + [sym_true] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2599), + [anon_sym_sizeof] = ACTIONS(33), }, [925] = { - [sym_char_literal] = STATE(941), - [sym__expression] = STATE(941), - [sym_comma_expression] = STATE(942), - [sym_binary_expression] = STATE(941), - [sym_update_expression] = STATE(941), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(941), - [sym_sizeof_expression] = STATE(941), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(941), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(941), - [sym_assignment_expression] = STATE(941), - [sym_cast_expression] = STATE(941), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(941), - [sym_false] = ACTIONS(2615), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2615), - [sym_null] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2601), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [926] = { - [aux_sym_preproc_if_token2] = ACTIONS(2621), + [anon_sym_RPAREN] = ACTIONS(2601), [sym_comment] = ACTIONS(3), }, [927] = { - [sym_if_statement] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(541), - [sym_declaration] = STATE(541), - [sym_do_statement] = STATE(541), - [sym_for_statement] = STATE(541), - [aux_sym_translation_unit_repeat1] = STATE(541), - [sym_expression_statement] = STATE(541), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(883), - [sym_union_specifier] = STATE(883), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(541), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_break_statement] = STATE(541), - [sym__empty_declaration] = STATE(541), - [sym_sized_type_specifier] = STATE(883), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(541), - [sym_preproc_include] = STATE(541), - [sym_preproc_if] = STATE(541), - [sym_preproc_ifdef] = STATE(541), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(541), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(883), - [sym_while_statement] = STATE(541), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(541), - [sym_struct_specifier] = STATE(883), - [sym_goto_statement] = STATE(541), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym___attribute__] = ACTIONS(19), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(95), - [sym_number_literal] = ACTIONS(93), - [anon_sym_if] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(83), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_SQUOTE] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), - [anon_sym_inline] = ACTIONS(9), + [sym_char_literal] = STATE(936), + [sym__expression] = STATE(936), + [sym_comma_expression] = STATE(937), + [sym_binary_expression] = STATE(936), + [sym_update_expression] = STATE(936), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(936), + [sym_sizeof_expression] = STATE(936), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(936), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(936), + [sym_assignment_expression] = STATE(936), + [sym_cast_expression] = STATE(936), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(936), + [sym_true] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2607), + [anon_sym_sizeof] = ACTIONS(33), }, [928] = { - [sym_if_statement] = STATE(390), - [sym_do_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(390), - [sym_return_statement] = STATE(390), - [sym_break_statement] = STATE(390), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_continue_statement] = STATE(390), - [sym_goto_statement] = STATE(390), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(390), - [aux_sym_switch_body_repeat1] = STATE(390), - [sym_expression_statement] = STATE(390), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_preproc_if_token2] = ACTIONS(2609), + [sym_comment] = ACTIONS(3), }, [929] = { - [anon_sym_LF] = ACTIONS(2627), - [sym_comment] = ACTIONS(171), + [aux_sym_preproc_if_token2] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), }, [930] = { - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(569), - [sym_field_declaration] = STATE(569), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), - [sym_preproc_else_in_field_declaration_list] = STATE(944), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(944), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_field_declaration_list] = STATE(569), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2613), }, [931] = { - [aux_sym_preproc_if_token2] = ACTIONS(2631), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [932] = { - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(569), - [sym_field_declaration] = STATE(569), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), - [sym_preproc_else_in_field_declaration_list] = STATE(945), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(945), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_field_declaration_list] = STATE(569), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(2615), [sym_comment] = ACTIONS(3), }, [933] = { - [aux_sym_preproc_if_token2] = ACTIONS(2635), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [934] = { + [anon_sym_RPAREN] = ACTIONS(2617), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2637), }, [935] = { - [sym_bitfield_clause] = STATE(946), - [aux_sym_field_declaration_repeat1] = STATE(426), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1252), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(2637), + [sym_char_literal] = STATE(938), + [sym__expression] = STATE(938), + [sym_comma_expression] = STATE(939), + [sym_binary_expression] = STATE(938), + [sym_update_expression] = STATE(938), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(938), + [sym_sizeof_expression] = STATE(938), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(938), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(938), + [sym_assignment_expression] = STATE(938), + [sym_cast_expression] = STATE(938), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(938), + [sym_true] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2623), + [anon_sym_sizeof] = ACTIONS(33), }, [936] = { - [aux_sym_type_definition_repeat2] = STATE(371), - [anon_sym_COMMA] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2639), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [937] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(2625), + [sym_comment] = ACTIONS(3), }, [938] = { - [anon_sym_RPAREN] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [939] = { - [sym_char_literal] = STATE(947), - [sym__expression] = STATE(947), - [sym_comma_expression] = STATE(948), - [sym_binary_expression] = STATE(947), - [sym_update_expression] = STATE(947), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(947), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(947), - [sym_false] = ACTIONS(2643), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2647), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), }, [940] = { - [sym_char_literal] = STATE(949), - [sym__expression] = STATE(949), - [sym_comma_expression] = STATE(950), - [sym_binary_expression] = STATE(949), - [sym_update_expression] = STATE(949), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(949), - [sym_sizeof_expression] = STATE(949), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(949), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(949), - [sym_assignment_expression] = STATE(949), - [sym_cast_expression] = STATE(949), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(949), - [sym_false] = ACTIONS(2649), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2649), - [sym_null] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(25), + [sym_do_statement] = STATE(953), + [sym_preproc_function_def] = STATE(953), + [sym__expression] = STATE(866), + [sym_binary_expression] = STATE(866), + [sym_declaration] = STATE(953), + [sym_call_expression] = STATE(36), + [sym__type_specifier] = STATE(868), + [sym_break_statement] = STATE(953), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(953), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym__empty_declaration] = STATE(953), + [sym_sized_type_specifier] = STATE(868), + [sym_preproc_include] = STATE(953), + [sym_continue_statement] = STATE(953), + [sym_preproc_ifdef] = STATE(953), + [sym_pointer_expression] = STATE(36), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_macro_type_specifier] = STATE(868), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(868), + [sym_if_statement] = STATE(953), + [sym_preproc_def] = STATE(953), + [sym_for_statement] = STATE(953), + [sym_comma_expression] = STATE(867), + [sym_function_definition] = STATE(953), + [sym_update_expression] = STATE(866), + [sym_type_qualifier] = STATE(43), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(868), + [sym_switch_statement] = STATE(953), + [sym_return_statement] = STATE(953), + [sym_preproc_call] = STATE(953), + [sym_conditional_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(953), + [sym_while_statement] = STATE(953), + [sym_preproc_if] = STATE(953), + [sym_goto_statement] = STATE(953), + [sym_unary_expression] = STATE(866), + [sym_linkage_specification] = STATE(953), + [sym_subscript_expression] = STATE(36), + [sym_string_literal] = STATE(41), + [aux_sym_translation_unit_repeat1] = STATE(953), + [sym_compound_statement] = STATE(953), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_expression_statement] = STATE(953), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2629), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [941] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(2631), + [sym_preproc_arg] = ACTIONS(2633), }, [942] = { - [anon_sym_RPAREN] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(960), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(2635), + [aux_sym_string_literal_token1] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2637), }, [943] = { - [sym_char_literal] = STATE(952), - [sym__expression] = STATE(952), - [sym_comma_expression] = STATE(953), - [sym_binary_expression] = STATE(952), - [sym_update_expression] = STATE(952), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(952), - [sym_sizeof_expression] = STATE(952), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(952), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(952), - [sym_assignment_expression] = STATE(952), - [sym_cast_expression] = STATE(952), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(952), - [sym_false] = ACTIONS(2657), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2657), - [sym_null] = ACTIONS(2657), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_const] = ACTIONS(201), + [anon_sym_LPAREN2] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_static] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(203), }, [944] = { - [aux_sym_preproc_if_token2] = ACTIONS(2663), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2641), }, [945] = { - [aux_sym_preproc_if_token2] = ACTIONS(2665), + [sym_string_literal] = STATE(628), [sym_comment] = ACTIONS(3), + [anon_sym_L_DQUOTE] = ACTIONS(2643), + [sym_system_lib_string] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2643), }, [946] = { + [sym_parenthesized_expression] = STATE(629), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_LPAREN2] = ACTIONS(233), }, [947] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_char_literal] = STATE(964), + [sym__expression] = STATE(964), + [sym_binary_expression] = STATE(964), + [sym_update_expression] = STATE(964), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(964), + [sym_sizeof_expression] = STATE(964), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(964), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(964), + [sym_assignment_expression] = STATE(964), + [sym_cast_expression] = STATE(964), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(964), + [sym_true] = ACTIONS(2647), + [sym_null] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [948] = { - [anon_sym_RPAREN] = ACTIONS(2669), + [sym_parenthesized_expression] = STATE(631), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(233), }, [949] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2653), }, [950] = { - [anon_sym_RPAREN] = ACTIONS(2671), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [951] = { - [sym_char_literal] = STATE(954), - [sym__expression] = STATE(954), - [sym_comma_expression] = STATE(955), - [sym_binary_expression] = STATE(954), - [sym_update_expression] = STATE(954), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(954), - [sym_sizeof_expression] = STATE(954), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(954), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(954), - [sym_assignment_expression] = STATE(954), - [sym_cast_expression] = STATE(954), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(954), - [sym_false] = ACTIONS(2673), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2677), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2655), }, [952] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym__declaration_specifiers_repeat1] = STATE(113), + [sym_attribute_specifier] = STATE(113), + [sym_storage_class_specifier] = STATE(113), + [sym_type_qualifier] = STATE(113), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(311), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [953] = { - [anon_sym_RPAREN] = ACTIONS(2679), - [sym_comment] = ACTIONS(3), + [sym_do_statement] = STATE(532), + [sym_preproc_function_def] = STATE(532), + [sym__expression] = STATE(866), + [sym_binary_expression] = STATE(866), + [sym_declaration] = STATE(532), + [sym_call_expression] = STATE(36), + [sym__type_specifier] = STATE(868), + [sym_break_statement] = STATE(532), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(532), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym__empty_declaration] = STATE(532), + [sym_sized_type_specifier] = STATE(868), + [sym_preproc_include] = STATE(532), + [sym_continue_statement] = STATE(532), + [sym_preproc_ifdef] = STATE(532), + [sym_pointer_expression] = STATE(36), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_macro_type_specifier] = STATE(868), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(868), + [sym_if_statement] = STATE(532), + [sym_preproc_def] = STATE(532), + [sym_for_statement] = STATE(532), + [sym_comma_expression] = STATE(867), + [sym_function_definition] = STATE(532), + [sym_update_expression] = STATE(866), + [sym_type_qualifier] = STATE(43), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(868), + [sym_switch_statement] = STATE(532), + [sym_return_statement] = STATE(532), + [sym_preproc_call] = STATE(532), + [sym_conditional_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(532), + [sym_while_statement] = STATE(532), + [sym_preproc_if] = STATE(532), + [sym_goto_statement] = STATE(532), + [sym_unary_expression] = STATE(866), + [sym_linkage_specification] = STATE(532), + [sym_subscript_expression] = STATE(36), + [sym_string_literal] = STATE(41), + [aux_sym_translation_unit_repeat1] = STATE(532), + [sym_compound_statement] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_expression_statement] = STATE(532), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [954] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_LPAREN2] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(2661), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LBRACK] = ACTIONS(203), }, [955] = { - [anon_sym_RPAREN] = ACTIONS(2681), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2663), }, [956] = { - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(2683), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LF] = ACTIONS(2665), + [sym_comment] = ACTIONS(147), }, [957] = { - [sym_do_statement] = STATE(970), - [sym_preproc_function_def] = STATE(970), - [sym__expression] = STATE(881), - [sym_binary_expression] = STATE(881), - [sym_declaration] = STATE(970), - [sym_call_expression] = STATE(37), - [sym__type_specifier] = STATE(883), - [sym_break_statement] = STATE(970), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(970), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym__empty_declaration] = STATE(970), - [sym_sized_type_specifier] = STATE(883), - [sym_preproc_include] = STATE(970), - [sym_continue_statement] = STATE(970), - [sym_preproc_ifdef] = STATE(970), - [sym_pointer_expression] = STATE(37), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_macro_type_specifier] = STATE(883), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(883), - [sym_if_statement] = STATE(970), - [sym_preproc_def] = STATE(970), - [sym_for_statement] = STATE(970), - [sym_comma_expression] = STATE(882), - [sym_function_definition] = STATE(970), - [sym_update_expression] = STATE(881), - [sym_type_qualifier] = STATE(44), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(883), - [sym_switch_statement] = STATE(970), - [sym_return_statement] = STATE(970), - [sym_preproc_call] = STATE(970), - [sym_conditional_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(970), - [sym_while_statement] = STATE(970), - [sym_preproc_if] = STATE(970), - [sym_goto_statement] = STATE(970), - [sym_unary_expression] = STATE(881), - [sym_linkage_specification] = STATE(970), - [sym_subscript_expression] = STATE(37), - [sym_string_literal] = STATE(42), - [aux_sym_translation_unit_repeat1] = STATE(970), - [sym_compound_statement] = STATE(970), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_expression_statement] = STATE(970), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(97), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_if_statement] = STATE(971), + [sym_preproc_def] = STATE(971), + [sym_preproc_function_def] = STATE(971), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(971), + [sym_declaration] = STATE(971), + [sym_do_statement] = STATE(971), + [sym_for_statement] = STATE(971), + [sym_preproc_else] = STATE(970), + [sym_preproc_elif] = STATE(970), + [aux_sym_translation_unit_repeat1] = STATE(971), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(971), + [sym_switch_statement] = STATE(971), + [sym_return_statement] = STATE(971), + [sym_preproc_call] = STATE(971), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(971), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(971), + [sym__empty_declaration] = STATE(971), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(971), + [sym_preproc_include] = STATE(971), + [sym_preproc_if] = STATE(971), + [sym_preproc_ifdef] = STATE(971), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(971), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(971), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(971), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(971), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(971), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [958] = { - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_restrict] = ACTIONS(141), - [sym_identifier] = ACTIONS(141), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_const] = ACTIONS(141), - [anon_sym_LPAREN2] = ACTIONS(145), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(2425), - [anon_sym__Atomic] = ACTIONS(141), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_static] = ACTIONS(141), - [anon_sym_volatile] = ACTIONS(141), - [anon_sym_register] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(156), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_auto] = ACTIONS(141), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_inline] = ACTIONS(141), - [anon_sym___attribute__] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [959] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(2687), - [sym_preproc_arg] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), }, [960] = { - [aux_sym_string_literal_repeat1] = STATE(976), - [anon_sym_DQUOTE] = ACTIONS(2691), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(2693), - [aux_sym_string_literal_token1] = ACTIONS(2693), + [aux_sym_string_literal_repeat1] = STATE(157), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(469), + [aux_sym_string_literal_token1] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(2671), }, [961] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2695), + [sym_if_statement] = STATE(974), + [sym_preproc_def] = STATE(974), + [sym_preproc_function_def] = STATE(974), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(974), + [sym_declaration] = STATE(974), + [sym_do_statement] = STATE(974), + [sym_for_statement] = STATE(974), + [sym_preproc_else] = STATE(973), + [sym_preproc_elif] = STATE(973), + [aux_sym_translation_unit_repeat1] = STATE(974), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(974), + [sym_switch_statement] = STATE(974), + [sym_return_statement] = STATE(974), + [sym_preproc_call] = STATE(974), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(974), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(974), + [sym__empty_declaration] = STATE(974), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(974), + [sym_preproc_include] = STATE(974), + [sym_preproc_if] = STATE(974), + [sym_preproc_ifdef] = STATE(974), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(974), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(974), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(974), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(974), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(974), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [962] = { - [sym_string_literal] = STATE(639), - [sym_system_lib_string] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_L] = ACTIONS(2701), - [sym_comment] = ACTIONS(3), + [sym_sized_type_specifier] = STATE(130), + [sym_declaration] = STATE(644), + [sym_declaration_list] = STATE(644), + [sym_enum_specifier] = STATE(130), + [sym_function_definition] = STATE(644), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym__declaration_specifiers] = STATE(1171), + [sym_struct_specifier] = STATE(130), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_auto] = ACTIONS(63), + [sym_identifier] = ACTIONS(187), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [963] = { - [sym_parenthesized_expression] = STATE(640), + [sym_switch_body] = STATE(646), + [anon_sym_LBRACE] = ACTIONS(2677), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), }, [964] = { - [sym_char_literal] = STATE(980), - [sym__expression] = STATE(980), - [sym_binary_expression] = STATE(980), - [sym_update_expression] = STATE(980), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(980), - [sym_sizeof_expression] = STATE(980), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(980), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(980), - [sym_assignment_expression] = STATE(980), - [sym_cast_expression] = STATE(980), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(980), - [sym_false] = ACTIONS(2703), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2703), - [sym_null] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [965] = { - [sym_parenthesized_expression] = STATE(642), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [sym_preproc_params] = STATE(978), + [sym_preproc_arg] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_LF] = ACTIONS(2683), + [sym_comment] = ACTIONS(147), }, [966] = { + [aux_sym_declaration_repeat1] = STATE(979), + [sym_compound_statement] = STATE(651), + [sym_parameter_list] = STATE(213), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LPAREN2] = ACTIONS(652), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(2685), }, [967] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_declaration_repeat1] = STATE(979), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(2685), }, [968] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2711), + [sym__field_declarator] = STATE(983), + [sym_parenthesized_field_declarator] = STATE(983), + [sym_function_field_declarator] = STATE(983), + [sym_bitfield_clause] = STATE(982), + [sym_pointer_field_declarator] = STATE(983), + [sym_array_field_declarator] = STATE(983), + [sym_comment] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_LPAREN2] = ACTIONS(808), + [sym_identifier] = ACTIONS(810), + [anon_sym_COLON] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(2687), }, [969] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(117), - [sym_attribute_specifier] = STATE(117), - [sym_storage_class_specifier] = STATE(117), - [sym_type_qualifier] = STATE(117), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(317), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_parenthesized_expression] = STATE(229), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(237), }, [970] = { - [sym_do_statement] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym__expression] = STATE(881), - [sym_binary_expression] = STATE(881), - [sym_declaration] = STATE(541), - [sym_call_expression] = STATE(37), - [sym__type_specifier] = STATE(883), - [sym_break_statement] = STATE(541), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(541), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym__empty_declaration] = STATE(541), - [sym_sized_type_specifier] = STATE(883), - [sym_preproc_include] = STATE(541), - [sym_continue_statement] = STATE(541), - [sym_preproc_ifdef] = STATE(541), - [sym_pointer_expression] = STATE(37), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_macro_type_specifier] = STATE(883), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(883), - [sym_if_statement] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_for_statement] = STATE(541), - [sym_comma_expression] = STATE(882), - [sym_function_definition] = STATE(541), - [sym_update_expression] = STATE(881), - [sym_type_qualifier] = STATE(44), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(883), - [sym_switch_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_conditional_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_preproc_if] = STATE(541), - [sym_goto_statement] = STATE(541), - [sym_unary_expression] = STATE(881), - [sym_linkage_specification] = STATE(541), - [sym_subscript_expression] = STATE(37), - [sym_string_literal] = STATE(42), - [aux_sym_translation_unit_repeat1] = STATE(541), - [sym_compound_statement] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_expression_statement] = STATE(541), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(97), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [aux_sym_preproc_if_token2] = ACTIONS(2689), + [sym_comment] = ACTIONS(3), }, [971] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2717), + [sym_if_statement] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(635), + [sym_declaration] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_preproc_else] = STATE(984), + [sym_preproc_elif] = STATE(984), + [aux_sym_translation_unit_repeat1] = STATE(635), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(635), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(635), + [sym__empty_declaration] = STATE(635), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(635), + [sym_preproc_include] = STATE(635), + [sym_preproc_if] = STATE(635), + [sym_preproc_ifdef] = STATE(635), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(635), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(635), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(635), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(635), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2691), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [972] = { - [anon_sym_LF] = ACTIONS(2719), - [sym_comment] = ACTIONS(171), + [aux_sym_type_definition_repeat2] = STATE(985), + [sym_parameter_list] = STATE(260), + [anon_sym_LBRACK] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2693), }, [973] = { - [sym_if_statement] = STATE(988), - [sym_preproc_def] = STATE(988), - [sym_preproc_function_def] = STATE(988), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(988), - [sym_declaration] = STATE(988), - [sym_do_statement] = STATE(988), - [sym_for_statement] = STATE(988), - [sym_preproc_else] = STATE(987), - [sym_preproc_elif] = STATE(987), - [aux_sym_translation_unit_repeat1] = STATE(988), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(988), - [sym_switch_statement] = STATE(988), - [sym_return_statement] = STATE(988), - [sym_preproc_call] = STATE(988), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(988), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(988), - [sym__empty_declaration] = STATE(988), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(988), - [sym_preproc_include] = STATE(988), - [sym_preproc_if] = STATE(988), - [sym_preproc_ifdef] = STATE(988), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(988), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(988), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(988), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(988), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(988), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [aux_sym_preproc_if_token2] = ACTIONS(2695), + [sym_comment] = ACTIONS(3), }, [974] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2723), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(635), + [sym_declaration] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_preproc_else] = STATE(989), + [sym_preproc_elif] = STATE(989), + [aux_sym_translation_unit_repeat1] = STATE(635), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(635), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(635), + [sym__empty_declaration] = STATE(635), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(635), + [sym_preproc_include] = STATE(635), + [sym_preproc_if] = STATE(635), + [sym_preproc_ifdef] = STATE(635), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(635), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(635), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(635), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(635), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [975] = { - [anon_sym_RPAREN] = ACTIONS(2723), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(990), + [sym_preproc_def] = STATE(990), + [sym_preproc_function_def] = STATE(990), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(990), + [sym_declaration] = STATE(990), + [sym_do_statement] = STATE(990), + [sym_for_statement] = STATE(990), + [aux_sym_translation_unit_repeat1] = STATE(990), + [sym_expression_statement] = STATE(990), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(868), + [sym_union_specifier] = STATE(868), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(990), + [sym_return_statement] = STATE(990), + [sym_preproc_call] = STATE(990), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(990), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_break_statement] = STATE(990), + [sym__empty_declaration] = STATE(990), + [sym_sized_type_specifier] = STATE(868), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(990), + [sym_preproc_include] = STATE(990), + [sym_preproc_if] = STATE(990), + [sym_preproc_ifdef] = STATE(990), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(990), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(868), + [sym_while_statement] = STATE(990), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(990), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(990), + [sym_struct_specifier] = STATE(868), + [sym_goto_statement] = STATE(990), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2699), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [976] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), - }, - [977] = { [sym_if_statement] = STATE(991), - [sym_preproc_def] = STATE(991), - [sym_preproc_function_def] = STATE(991), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(991), - [sym_declaration] = STATE(991), [sym_do_statement] = STATE(991), [sym_for_statement] = STATE(991), - [sym_preproc_else] = STATE(990), - [sym_preproc_elif] = STATE(990), - [aux_sym_translation_unit_repeat1] = STATE(991), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(991), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), [sym_switch_statement] = STATE(991), [sym_return_statement] = STATE(991), - [sym_preproc_call] = STATE(991), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(991), - [sym_char_literal] = STATE(967), [sym_break_statement] = STATE(991), - [sym__empty_declaration] = STATE(991), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), [sym_labeled_statement] = STATE(991), - [sym_preproc_include] = STATE(991), - [sym_preproc_if] = STATE(991), - [sym_preproc_ifdef] = STATE(991), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(991), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), + [sym_case_statement] = STATE(991), [sym_while_statement] = STATE(991), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(991), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), [sym_continue_statement] = STATE(991), - [sym_struct_specifier] = STATE(969), [sym_goto_statement] = STATE(991), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(991), + [aux_sym_switch_body_repeat1] = STATE(991), + [sym_expression_statement] = STATE(991), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [977] = { + [anon_sym_LF] = ACTIONS(2703), + [sym_comment] = ACTIONS(147), }, [978] = { - [sym_sized_type_specifier] = STATE(134), - [sym_declaration] = STATE(655), - [sym_declaration_list] = STATE(655), - [sym_enum_specifier] = STATE(134), - [sym_function_definition] = STATE(655), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(1192), - [sym_struct_specifier] = STATE(134), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_auto] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(2705), + [sym_preproc_arg] = ACTIONS(2707), }, [979] = { - [sym_switch_body] = STATE(657), - [anon_sym_LBRACE] = ACTIONS(2731), + [aux_sym_declaration_repeat1] = STATE(307), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(2709), }, [980] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_preproc_def] = STATE(993), + [sym_preproc_function_def] = STATE(993), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(993), + [sym_field_declaration] = STATE(993), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(993), + [sym_preproc_else_in_field_declaration_list] = STATE(994), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(994), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(993), + [sym_preproc_if_in_field_declaration_list] = STATE(993), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(993), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(2711), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [981] = { - [sym_preproc_params] = STATE(995), - [sym_preproc_arg] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(555), - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(2737), + [sym_preproc_def] = STATE(995), + [sym_preproc_function_def] = STATE(995), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(995), + [sym_field_declaration] = STATE(995), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(995), + [sym_preproc_else_in_field_declaration_list] = STATE(996), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(996), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(995), + [sym_preproc_if_in_field_declaration_list] = STATE(995), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(995), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [982] = { - [aux_sym_string_literal_repeat1] = STATE(996), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(2739), - [aux_sym_string_literal_token1] = ACTIONS(2739), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2715), }, [983] = { - [aux_sym_declaration_repeat1] = STATE(997), - [sym_compound_statement] = STATE(662), - [sym_parameter_list] = STATE(219), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_LPAREN2] = ACTIONS(672), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(2741), + [sym_bitfield_clause] = STATE(997), + [aux_sym_field_declaration_repeat1] = STATE(998), + [sym_parameter_list] = STATE(326), + [anon_sym_LBRACK] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(2717), }, [984] = { - [aux_sym_declaration_repeat1] = STATE(997), - [anon_sym_COMMA] = ACTIONS(674), + [aux_sym_preproc_if_token2] = ACTIONS(2719), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2741), }, [985] = { - [sym__field_declarator] = STATE(1001), - [sym_parenthesized_field_declarator] = STATE(1001), - [sym_function_field_declarator] = STATE(1001), - [sym_bitfield_clause] = STATE(1000), - [sym_pointer_field_declarator] = STATE(1001), - [sym_array_field_declarator] = STATE(1001), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_LPAREN2] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(833), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(2743), + [aux_sym_type_definition_repeat2] = STATE(363), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2721), }, [986] = { - [sym_parenthesized_expression] = STATE(236), + [aux_sym_type_definition_repeat2] = STATE(999), + [sym_parameter_list] = STATE(260), + [anon_sym_LBRACK] = ACTIONS(935), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2723), }, [987] = { - [aux_sym_preproc_if_token2] = ACTIONS(2745), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(1000), + [sym__expression] = STATE(1000), + [sym_comma_expression] = STATE(1001), + [sym_binary_expression] = STATE(1000), + [sym_update_expression] = STATE(1000), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1000), + [sym_sizeof_expression] = STATE(1000), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1000), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1000), + [sym_assignment_expression] = STATE(1000), + [sym_cast_expression] = STATE(1000), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1000), + [sym_true] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2729), + [anon_sym_sizeof] = ACTIONS(33), }, [988] = { - [sym_if_statement] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(646), - [sym_declaration] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym_preproc_else] = STATE(1002), - [sym_preproc_elif] = STATE(1002), - [aux_sym_translation_unit_repeat1] = STATE(646), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(646), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(646), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(646), - [sym__empty_declaration] = STATE(646), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(646), - [sym_preproc_include] = STATE(646), - [sym_preproc_if] = STATE(646), - [sym_preproc_ifdef] = STATE(646), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(646), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(646), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(646), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(646), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(646), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_char_literal] = STATE(1004), + [sym__expression] = STATE(1004), + [sym_comma_expression] = STATE(1005), + [sym_binary_expression] = STATE(1004), + [sym_update_expression] = STATE(1004), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1004), + [sym_sizeof_expression] = STATE(1004), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1004), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1004), + [sym_assignment_expression] = STATE(1004), + [sym_cast_expression] = STATE(1004), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1004), + [sym_true] = ACTIONS(2731), + [sym_null] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(33), }, [989] = { - [aux_sym_type_definition_repeat2] = STATE(1003), - [sym_parameter_list] = STATE(267), - [anon_sym_LBRACK] = ACTIONS(966), + [aux_sym_preproc_if_token2] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2749), }, [990] = { - [aux_sym_preproc_if_token2] = ACTIONS(2751), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(532), + [sym_preproc_def] = STATE(532), + [sym_preproc_function_def] = STATE(532), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(532), + [sym_declaration] = STATE(532), + [sym_do_statement] = STATE(532), + [sym_for_statement] = STATE(532), + [aux_sym_translation_unit_repeat1] = STATE(532), + [sym_expression_statement] = STATE(532), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(868), + [sym_union_specifier] = STATE(868), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(532), + [sym_return_statement] = STATE(532), + [sym_preproc_call] = STATE(532), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(532), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_break_statement] = STATE(532), + [sym__empty_declaration] = STATE(532), + [sym_sized_type_specifier] = STATE(868), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(532), + [sym_preproc_include] = STATE(532), + [sym_preproc_if] = STATE(532), + [sym_preproc_ifdef] = STATE(532), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(532), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(868), + [sym_while_statement] = STATE(532), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(532), + [sym_struct_specifier] = STATE(868), + [sym_goto_statement] = STATE(532), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2739), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [991] = { - [sym_if_statement] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(646), - [sym_declaration] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym_preproc_else] = STATE(1007), - [sym_preproc_elif] = STATE(1007), - [aux_sym_translation_unit_repeat1] = STATE(646), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(646), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(646), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(646), - [sym__empty_declaration] = STATE(646), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(646), - [sym_preproc_include] = STATE(646), - [sym_preproc_if] = STATE(646), - [sym_preproc_ifdef] = STATE(646), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(646), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(646), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(646), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(646), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(646), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_if_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(382), + [aux_sym_switch_body_repeat1] = STATE(382), + [sym_expression_statement] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [992] = { - [sym_if_statement] = STATE(1008), - [sym_preproc_def] = STATE(1008), - [sym_preproc_function_def] = STATE(1008), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(1008), - [sym_declaration] = STATE(1008), - [sym_do_statement] = STATE(1008), - [sym_for_statement] = STATE(1008), - [aux_sym_translation_unit_repeat1] = STATE(1008), - [sym_expression_statement] = STATE(1008), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(883), - [sym_union_specifier] = STATE(883), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(1008), - [sym_return_statement] = STATE(1008), - [sym_preproc_call] = STATE(1008), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(1008), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_break_statement] = STATE(1008), - [sym__empty_declaration] = STATE(1008), - [sym_sized_type_specifier] = STATE(883), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(1008), - [sym_preproc_include] = STATE(1008), - [sym_preproc_if] = STATE(1008), - [sym_preproc_ifdef] = STATE(1008), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(1008), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(883), - [sym_while_statement] = STATE(1008), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(1008), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(1008), - [sym_struct_specifier] = STATE(883), - [sym_goto_statement] = STATE(1008), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym___attribute__] = ACTIONS(19), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(95), - [sym_number_literal] = ACTIONS(93), - [anon_sym_if] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(83), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_SQUOTE] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), - [anon_sym_inline] = ACTIONS(9), + [anon_sym_LF] = ACTIONS(2743), + [sym_comment] = ACTIONS(147), }, [993] = { - [sym_if_statement] = STATE(1009), - [sym_do_statement] = STATE(1009), - [sym_for_statement] = STATE(1009), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(1009), - [sym_return_statement] = STATE(1009), - [sym_break_statement] = STATE(1009), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(1009), - [sym_case_statement] = STATE(1009), - [sym_while_statement] = STATE(1009), - [sym_continue_statement] = STATE(1009), - [sym_goto_statement] = STATE(1009), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(1009), - [aux_sym_switch_body_repeat1] = STATE(1009), - [sym_expression_statement] = STATE(1009), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [sym_preproc_else_in_field_declaration_list] = STATE(1007), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(1007), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(2745), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [994] = { - [anon_sym_LF] = ACTIONS(2759), - [sym_comment] = ACTIONS(171), + [aux_sym_preproc_if_token2] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), }, [995] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(2761), - [sym_preproc_arg] = ACTIONS(2763), + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [sym_preproc_else_in_field_declaration_list] = STATE(1008), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_preproc_elif_in_field_declaration_list] = STATE(1008), + [sym_type_qualifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym_struct_specifier] = STATE(130), + [sym__declaration_specifiers] = STATE(887), + [sym_storage_class_specifier] = STATE(43), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1145), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [aux_sym_preproc_else_token1] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(25), + [sym_preproc_directive] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(27), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [anon_sym_const] = ACTIONS(7), + [aux_sym_preproc_if_token2] = ACTIONS(2749), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1145), + [aux_sym_preproc_elif_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1157), + [anon_sym__Atomic] = ACTIONS(7), + [anon_sym_auto] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), + [sym_identifier] = ACTIONS(187), }, [996] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(2765), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), + [aux_sym_preproc_if_token2] = ACTIONS(2751), + [sym_comment] = ACTIONS(3), }, [997] = { - [aux_sym_declaration_repeat1] = STATE(315), - [anon_sym_COMMA] = ACTIONS(674), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2753), }, [998] = { - [sym_preproc_def] = STATE(1011), - [sym_preproc_function_def] = STATE(1011), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(1011), - [sym_field_declaration] = STATE(1011), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1011), - [sym_preproc_else_in_field_declaration_list] = STATE(1012), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(1012), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(1011), - [sym_preproc_if_in_field_declaration_list] = STATE(1011), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1011), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_bitfield_clause] = STATE(1009), + [aux_sym_field_declaration_repeat1] = STATE(418), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(2753), }, [999] = { - [sym_preproc_def] = STATE(1013), - [sym_preproc_function_def] = STATE(1013), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(1013), - [sym_field_declaration] = STATE(1013), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1013), - [sym_preproc_else_in_field_declaration_list] = STATE(1014), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(1014), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(1013), - [sym_preproc_if_in_field_declaration_list] = STATE(1013), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1013), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(2771), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [aux_sym_type_definition_repeat2] = STATE(363), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2755), }, [1000] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2773), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2757), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1001] = { - [sym_bitfield_clause] = STATE(1015), - [aux_sym_field_declaration_repeat1] = STATE(1016), - [sym_parameter_list] = STATE(334), - [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_RPAREN] = ACTIONS(2757), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(1252), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(2775), }, [1002] = { - [aux_sym_preproc_if_token2] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(1010), + [sym__expression] = STATE(1010), + [sym_comma_expression] = STATE(1011), + [sym_binary_expression] = STATE(1010), + [sym_update_expression] = STATE(1010), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1010), + [sym_sizeof_expression] = STATE(1010), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1010), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1010), + [sym_assignment_expression] = STATE(1010), + [sym_cast_expression] = STATE(1010), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1010), + [sym_true] = ACTIONS(2759), + [sym_null] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(33), }, [1003] = { - [aux_sym_type_definition_repeat2] = STATE(371), - [anon_sym_COMMA] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2779), + [sym_char_literal] = STATE(1012), + [sym__expression] = STATE(1012), + [sym_comma_expression] = STATE(1013), + [sym_binary_expression] = STATE(1012), + [sym_update_expression] = STATE(1012), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1012), + [sym_sizeof_expression] = STATE(1012), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1012), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1012), + [sym_assignment_expression] = STATE(1012), + [sym_cast_expression] = STATE(1012), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1012), + [sym_true] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2769), + [anon_sym_sizeof] = ACTIONS(33), }, [1004] = { - [aux_sym_type_definition_repeat2] = STATE(1017), - [sym_parameter_list] = STATE(267), - [anon_sym_LBRACK] = ACTIONS(966), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2781), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1005] = { - [sym_char_literal] = STATE(1018), - [sym__expression] = STATE(1018), - [sym_comma_expression] = STATE(1019), - [sym_binary_expression] = STATE(1018), - [sym_update_expression] = STATE(1018), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1018), - [sym_sizeof_expression] = STATE(1018), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1018), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1018), - [sym_assignment_expression] = STATE(1018), - [sym_cast_expression] = STATE(1018), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1018), - [sym_false] = ACTIONS(2783), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2785), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2783), - [sym_null] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(25), - }, - [1006] = { - [sym_char_literal] = STATE(1022), - [sym__expression] = STATE(1022), - [sym_comma_expression] = STATE(1023), - [sym_binary_expression] = STATE(1022), - [sym_update_expression] = STATE(1022), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1022), - [sym_sizeof_expression] = STATE(1022), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1022), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1022), - [sym_assignment_expression] = STATE(1022), - [sym_cast_expression] = STATE(1022), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1022), - [sym_false] = ACTIONS(2789), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2793), - [anon_sym_sizeof] = ACTIONS(25), - }, - [1007] = { - [aux_sym_preproc_if_token2] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2771), [sym_comment] = ACTIONS(3), }, - [1008] = { - [sym_if_statement] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(541), - [sym_declaration] = STATE(541), - [sym_do_statement] = STATE(541), - [sym_for_statement] = STATE(541), - [aux_sym_translation_unit_repeat1] = STATE(541), - [sym_expression_statement] = STATE(541), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(883), - [sym_union_specifier] = STATE(883), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(541), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_break_statement] = STATE(541), - [sym__empty_declaration] = STATE(541), - [sym_sized_type_specifier] = STATE(883), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(541), - [sym_preproc_include] = STATE(541), - [sym_preproc_if] = STATE(541), - [sym_preproc_ifdef] = STATE(541), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(541), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(883), - [sym_while_statement] = STATE(541), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(541), - [sym_struct_specifier] = STATE(883), - [sym_goto_statement] = STATE(541), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym___attribute__] = ACTIONS(19), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(95), - [sym_number_literal] = ACTIONS(93), - [anon_sym_if] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(83), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_SQUOTE] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), - [anon_sym_inline] = ACTIONS(9), + [1006] = { + [sym_char_literal] = STATE(1015), + [sym__expression] = STATE(1015), + [sym_comma_expression] = STATE(1016), + [sym_binary_expression] = STATE(1015), + [sym_update_expression] = STATE(1015), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1015), + [sym_sizeof_expression] = STATE(1015), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1015), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1015), + [sym_assignment_expression] = STATE(1015), + [sym_cast_expression] = STATE(1015), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1015), + [sym_true] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2777), + [anon_sym_sizeof] = ACTIONS(33), + }, + [1007] = { + [aux_sym_preproc_if_token2] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), + }, + [1008] = { + [aux_sym_preproc_if_token2] = ACTIONS(2781), + [sym_comment] = ACTIONS(3), }, [1009] = { - [sym_if_statement] = STATE(390), - [sym_do_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(390), - [sym_return_statement] = STATE(390), - [sym_break_statement] = STATE(390), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_continue_statement] = STATE(390), - [sym_goto_statement] = STATE(390), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(390), - [aux_sym_switch_body_repeat1] = STATE(390), - [sym_expression_statement] = STATE(390), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_default] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2783), }, [1010] = { - [anon_sym_LF] = ACTIONS(2801), - [sym_comment] = ACTIONS(171), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2785), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1011] = { - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(569), - [sym_field_declaration] = STATE(569), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), - [sym_preproc_else_in_field_declaration_list] = STATE(1025), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(1025), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_field_declaration_list] = STATE(569), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(2785), [sym_comment] = ACTIONS(3), }, [1012] = { - [aux_sym_preproc_if_token2] = ACTIONS(2805), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2787), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1013] = { - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym__field_declaration_list_item] = STATE(569), - [sym_field_declaration] = STATE(569), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), - [sym_preproc_else_in_field_declaration_list] = STATE(1026), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(1026), - [sym_type_qualifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_field_declaration_list] = STATE(569), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), - [sym_struct_specifier] = STATE(134), - [sym__declaration_specifiers] = STATE(902), - [sym_storage_class_specifier] = STATE(44), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [aux_sym_preproc_else_token1] = ACTIONS(1177), - [anon_sym_struct] = ACTIONS(61), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(17), - [aux_sym_preproc_if_token1] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [aux_sym_preproc_if_token2] = ACTIONS(2807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [aux_sym_preproc_elif_token1] = ACTIONS(1185), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(9), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(2787), [sym_comment] = ACTIONS(3), }, [1014] = { - [aux_sym_preproc_if_token2] = ACTIONS(2809), + [sym_char_literal] = STATE(1017), + [sym__expression] = STATE(1017), + [sym_comma_expression] = STATE(1018), + [sym_binary_expression] = STATE(1017), + [sym_update_expression] = STATE(1017), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1017), + [sym_sizeof_expression] = STATE(1017), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1017), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1017), + [sym_assignment_expression] = STATE(1017), + [sym_cast_expression] = STATE(1017), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1017), + [sym_true] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2793), + [anon_sym_sizeof] = ACTIONS(33), }, [1015] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2811), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2795), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1016] = { - [sym_bitfield_clause] = STATE(1027), - [aux_sym_field_declaration_repeat1] = STATE(426), + [anon_sym_RPAREN] = ACTIONS(2795), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1252), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(2811), }, [1017] = { - [aux_sym_type_definition_repeat2] = STATE(371), - [anon_sym_COMMA] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2813), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2797), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1018] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), }, [1019] = { - [anon_sym_RPAREN] = ACTIONS(2815), - [sym_comment] = ACTIONS(3), + [sym_do_statement] = STATE(1032), + [sym_preproc_function_def] = STATE(1032), + [sym__expression] = STATE(866), + [sym_binary_expression] = STATE(866), + [sym_declaration] = STATE(1032), + [sym_call_expression] = STATE(36), + [sym__type_specifier] = STATE(868), + [sym_break_statement] = STATE(1032), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(1032), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym__empty_declaration] = STATE(1032), + [sym_sized_type_specifier] = STATE(868), + [sym_preproc_include] = STATE(1032), + [sym_continue_statement] = STATE(1032), + [sym_preproc_ifdef] = STATE(1032), + [sym_pointer_expression] = STATE(36), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_macro_type_specifier] = STATE(868), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(868), + [sym_if_statement] = STATE(1032), + [sym_preproc_def] = STATE(1032), + [sym_for_statement] = STATE(1032), + [sym_comma_expression] = STATE(867), + [sym_function_definition] = STATE(1032), + [sym_update_expression] = STATE(866), + [sym_type_qualifier] = STATE(43), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(868), + [sym_switch_statement] = STATE(1032), + [sym_return_statement] = STATE(1032), + [sym_preproc_call] = STATE(1032), + [sym_conditional_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(1032), + [sym_while_statement] = STATE(1032), + [sym_preproc_if] = STATE(1032), + [sym_goto_statement] = STATE(1032), + [sym_unary_expression] = STATE(866), + [sym_linkage_specification] = STATE(1032), + [sym_subscript_expression] = STATE(36), + [sym_string_literal] = STATE(41), + [aux_sym_translation_unit_repeat1] = STATE(1032), + [sym_compound_statement] = STATE(1032), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_expression_statement] = STATE(1032), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2799), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1020] = { - [sym_char_literal] = STATE(1028), - [sym__expression] = STATE(1028), - [sym_comma_expression] = STATE(1029), - [sym_binary_expression] = STATE(1028), - [sym_update_expression] = STATE(1028), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1028), - [sym_sizeof_expression] = STATE(1028), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1028), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1028), - [sym_assignment_expression] = STATE(1028), - [sym_cast_expression] = STATE(1028), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1028), - [sym_false] = ACTIONS(2817), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2817), - [sym_null] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2821), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(2801), + [sym_preproc_arg] = ACTIONS(2803), }, [1021] = { - [sym_char_literal] = STATE(1030), - [sym__expression] = STATE(1030), - [sym_comma_expression] = STATE(1031), - [sym_binary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1030), - [sym_sizeof_expression] = STATE(1030), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1030), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1030), - [sym_assignment_expression] = STATE(1030), - [sym_cast_expression] = STATE(1030), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1030), - [sym_false] = ACTIONS(2823), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2823), - [sym_null] = ACTIONS(2823), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2827), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_string_literal_repeat1] = STATE(1039), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(2805), + [aux_sym_string_literal_token1] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2807), }, [1022] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2829), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_restrict] = ACTIONS(201), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_const] = ACTIONS(201), + [anon_sym_LPAREN2] = ACTIONS(205), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_COLON] = ACTIONS(2809), + [anon_sym__Atomic] = ACTIONS(201), + [sym_identifier] = ACTIONS(201), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_static] = ACTIONS(201), + [anon_sym_volatile] = ACTIONS(201), + [anon_sym_register] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(213), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(216), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_auto] = ACTIONS(201), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(201), + [anon_sym___attribute__] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(203), }, [1023] = { - [anon_sym_RPAREN] = ACTIONS(2829), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2811), }, [1024] = { - [sym_char_literal] = STATE(1033), - [sym__expression] = STATE(1033), - [sym_comma_expression] = STATE(1034), - [sym_binary_expression] = STATE(1033), - [sym_update_expression] = STATE(1033), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1033), - [sym_sizeof_expression] = STATE(1033), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1033), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1033), - [sym_assignment_expression] = STATE(1033), - [sym_cast_expression] = STATE(1033), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1033), - [sym_false] = ACTIONS(2831), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2831), - [sym_null] = ACTIONS(2831), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2835), - [anon_sym_sizeof] = ACTIONS(25), + [sym_string_literal] = STATE(717), + [sym_comment] = ACTIONS(3), + [anon_sym_L_DQUOTE] = ACTIONS(2813), + [sym_system_lib_string] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2813), }, [1025] = { - [aux_sym_preproc_if_token2] = ACTIONS(2837), + [sym_parenthesized_expression] = STATE(718), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(233), }, [1026] = { - [aux_sym_preproc_if_token2] = ACTIONS(2839), + [sym_char_literal] = STATE(1043), + [sym__expression] = STATE(1043), + [sym_binary_expression] = STATE(1043), + [sym_update_expression] = STATE(1043), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1043), + [sym_sizeof_expression] = STATE(1043), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1043), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1043), + [sym_assignment_expression] = STATE(1043), + [sym_cast_expression] = STATE(1043), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1043), + [sym_true] = ACTIONS(2817), + [sym_null] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1027] = { + [sym_parenthesized_expression] = STATE(720), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LPAREN2] = ACTIONS(233), }, [1028] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2823), }, [1029] = { - [anon_sym_RPAREN] = ACTIONS(2843), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1030] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2845), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2825), }, [1031] = { - [anon_sym_RPAREN] = ACTIONS(2845), - [sym_comment] = ACTIONS(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(113), + [sym_attribute_specifier] = STATE(113), + [sym_storage_class_specifier] = STATE(113), + [sym_type_qualifier] = STATE(113), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(311), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [1032] = { - [sym_char_literal] = STATE(1035), - [sym__expression] = STATE(1035), - [sym_comma_expression] = STATE(1036), - [sym_binary_expression] = STATE(1035), - [sym_update_expression] = STATE(1035), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1035), - [sym_sizeof_expression] = STATE(1035), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1035), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1035), - [sym_assignment_expression] = STATE(1035), - [sym_cast_expression] = STATE(1035), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1035), - [sym_false] = ACTIONS(2847), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2849), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2847), - [sym_null] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2851), - [anon_sym_sizeof] = ACTIONS(25), + [sym_do_statement] = STATE(532), + [sym_preproc_function_def] = STATE(532), + [sym__expression] = STATE(866), + [sym_binary_expression] = STATE(866), + [sym_declaration] = STATE(532), + [sym_call_expression] = STATE(36), + [sym__type_specifier] = STATE(868), + [sym_break_statement] = STATE(532), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(532), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym__empty_declaration] = STATE(532), + [sym_sized_type_specifier] = STATE(868), + [sym_preproc_include] = STATE(532), + [sym_continue_statement] = STATE(532), + [sym_preproc_ifdef] = STATE(532), + [sym_pointer_expression] = STATE(36), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_macro_type_specifier] = STATE(868), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(868), + [sym_if_statement] = STATE(532), + [sym_preproc_def] = STATE(532), + [sym_for_statement] = STATE(532), + [sym_comma_expression] = STATE(867), + [sym_function_definition] = STATE(532), + [sym_update_expression] = STATE(866), + [sym_type_qualifier] = STATE(43), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(868), + [sym_switch_statement] = STATE(532), + [sym_return_statement] = STATE(532), + [sym_preproc_call] = STATE(532), + [sym_conditional_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(532), + [sym_while_statement] = STATE(532), + [sym_preproc_if] = STATE(532), + [sym_goto_statement] = STATE(532), + [sym_unary_expression] = STATE(866), + [sym_linkage_specification] = STATE(532), + [sym_subscript_expression] = STATE(36), + [sym_string_literal] = STATE(41), + [aux_sym_translation_unit_repeat1] = STATE(532), + [sym_compound_statement] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_expression_statement] = STATE(532), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2829), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1033] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_LPAREN2] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(2639), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LBRACK] = ACTIONS(203), }, [1034] = { - [anon_sym_RPAREN] = ACTIONS(2853), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2831), }, [1035] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LF] = ACTIONS(2833), + [sym_comment] = ACTIONS(147), }, [1036] = { - [anon_sym_RPAREN] = ACTIONS(2855), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(1049), + [sym_preproc_def] = STATE(1049), + [sym_preproc_function_def] = STATE(1049), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(1049), + [sym_declaration] = STATE(1049), + [sym_do_statement] = STATE(1049), + [sym_for_statement] = STATE(1049), + [sym_preproc_else] = STATE(1048), + [sym_preproc_elif] = STATE(1048), + [aux_sym_translation_unit_repeat1] = STATE(1049), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(1049), + [sym_switch_statement] = STATE(1049), + [sym_return_statement] = STATE(1049), + [sym_preproc_call] = STATE(1049), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(1049), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(1049), + [sym__empty_declaration] = STATE(1049), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(1049), + [sym_preproc_include] = STATE(1049), + [sym_preproc_if] = STATE(1049), + [sym_preproc_ifdef] = STATE(1049), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(1049), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(1049), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(1049), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(1049), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(1049), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1037] = { - [sym_do_statement] = STATE(1050), - [sym_preproc_function_def] = STATE(1050), - [sym__expression] = STATE(881), - [sym_binary_expression] = STATE(881), - [sym_declaration] = STATE(1050), - [sym_call_expression] = STATE(37), - [sym__type_specifier] = STATE(883), - [sym_break_statement] = STATE(1050), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(1050), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym__empty_declaration] = STATE(1050), - [sym_sized_type_specifier] = STATE(883), - [sym_preproc_include] = STATE(1050), - [sym_continue_statement] = STATE(1050), - [sym_preproc_ifdef] = STATE(1050), - [sym_pointer_expression] = STATE(37), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_macro_type_specifier] = STATE(883), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(883), - [sym_if_statement] = STATE(1050), - [sym_preproc_def] = STATE(1050), - [sym_for_statement] = STATE(1050), - [sym_comma_expression] = STATE(882), - [sym_function_definition] = STATE(1050), - [sym_update_expression] = STATE(881), - [sym_type_qualifier] = STATE(44), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(883), - [sym_switch_statement] = STATE(1050), - [sym_return_statement] = STATE(1050), - [sym_preproc_call] = STATE(1050), - [sym_conditional_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(1050), - [sym_while_statement] = STATE(1050), - [sym_preproc_if] = STATE(1050), - [sym_goto_statement] = STATE(1050), - [sym_unary_expression] = STATE(881), - [sym_linkage_specification] = STATE(1050), - [sym_subscript_expression] = STATE(37), - [sym_string_literal] = STATE(42), - [aux_sym_translation_unit_repeat1] = STATE(1050), - [sym_compound_statement] = STATE(1050), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_expression_statement] = STATE(1050), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(97), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2857), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2837), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1038] = { - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_restrict] = ACTIONS(141), - [sym_identifier] = ACTIONS(141), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_const] = ACTIONS(141), - [anon_sym_LPAREN2] = ACTIONS(145), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(2683), - [anon_sym__Atomic] = ACTIONS(141), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_static] = ACTIONS(141), - [anon_sym_volatile] = ACTIONS(141), - [anon_sym_register] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(156), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_auto] = ACTIONS(141), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_inline] = ACTIONS(141), - [anon_sym___attribute__] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), }, [1039] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(2859), - [sym_preproc_arg] = ACTIONS(2861), + [aux_sym_string_literal_repeat1] = STATE(157), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(469), + [aux_sym_string_literal_token1] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(2839), }, [1040] = { - [aux_sym_string_literal_repeat1] = STATE(1056), - [anon_sym_DQUOTE] = ACTIONS(2863), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(2865), - [aux_sym_string_literal_token1] = ACTIONS(2865), + [sym_if_statement] = STATE(1052), + [sym_preproc_def] = STATE(1052), + [sym_preproc_function_def] = STATE(1052), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(1052), + [sym_declaration] = STATE(1052), + [sym_do_statement] = STATE(1052), + [sym_for_statement] = STATE(1052), + [sym_preproc_else] = STATE(1051), + [sym_preproc_elif] = STATE(1051), + [aux_sym_translation_unit_repeat1] = STATE(1052), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(1052), + [sym_switch_statement] = STATE(1052), + [sym_return_statement] = STATE(1052), + [sym_preproc_call] = STATE(1052), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(1052), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(1052), + [sym__empty_declaration] = STATE(1052), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(1052), + [sym_preproc_include] = STATE(1052), + [sym_preproc_if] = STATE(1052), + [sym_preproc_ifdef] = STATE(1052), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(1052), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(1052), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(1052), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(1052), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(1052), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1041] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2867), + [sym_sized_type_specifier] = STATE(130), + [sym_declaration] = STATE(733), + [sym_declaration_list] = STATE(733), + [sym_enum_specifier] = STATE(130), + [sym_function_definition] = STATE(733), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_attribute_specifier] = STATE(43), + [sym_macro_type_specifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_storage_class_specifier] = STATE(43), + [sym__declaration_specifiers] = STATE(1190), + [sym_struct_specifier] = STATE(130), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [anon_sym_static] = ACTIONS(63), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_register] = ACTIONS(63), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), + [anon_sym_long] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_auto] = ACTIONS(63), + [sym_identifier] = ACTIONS(187), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(31), }, [1042] = { - [sym_string_literal] = STATE(730), - [sym_system_lib_string] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2871), - [anon_sym_L] = ACTIONS(2873), + [sym_switch_body] = STATE(735), + [anon_sym_LBRACE] = ACTIONS(2845), [sym_comment] = ACTIONS(3), }, [1043] = { - [sym_parenthesized_expression] = STATE(731), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1044] = { - [sym_char_literal] = STATE(1060), - [sym__expression] = STATE(1060), - [sym_binary_expression] = STATE(1060), - [sym_update_expression] = STATE(1060), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1060), - [sym_sizeof_expression] = STATE(1060), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1060), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1060), - [sym_assignment_expression] = STATE(1060), - [sym_cast_expression] = STATE(1060), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1060), - [sym_false] = ACTIONS(2875), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2875), - [sym_null] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_preproc_params] = STATE(1056), + [sym_preproc_arg] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_LF] = ACTIONS(2851), + [sym_comment] = ACTIONS(147), }, [1045] = { - [sym_parenthesized_expression] = STATE(733), + [aux_sym_declaration_repeat1] = STATE(1057), + [sym_compound_statement] = STATE(740), + [sym_parameter_list] = STATE(213), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LPAREN2] = ACTIONS(652), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(2853), }, [1046] = { + [aux_sym_declaration_repeat1] = STATE(1057), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(2853), }, [1047] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_parenthesized_expression] = STATE(654), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2855), }, [1048] = { + [aux_sym_preproc_if_token2] = ACTIONS(2857), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2883), }, [1049] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(117), - [sym_attribute_specifier] = STATE(117), - [sym_storage_class_specifier] = STATE(117), - [sym_type_qualifier] = STATE(117), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(317), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [sym_if_statement] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(635), + [sym_declaration] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_preproc_else] = STATE(1058), + [sym_preproc_elif] = STATE(1058), + [aux_sym_translation_unit_repeat1] = STATE(635), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(635), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(635), + [sym__empty_declaration] = STATE(635), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(635), + [sym_preproc_include] = STATE(635), + [sym_preproc_if] = STATE(635), + [sym_preproc_ifdef] = STATE(635), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(635), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(635), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(635), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(635), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1050] = { - [sym_do_statement] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym__expression] = STATE(881), - [sym_binary_expression] = STATE(881), - [sym_declaration] = STATE(541), - [sym_call_expression] = STATE(37), - [sym__type_specifier] = STATE(883), - [sym_break_statement] = STATE(541), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(541), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym__empty_declaration] = STATE(541), - [sym_sized_type_specifier] = STATE(883), - [sym_preproc_include] = STATE(541), - [sym_continue_statement] = STATE(541), - [sym_preproc_ifdef] = STATE(541), - [sym_pointer_expression] = STATE(37), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_macro_type_specifier] = STATE(883), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(883), - [sym_if_statement] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_for_statement] = STATE(541), - [sym_comma_expression] = STATE(882), - [sym_function_definition] = STATE(541), - [sym_update_expression] = STATE(881), - [sym_type_qualifier] = STATE(44), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(883), - [sym_switch_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_conditional_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_preproc_if] = STATE(541), - [sym_goto_statement] = STATE(541), - [sym_unary_expression] = STATE(881), - [sym_linkage_specification] = STATE(541), - [sym_subscript_expression] = STATE(37), - [sym_string_literal] = STATE(42), - [aux_sym_translation_unit_repeat1] = STATE(541), - [sym_compound_statement] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_expression_statement] = STATE(541), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(97), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2887), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [aux_sym_type_definition_repeat2] = STATE(1059), + [sym_parameter_list] = STATE(260), + [anon_sym_LBRACK] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2861), }, [1051] = { + [aux_sym_preproc_if_token2] = ACTIONS(2863), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2889), }, [1052] = { - [anon_sym_LF] = ACTIONS(2891), - [sym_comment] = ACTIONS(171), + [sym_if_statement] = STATE(635), + [sym_preproc_def] = STATE(635), + [sym_preproc_function_def] = STATE(635), + [sym__expression] = STATE(950), + [sym_comma_expression] = STATE(951), + [sym_binary_expression] = STATE(950), + [sym_update_expression] = STATE(950), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(635), + [sym_declaration] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_preproc_else] = STATE(1063), + [sym_preproc_elif] = STATE(1063), + [aux_sym_translation_unit_repeat1] = STATE(635), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(952), + [sym_union_specifier] = STATE(952), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_expression_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_preproc_call] = STATE(635), + [sym_conditional_expression] = STATE(950), + [sym_assignment_expression] = STATE(950), + [sym_cast_expression] = STATE(950), + [sym__declaration_specifiers] = STATE(1171), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(950), + [sym_type_definition] = STATE(635), + [sym_char_literal] = STATE(950), + [sym_break_statement] = STATE(635), + [sym__empty_declaration] = STATE(635), + [sym_sized_type_specifier] = STATE(952), + [sym_enum_specifier] = STATE(952), + [sym_labeled_statement] = STATE(635), + [sym_preproc_include] = STATE(635), + [sym_preproc_if] = STATE(635), + [sym_preproc_ifdef] = STATE(635), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(950), + [sym_sizeof_expression] = STATE(950), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(635), + [sym_concatenated_string] = STATE(950), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(952), + [sym_while_statement] = STATE(635), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(635), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(635), + [sym_struct_specifier] = STATE(952), + [sym_goto_statement] = STATE(635), + [sym_true] = ACTIONS(378), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(378), + [anon_sym_goto] = ACTIONS(380), + [aux_sym_preproc_if_token2] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(384), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(388), + [sym_number_literal] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(388), + [aux_sym_preproc_elif_token1] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(402), + [sym_preproc_directive] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(408), + [anon_sym_for] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(416), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(378), + [anon_sym_return] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(424), + [aux_sym_preproc_def_token1] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1053] = { - [sym_if_statement] = STATE(1067), - [sym_preproc_def] = STATE(1067), - [sym_preproc_function_def] = STATE(1067), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(1067), - [sym_declaration] = STATE(1067), - [sym_do_statement] = STATE(1067), - [sym_for_statement] = STATE(1067), - [sym_preproc_else] = STATE(1066), - [sym_preproc_elif] = STATE(1066), - [aux_sym_translation_unit_repeat1] = STATE(1067), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(1067), - [sym_switch_statement] = STATE(1067), - [sym_return_statement] = STATE(1067), - [sym_preproc_call] = STATE(1067), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(1067), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(1067), - [sym__empty_declaration] = STATE(1067), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(1067), - [sym_preproc_include] = STATE(1067), - [sym_preproc_if] = STATE(1067), - [sym_preproc_ifdef] = STATE(1067), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(1067), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(1067), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(1067), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(1067), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(1067), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_if_statement] = STATE(1064), + [sym_preproc_def] = STATE(1064), + [sym_preproc_function_def] = STATE(1064), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(1064), + [sym_declaration] = STATE(1064), + [sym_do_statement] = STATE(1064), + [sym_for_statement] = STATE(1064), + [aux_sym_translation_unit_repeat1] = STATE(1064), + [sym_expression_statement] = STATE(1064), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(868), + [sym_union_specifier] = STATE(868), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(1064), + [sym_return_statement] = STATE(1064), + [sym_preproc_call] = STATE(1064), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(1064), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_break_statement] = STATE(1064), + [sym__empty_declaration] = STATE(1064), + [sym_sized_type_specifier] = STATE(868), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(1064), + [sym_preproc_include] = STATE(1064), + [sym_preproc_if] = STATE(1064), + [sym_preproc_ifdef] = STATE(1064), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(1064), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(868), + [sym_while_statement] = STATE(1064), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(1064), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(1064), + [sym_struct_specifier] = STATE(868), + [sym_goto_statement] = STATE(1064), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1054] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(1065), + [sym_do_statement] = STATE(1065), + [sym_for_statement] = STATE(1065), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(1065), + [sym_return_statement] = STATE(1065), + [sym_break_statement] = STATE(1065), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(1065), + [sym_case_statement] = STATE(1065), + [sym_while_statement] = STATE(1065), + [sym_continue_statement] = STATE(1065), + [sym_goto_statement] = STATE(1065), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(1065), + [aux_sym_switch_body_repeat1] = STATE(1065), + [sym_expression_statement] = STATE(1065), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1055] = { - [anon_sym_RPAREN] = ACTIONS(2895), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2871), + [sym_comment] = ACTIONS(147), }, [1056] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(2897), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(2873), + [sym_preproc_arg] = ACTIONS(2875), }, [1057] = { - [sym_if_statement] = STATE(1070), - [sym_preproc_def] = STATE(1070), - [sym_preproc_function_def] = STATE(1070), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(1070), - [sym_declaration] = STATE(1070), - [sym_do_statement] = STATE(1070), - [sym_for_statement] = STATE(1070), - [sym_preproc_else] = STATE(1069), - [sym_preproc_elif] = STATE(1069), - [aux_sym_translation_unit_repeat1] = STATE(1070), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(1070), - [sym_switch_statement] = STATE(1070), - [sym_return_statement] = STATE(1070), - [sym_preproc_call] = STATE(1070), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(1070), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(1070), - [sym__empty_declaration] = STATE(1070), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(1070), - [sym_preproc_include] = STATE(1070), - [sym_preproc_if] = STATE(1070), - [sym_preproc_ifdef] = STATE(1070), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(1070), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(1070), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(1070), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(1070), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(1070), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [aux_sym_declaration_repeat1] = STATE(307), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(2877), }, [1058] = { - [sym_sized_type_specifier] = STATE(134), - [sym_declaration] = STATE(746), - [sym_declaration_list] = STATE(746), - [sym_enum_specifier] = STATE(134), - [sym_function_definition] = STATE(746), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_attribute_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_storage_class_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(1212), - [sym_struct_specifier] = STATE(134), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_short] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_long] = ACTIONS(17), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_auto] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [anon_sym_inline] = ACTIONS(9), - [anon_sym___attribute__] = ACTIONS(19), + [aux_sym_preproc_if_token2] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), }, [1059] = { - [sym_switch_body] = STATE(748), - [anon_sym_LBRACE] = ACTIONS(2903), + [aux_sym_type_definition_repeat2] = STATE(363), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2881), }, [1060] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [aux_sym_type_definition_repeat2] = STATE(1067), + [sym_parameter_list] = STATE(260), + [anon_sym_LBRACK] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2883), }, [1061] = { - [sym_preproc_params] = STATE(1074), - [sym_preproc_arg] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(555), - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(2909), + [sym_char_literal] = STATE(1068), + [sym__expression] = STATE(1068), + [sym_comma_expression] = STATE(1069), + [sym_binary_expression] = STATE(1068), + [sym_update_expression] = STATE(1068), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1068), + [sym_sizeof_expression] = STATE(1068), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1068), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1068), + [sym_assignment_expression] = STATE(1068), + [sym_cast_expression] = STATE(1068), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1068), + [sym_true] = ACTIONS(2885), + [sym_null] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(33), }, [1062] = { - [aux_sym_string_literal_repeat1] = STATE(1075), - [anon_sym_DQUOTE] = ACTIONS(2897), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(2911), - [aux_sym_string_literal_token1] = ACTIONS(2911), + [sym_char_literal] = STATE(1072), + [sym__expression] = STATE(1072), + [sym_comma_expression] = STATE(1073), + [sym_binary_expression] = STATE(1072), + [sym_update_expression] = STATE(1072), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1072), + [sym_sizeof_expression] = STATE(1072), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1072), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1072), + [sym_cast_expression] = STATE(1072), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1072), + [sym_true] = ACTIONS(2891), + [sym_null] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_sizeof] = ACTIONS(33), }, [1063] = { - [aux_sym_declaration_repeat1] = STATE(1076), - [sym_compound_statement] = STATE(753), - [sym_parameter_list] = STATE(219), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_LPAREN2] = ACTIONS(672), + [aux_sym_preproc_if_token2] = ACTIONS(2897), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(2913), }, [1064] = { - [aux_sym_declaration_repeat1] = STATE(1076), - [anon_sym_COMMA] = ACTIONS(674), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2913), + [sym_if_statement] = STATE(532), + [sym_preproc_def] = STATE(532), + [sym_preproc_function_def] = STATE(532), + [sym__expression] = STATE(866), + [sym_comma_expression] = STATE(867), + [sym_binary_expression] = STATE(866), + [sym_update_expression] = STATE(866), + [sym_call_expression] = STATE(36), + [sym_function_definition] = STATE(532), + [sym_declaration] = STATE(532), + [sym_do_statement] = STATE(532), + [sym_for_statement] = STATE(532), + [aux_sym_translation_unit_repeat1] = STATE(532), + [sym_expression_statement] = STATE(532), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(868), + [sym_union_specifier] = STATE(868), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_switch_statement] = STATE(532), + [sym_return_statement] = STATE(532), + [sym_preproc_call] = STATE(532), + [sym_conditional_expression] = STATE(866), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(532), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym_break_statement] = STATE(532), + [sym__empty_declaration] = STATE(532), + [sym_sized_type_specifier] = STATE(868), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(532), + [sym_preproc_include] = STATE(532), + [sym_preproc_if] = STATE(532), + [sym_preproc_ifdef] = STATE(532), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(866), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_linkage_specification] = STATE(532), + [sym_concatenated_string] = STATE(866), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(868), + [sym_while_statement] = STATE(532), + [sym_storage_class_specifier] = STATE(43), + [sym_compound_statement] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_continue_statement] = STATE(532), + [sym_struct_specifier] = STATE(868), + [sym_goto_statement] = STATE(532), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2899), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1065] = { - [sym_parenthesized_expression] = STATE(665), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2915), + [sym_if_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(382), + [aux_sym_switch_body_repeat1] = STATE(382), + [sym_expression_statement] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1066] = { - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2903), + [sym_comment] = ACTIONS(147), }, [1067] = { - [sym_if_statement] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(646), - [sym_declaration] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym_preproc_else] = STATE(1077), - [sym_preproc_elif] = STATE(1077), - [aux_sym_translation_unit_repeat1] = STATE(646), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(646), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(646), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(646), - [sym__empty_declaration] = STATE(646), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(646), - [sym_preproc_include] = STATE(646), - [sym_preproc_if] = STATE(646), - [sym_preproc_ifdef] = STATE(646), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(646), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(646), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(646), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(646), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(646), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [aux_sym_type_definition_repeat2] = STATE(363), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(2905), }, [1068] = { - [aux_sym_type_definition_repeat2] = STATE(1078), - [sym_parameter_list] = STATE(267), - [anon_sym_LBRACK] = ACTIONS(966), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2921), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2907), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1069] = { - [aux_sym_preproc_if_token2] = ACTIONS(2923), + [anon_sym_RPAREN] = ACTIONS(2907), [sym_comment] = ACTIONS(3), }, [1070] = { - [sym_if_statement] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym__expression] = STATE(967), - [sym_comma_expression] = STATE(968), - [sym_binary_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(646), - [sym_declaration] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym_preproc_else] = STATE(1082), - [sym_preproc_elif] = STATE(1082), - [aux_sym_translation_unit_repeat1] = STATE(646), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(969), - [sym_union_specifier] = STATE(969), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_expression_statement] = STATE(646), - [sym_switch_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym__declaration_specifiers] = STATE(1192), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(967), - [sym_type_definition] = STATE(646), - [sym_char_literal] = STATE(967), - [sym_break_statement] = STATE(646), - [sym__empty_declaration] = STATE(646), - [sym_sized_type_specifier] = STATE(969), - [sym_enum_specifier] = STATE(969), - [sym_labeled_statement] = STATE(646), - [sym_preproc_include] = STATE(646), - [sym_preproc_if] = STATE(646), - [sym_preproc_ifdef] = STATE(646), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(646), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(969), - [sym_while_statement] = STATE(646), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(646), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(646), - [sym_struct_specifier] = STATE(969), - [sym_goto_statement] = STATE(646), - [sym_false] = ACTIONS(396), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(426), - [anon_sym_for] = ACTIONS(428), - [anon_sym_break] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [sym_true] = ACTIONS(396), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(396), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_char_literal] = STATE(1075), + [sym__expression] = STATE(1075), + [sym_comma_expression] = STATE(1076), + [sym_binary_expression] = STATE(1075), + [sym_update_expression] = STATE(1075), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1075), + [sym_sizeof_expression] = STATE(1075), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1075), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1075), + [sym_assignment_expression] = STATE(1075), + [sym_cast_expression] = STATE(1075), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1075), + [sym_true] = ACTIONS(2909), + [sym_null] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2911), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_sizeof] = ACTIONS(33), }, [1071] = { - [sym_if_statement] = STATE(1083), - [sym_preproc_def] = STATE(1083), - [sym_preproc_function_def] = STATE(1083), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(1083), - [sym_declaration] = STATE(1083), - [sym_do_statement] = STATE(1083), - [sym_for_statement] = STATE(1083), - [aux_sym_translation_unit_repeat1] = STATE(1083), - [sym_expression_statement] = STATE(1083), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(883), - [sym_union_specifier] = STATE(883), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(1083), - [sym_return_statement] = STATE(1083), - [sym_preproc_call] = STATE(1083), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(1083), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_break_statement] = STATE(1083), - [sym__empty_declaration] = STATE(1083), - [sym_sized_type_specifier] = STATE(883), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(1083), - [sym_preproc_include] = STATE(1083), - [sym_preproc_if] = STATE(1083), - [sym_preproc_ifdef] = STATE(1083), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(1083), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(883), - [sym_while_statement] = STATE(1083), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(1083), - [sym_struct_specifier] = STATE(883), - [sym_goto_statement] = STATE(1083), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym___attribute__] = ACTIONS(19), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(95), - [sym_number_literal] = ACTIONS(93), - [anon_sym_if] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(83), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_SQUOTE] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), - [anon_sym_inline] = ACTIONS(9), + [sym_char_literal] = STATE(1077), + [sym__expression] = STATE(1077), + [sym_comma_expression] = STATE(1078), + [sym_binary_expression] = STATE(1077), + [sym_update_expression] = STATE(1077), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1077), + [sym_sizeof_expression] = STATE(1077), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1077), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1077), + [sym_assignment_expression] = STATE(1077), + [sym_cast_expression] = STATE(1077), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1077), + [sym_true] = ACTIONS(2915), + [sym_null] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(33), }, [1072] = { - [sym_if_statement] = STATE(1084), - [sym_do_statement] = STATE(1084), - [sym_for_statement] = STATE(1084), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(1084), - [sym_return_statement] = STATE(1084), - [sym_break_statement] = STATE(1084), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(1084), - [sym_case_statement] = STATE(1084), - [sym_while_statement] = STATE(1084), - [sym_continue_statement] = STATE(1084), - [sym_goto_statement] = STATE(1084), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(1084), - [aux_sym_switch_body_repeat1] = STATE(1084), - [sym_expression_statement] = STATE(1084), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2921), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1073] = { - [anon_sym_LF] = ACTIONS(2931), - [sym_comment] = ACTIONS(171), + [anon_sym_RPAREN] = ACTIONS(2921), + [sym_comment] = ACTIONS(3), }, [1074] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(2933), - [sym_preproc_arg] = ACTIONS(2935), + [sym_char_literal] = STATE(1080), + [sym__expression] = STATE(1080), + [sym_comma_expression] = STATE(1081), + [sym_binary_expression] = STATE(1080), + [sym_update_expression] = STATE(1080), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1080), + [sym_sizeof_expression] = STATE(1080), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1080), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1080), + [sym_assignment_expression] = STATE(1080), + [sym_cast_expression] = STATE(1080), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1080), + [sym_true] = ACTIONS(2923), + [sym_null] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(33), }, [1075] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(2937), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1076] = { - [aux_sym_declaration_repeat1] = STATE(315), - [anon_sym_COMMA] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(2929), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2939), }, [1077] = { - [aux_sym_preproc_if_token2] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2931), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1078] = { - [aux_sym_type_definition_repeat2] = STATE(371), - [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(2931), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2943), }, [1079] = { - [aux_sym_type_definition_repeat2] = STATE(1086), - [sym_parameter_list] = STATE(267), - [anon_sym_LBRACK] = ACTIONS(966), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2945), + [sym_char_literal] = STATE(1082), + [sym__expression] = STATE(1082), + [sym_comma_expression] = STATE(1083), + [sym_binary_expression] = STATE(1082), + [sym_update_expression] = STATE(1082), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1082), + [sym_sizeof_expression] = STATE(1082), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1082), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1082), + [sym_cast_expression] = STATE(1082), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1082), + [sym_true] = ACTIONS(2933), + [sym_null] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2937), + [anon_sym_sizeof] = ACTIONS(33), }, [1080] = { - [sym_char_literal] = STATE(1087), - [sym__expression] = STATE(1087), - [sym_comma_expression] = STATE(1088), - [sym_binary_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1087), - [sym_sizeof_expression] = STATE(1087), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1087), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1087), - [sym_assignment_expression] = STATE(1087), - [sym_cast_expression] = STATE(1087), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1087), - [sym_false] = ACTIONS(2947), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2947), - [sym_null] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2939), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1081] = { - [sym_char_literal] = STATE(1091), - [sym__expression] = STATE(1091), - [sym_comma_expression] = STATE(1092), - [sym_binary_expression] = STATE(1091), - [sym_update_expression] = STATE(1091), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1091), - [sym_sizeof_expression] = STATE(1091), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1091), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1091), - [sym_assignment_expression] = STATE(1091), - [sym_cast_expression] = STATE(1091), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1091), - [sym_false] = ACTIONS(2953), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2953), - [sym_null] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2957), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), }, [1082] = { - [aux_sym_preproc_if_token2] = ACTIONS(2959), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2941), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1083] = { - [sym_if_statement] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym__expression] = STATE(881), - [sym_comma_expression] = STATE(882), - [sym_binary_expression] = STATE(881), - [sym_update_expression] = STATE(881), - [sym_call_expression] = STATE(37), - [sym_function_definition] = STATE(541), - [sym_declaration] = STATE(541), - [sym_do_statement] = STATE(541), - [sym_for_statement] = STATE(541), - [aux_sym_translation_unit_repeat1] = STATE(541), - [sym_expression_statement] = STATE(541), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(883), - [sym_union_specifier] = STATE(883), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_switch_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_conditional_expression] = STATE(881), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(541), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym_break_statement] = STATE(541), - [sym__empty_declaration] = STATE(541), - [sym_sized_type_specifier] = STATE(883), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(541), - [sym_preproc_include] = STATE(541), - [sym_preproc_if] = STATE(541), - [sym_preproc_ifdef] = STATE(541), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(881), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_linkage_specification] = STATE(541), - [sym_concatenated_string] = STATE(881), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(883), - [sym_while_statement] = STATE(541), - [sym_storage_class_specifier] = STATE(44), - [sym_compound_statement] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_continue_statement] = STATE(541), - [sym_struct_specifier] = STATE(883), - [sym_goto_statement] = STATE(541), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym___attribute__] = ACTIONS(19), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_do] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(87), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(109), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(9), - [anon_sym_extern] = ACTIONS(95), - [sym_number_literal] = ACTIONS(93), - [anon_sym_if] = ACTIONS(117), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_switch] = ACTIONS(119), - [anon_sym_signed] = ACTIONS(17), - [sym_true] = ACTIONS(83), - [anon_sym_long] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_return] = ACTIONS(121), - [anon_sym_while] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(123), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(125), - [anon_sym_SQUOTE] = ACTIONS(77), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_L] = ACTIONS(81), - [anon_sym_inline] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(2941), + [sym_comment] = ACTIONS(3), }, [1084] = { - [sym_if_statement] = STATE(390), - [sym_do_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(390), - [sym_return_statement] = STATE(390), - [sym_break_statement] = STATE(390), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_continue_statement] = STATE(390), - [sym_goto_statement] = STATE(390), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(390), - [aux_sym_switch_body_repeat1] = STATE(390), - [sym_expression_statement] = STATE(390), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_default] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_do_statement] = STATE(1094), + [sym_preproc_function_def] = STATE(1094), + [sym__expression] = STATE(866), + [sym_binary_expression] = STATE(866), + [sym_declaration] = STATE(1094), + [sym_call_expression] = STATE(36), + [sym__type_specifier] = STATE(868), + [sym_break_statement] = STATE(1094), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(1094), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym__empty_declaration] = STATE(1094), + [sym_sized_type_specifier] = STATE(868), + [sym_preproc_include] = STATE(1094), + [sym_continue_statement] = STATE(1094), + [sym_preproc_ifdef] = STATE(1094), + [sym_pointer_expression] = STATE(36), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_macro_type_specifier] = STATE(868), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(868), + [sym_if_statement] = STATE(1094), + [sym_preproc_def] = STATE(1094), + [sym_for_statement] = STATE(1094), + [sym_comma_expression] = STATE(867), + [sym_function_definition] = STATE(1094), + [sym_update_expression] = STATE(866), + [sym_type_qualifier] = STATE(43), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(868), + [sym_switch_statement] = STATE(1094), + [sym_return_statement] = STATE(1094), + [sym_preproc_call] = STATE(1094), + [sym_conditional_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(1094), + [sym_while_statement] = STATE(1094), + [sym_preproc_if] = STATE(1094), + [sym_goto_statement] = STATE(1094), + [sym_unary_expression] = STATE(866), + [sym_linkage_specification] = STATE(1094), + [sym_subscript_expression] = STATE(36), + [sym_string_literal] = STATE(41), + [aux_sym_translation_unit_repeat1] = STATE(1094), + [sym_compound_statement] = STATE(1094), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_expression_statement] = STATE(1094), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2943), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1085] = { - [anon_sym_LF] = ACTIONS(2965), - [sym_comment] = ACTIONS(171), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(2945), + [sym_preproc_arg] = ACTIONS(2947), }, [1086] = { - [aux_sym_type_definition_repeat2] = STATE(371), - [anon_sym_COMMA] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2967), + [aux_sym_string_literal_repeat1] = STATE(1100), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(2949), + [aux_sym_string_literal_token1] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2951), }, [1087] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2953), }, [1088] = { - [anon_sym_RPAREN] = ACTIONS(2969), + [sym_parenthesized_expression] = STATE(792), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(233), }, [1089] = { - [sym_char_literal] = STATE(1094), - [sym__expression] = STATE(1094), - [sym_comma_expression] = STATE(1095), - [sym_binary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1094), - [sym_sizeof_expression] = STATE(1094), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1094), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1094), - [sym_assignment_expression] = STATE(1094), - [sym_cast_expression] = STATE(1094), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1094), - [sym_false] = ACTIONS(2971), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2973), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2971), - [sym_null] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(1102), + [sym__expression] = STATE(1102), + [sym_binary_expression] = STATE(1102), + [sym_update_expression] = STATE(1102), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1102), + [sym_sizeof_expression] = STATE(1102), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1102), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1102), + [sym_assignment_expression] = STATE(1102), + [sym_cast_expression] = STATE(1102), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1102), + [sym_true] = ACTIONS(2955), + [sym_null] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1090] = { - [sym_char_literal] = STATE(1096), - [sym__expression] = STATE(1096), - [sym_comma_expression] = STATE(1097), - [sym_binary_expression] = STATE(1096), - [sym_update_expression] = STATE(1096), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1096), - [sym_sizeof_expression] = STATE(1096), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1096), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1096), - [sym_cast_expression] = STATE(1096), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1096), - [sym_false] = ACTIONS(2977), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2977), - [sym_null] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2981), - [anon_sym_sizeof] = ACTIONS(25), + [sym_parenthesized_expression] = STATE(794), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(233), }, [1091] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2961), }, [1092] = { - [anon_sym_RPAREN] = ACTIONS(2983), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1093] = { - [sym_char_literal] = STATE(1099), - [sym__expression] = STATE(1099), - [sym_comma_expression] = STATE(1100), - [sym_binary_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1099), - [sym_sizeof_expression] = STATE(1099), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1099), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1099), - [sym_cast_expression] = STATE(1099), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1099), - [sym_false] = ACTIONS(2985), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2985), - [sym_null] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2963), }, [1094] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_do_statement] = STATE(532), + [sym_preproc_function_def] = STATE(532), + [sym__expression] = STATE(866), + [sym_binary_expression] = STATE(866), + [sym_declaration] = STATE(532), + [sym_call_expression] = STATE(36), + [sym__type_specifier] = STATE(868), + [sym_break_statement] = STATE(532), + [sym_assignment_expression] = STATE(866), + [sym_type_definition] = STATE(532), + [sym_compound_literal_expression] = STATE(866), + [sym_char_literal] = STATE(866), + [sym__empty_declaration] = STATE(532), + [sym_sized_type_specifier] = STATE(868), + [sym_preproc_include] = STATE(532), + [sym_continue_statement] = STATE(532), + [sym_preproc_ifdef] = STATE(532), + [sym_pointer_expression] = STATE(36), + [sym_sizeof_expression] = STATE(866), + [sym_attribute_specifier] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(866), + [sym_macro_type_specifier] = STATE(868), + [sym_storage_class_specifier] = STATE(43), + [sym_struct_specifier] = STATE(868), + [sym_if_statement] = STATE(532), + [sym_preproc_def] = STATE(532), + [sym_for_statement] = STATE(532), + [sym_comma_expression] = STATE(867), + [sym_function_definition] = STATE(532), + [sym_update_expression] = STATE(866), + [sym_type_qualifier] = STATE(43), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(868), + [sym_switch_statement] = STATE(532), + [sym_return_statement] = STATE(532), + [sym_preproc_call] = STATE(532), + [sym_conditional_expression] = STATE(866), + [sym_cast_expression] = STATE(866), + [sym__declaration_specifiers] = STATE(1150), + [sym_field_expression] = STATE(36), + [sym_enum_specifier] = STATE(868), + [sym_labeled_statement] = STATE(532), + [sym_while_statement] = STATE(532), + [sym_preproc_if] = STATE(532), + [sym_goto_statement] = STATE(532), + [sym_unary_expression] = STATE(866), + [sym_linkage_specification] = STATE(532), + [sym_subscript_expression] = STATE(36), + [sym_string_literal] = STATE(41), + [aux_sym_translation_unit_repeat1] = STATE(532), + [sym_compound_statement] = STATE(532), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_expression_statement] = STATE(532), + [sym_true] = ACTIONS(81), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(81), + [anon_sym_goto] = ACTIONS(83), + [anon_sym_const] = ACTIONS(7), + [anon_sym_typedef] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(87), + [aux_sym_preproc_ifdef_token1] = ACTIONS(89), + [sym_number_literal] = ACTIONS(91), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_while] = ACTIONS(95), + [aux_sym_preproc_ifdef_token2] = ACTIONS(89), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_do] = ACTIONS(99), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(43), + [aux_sym_preproc_if_token1] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_RBRACE] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(47), + [aux_sym_preproc_include_token1] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(115), + [anon_sym_switch] = ACTIONS(117), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(81), + [anon_sym_return] = ACTIONS(119), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(123), + [aux_sym_preproc_def_token1] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1095] = { - [anon_sym_RPAREN] = ACTIONS(2991), - [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_LPAREN2] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(2809), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LBRACK] = ACTIONS(203), }, [1096] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(2993), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2967), }, [1097] = { - [anon_sym_RPAREN] = ACTIONS(2993), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2969), + [sym_comment] = ACTIONS(147), }, [1098] = { - [sym_char_literal] = STATE(1101), - [sym__expression] = STATE(1101), - [sym_comma_expression] = STATE(1102), - [sym_binary_expression] = STATE(1101), - [sym_update_expression] = STATE(1101), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1101), - [sym_sizeof_expression] = STATE(1101), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1101), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1101), - [sym_assignment_expression] = STATE(1101), - [sym_cast_expression] = STATE(1101), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1101), - [sym_false] = ACTIONS(2995), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(2995), - [sym_null] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(2999), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1099] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(2971), + [sym_comment] = ACTIONS(3), }, [1100] = { - [anon_sym_RPAREN] = ACTIONS(3001), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(157), + [sym_comment] = ACTIONS(147), + [sym_escape_sequence] = ACTIONS(469), + [aux_sym_string_literal_token1] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(2973), }, [1101] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_switch_body] = STATE(804), + [anon_sym_LBRACE] = ACTIONS(2975), + [sym_comment] = ACTIONS(3), }, [1102] = { - [anon_sym_RPAREN] = ACTIONS(3003), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1103] = { - [sym_do_statement] = STATE(1113), - [sym_preproc_function_def] = STATE(1113), - [sym__expression] = STATE(881), - [sym_binary_expression] = STATE(881), - [sym_declaration] = STATE(1113), - [sym_call_expression] = STATE(37), - [sym__type_specifier] = STATE(883), - [sym_break_statement] = STATE(1113), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(1113), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym__empty_declaration] = STATE(1113), - [sym_sized_type_specifier] = STATE(883), - [sym_preproc_include] = STATE(1113), - [sym_continue_statement] = STATE(1113), - [sym_preproc_ifdef] = STATE(1113), - [sym_pointer_expression] = STATE(37), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_macro_type_specifier] = STATE(883), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(883), - [sym_if_statement] = STATE(1113), - [sym_preproc_def] = STATE(1113), - [sym_for_statement] = STATE(1113), - [sym_comma_expression] = STATE(882), - [sym_function_definition] = STATE(1113), - [sym_update_expression] = STATE(881), - [sym_type_qualifier] = STATE(44), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(883), - [sym_switch_statement] = STATE(1113), - [sym_return_statement] = STATE(1113), - [sym_preproc_call] = STATE(1113), - [sym_conditional_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(1113), - [sym_while_statement] = STATE(1113), - [sym_preproc_if] = STATE(1113), - [sym_goto_statement] = STATE(1113), - [sym_unary_expression] = STATE(881), - [sym_linkage_specification] = STATE(1113), - [sym_subscript_expression] = STATE(37), - [sym_string_literal] = STATE(42), - [aux_sym_translation_unit_repeat1] = STATE(1113), - [sym_compound_statement] = STATE(1113), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_expression_statement] = STATE(1113), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(97), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(3005), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_preproc_params] = STATE(1107), + [sym_preproc_arg] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_LF] = ACTIONS(2981), + [sym_comment] = ACTIONS(147), }, [1104] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(3007), - [sym_preproc_arg] = ACTIONS(3009), + [sym_parenthesized_expression] = STATE(741), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2983), }, [1105] = { - [aux_sym_string_literal_repeat1] = STATE(1118), - [anon_sym_DQUOTE] = ACTIONS(3011), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(3013), - [aux_sym_string_literal_token1] = ACTIONS(3013), + [sym_if_statement] = STATE(1110), + [sym_do_statement] = STATE(1110), + [sym_for_statement] = STATE(1110), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(1110), + [sym_return_statement] = STATE(1110), + [sym_break_statement] = STATE(1110), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(1110), + [sym_case_statement] = STATE(1110), + [sym_while_statement] = STATE(1110), + [sym_continue_statement] = STATE(1110), + [sym_goto_statement] = STATE(1110), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(1110), + [aux_sym_switch_body_repeat1] = STATE(1110), + [sym_expression_statement] = STATE(1110), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1106] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_LF] = ACTIONS(2987), + [sym_comment] = ACTIONS(147), }, [1107] = { - [sym_parenthesized_expression] = STATE(806), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(2989), + [sym_preproc_arg] = ACTIONS(2991), }, [1108] = { - [sym_char_literal] = STATE(1120), - [sym__expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_update_expression] = STATE(1120), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1120), - [sym_sizeof_expression] = STATE(1120), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1120), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1120), - [sym_assignment_expression] = STATE(1120), - [sym_cast_expression] = STATE(1120), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1120), - [sym_false] = ACTIONS(3017), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3017), - [sym_null] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(1112), + [sym__expression] = STATE(1112), + [sym_comma_expression] = STATE(1113), + [sym_binary_expression] = STATE(1112), + [sym_update_expression] = STATE(1112), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1112), + [sym_sizeof_expression] = STATE(1112), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1112), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1112), + [sym_assignment_expression] = STATE(1112), + [sym_cast_expression] = STATE(1112), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1112), + [sym_true] = ACTIONS(2993), + [sym_null] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_sizeof] = ACTIONS(33), }, [1109] = { - [sym_parenthesized_expression] = STATE(808), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [sym_char_literal] = STATE(1116), + [sym__expression] = STATE(1116), + [sym_comma_expression] = STATE(1117), + [sym_binary_expression] = STATE(1116), + [sym_update_expression] = STATE(1116), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1116), + [sym_sizeof_expression] = STATE(1116), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1116), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1116), + [sym_cast_expression] = STATE(1116), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1116), + [sym_true] = ACTIONS(2999), + [sym_null] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(2999), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3003), + [anon_sym_sizeof] = ACTIONS(33), }, [1110] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3023), + [sym_if_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym__expression] = STATE(1092), + [sym_comma_expression] = STATE(1093), + [sym_binary_expression] = STATE(1092), + [sym_update_expression] = STATE(1092), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_conditional_expression] = STATE(1092), + [sym_assignment_expression] = STATE(1092), + [sym_cast_expression] = STATE(1092), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1092), + [sym_char_literal] = STATE(1092), + [sym_labeled_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1092), + [sym_sizeof_expression] = STATE(1092), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1092), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(382), + [aux_sym_switch_body_repeat1] = STATE(382), + [sym_expression_statement] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_default] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(1018), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(998), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1111] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LF] = ACTIONS(3007), + [sym_comment] = ACTIONS(147), }, [1112] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3025), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1113] = { - [sym_do_statement] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym__expression] = STATE(881), - [sym_binary_expression] = STATE(881), - [sym_declaration] = STATE(541), - [sym_call_expression] = STATE(37), - [sym__type_specifier] = STATE(883), - [sym_break_statement] = STATE(541), - [sym_assignment_expression] = STATE(881), - [sym_type_definition] = STATE(541), - [sym_compound_literal_expression] = STATE(881), - [sym_char_literal] = STATE(881), - [sym__empty_declaration] = STATE(541), - [sym_sized_type_specifier] = STATE(883), - [sym_preproc_include] = STATE(541), - [sym_continue_statement] = STATE(541), - [sym_preproc_ifdef] = STATE(541), - [sym_pointer_expression] = STATE(37), - [sym_sizeof_expression] = STATE(881), - [sym_attribute_specifier] = STATE(44), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(881), - [sym_macro_type_specifier] = STATE(883), - [sym_storage_class_specifier] = STATE(44), - [sym_struct_specifier] = STATE(883), - [sym_if_statement] = STATE(541), - [sym_preproc_def] = STATE(541), - [sym_for_statement] = STATE(541), - [sym_comma_expression] = STATE(882), - [sym_function_definition] = STATE(541), - [sym_update_expression] = STATE(881), - [sym_type_qualifier] = STATE(44), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(883), - [sym_switch_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_conditional_expression] = STATE(881), - [sym_cast_expression] = STATE(881), - [sym__declaration_specifiers] = STATE(1170), - [sym_field_expression] = STATE(37), - [sym_enum_specifier] = STATE(883), - [sym_labeled_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_preproc_if] = STATE(541), - [sym_goto_statement] = STATE(541), - [sym_unary_expression] = STATE(881), - [sym_linkage_specification] = STATE(541), - [sym_subscript_expression] = STATE(37), - [sym_string_literal] = STATE(42), - [aux_sym_translation_unit_repeat1] = STATE(541), - [sym_compound_statement] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_expression_statement] = STATE(541), - [sym_false] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(85), - [anon_sym_goto] = ACTIONS(87), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_ifdef_token1] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_while] = ACTIONS(97), - [aux_sym_preproc_ifdef_token2] = ACTIONS(91), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_do] = ACTIONS(101), - [sym_preproc_directive] = ACTIONS(103), - [anon_sym_AMP] = ACTIONS(29), - [aux_sym_preproc_if_token1] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(3027), - [sym_primitive_type] = ACTIONS(109), - [anon_sym_for] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(33), - [aux_sym_preproc_include_token1] = ACTIONS(115), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(117), - [anon_sym_switch] = ACTIONS(119), - [sym_true] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(83), - [anon_sym_return] = ACTIONS(121), - [anon_sym_continue] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(125), - [aux_sym_preproc_def_token1] = ACTIONS(127), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(3), }, [1114] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3029), + [sym_char_literal] = STATE(1119), + [sym__expression] = STATE(1119), + [sym_comma_expression] = STATE(1120), + [sym_binary_expression] = STATE(1119), + [sym_update_expression] = STATE(1119), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1119), + [sym_sizeof_expression] = STATE(1119), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1119), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1119), + [sym_assignment_expression] = STATE(1119), + [sym_cast_expression] = STATE(1119), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1119), + [sym_true] = ACTIONS(3011), + [sym_null] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_sizeof] = ACTIONS(33), }, [1115] = { - [anon_sym_LF] = ACTIONS(3031), - [sym_comment] = ACTIONS(171), + [sym_char_literal] = STATE(1121), + [sym__expression] = STATE(1121), + [sym_comma_expression] = STATE(1122), + [sym_binary_expression] = STATE(1121), + [sym_update_expression] = STATE(1121), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1121), + [sym_sizeof_expression] = STATE(1121), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1121), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1121), + [sym_assignment_expression] = STATE(1121), + [sym_cast_expression] = STATE(1121), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1121), + [sym_true] = ACTIONS(3017), + [sym_null] = ACTIONS(3017), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3021), + [anon_sym_sizeof] = ACTIONS(33), }, [1116] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3023), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1117] = { - [anon_sym_RPAREN] = ACTIONS(3033), + [anon_sym_RPAREN] = ACTIONS(3023), [sym_comment] = ACTIONS(3), }, [1118] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(3035), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_char_literal] = STATE(1124), + [sym__expression] = STATE(1124), + [sym_comma_expression] = STATE(1125), + [sym_binary_expression] = STATE(1124), + [sym_update_expression] = STATE(1124), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1124), + [sym_sizeof_expression] = STATE(1124), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1124), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1124), + [sym_assignment_expression] = STATE(1124), + [sym_cast_expression] = STATE(1124), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1124), + [sym_true] = ACTIONS(3025), + [sym_null] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3029), + [anon_sym_sizeof] = ACTIONS(33), }, [1119] = { - [sym_switch_body] = STATE(818), - [anon_sym_LBRACE] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1120] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(3), }, [1121] = { - [sym_preproc_params] = STATE(1126), - [sym_preproc_arg] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(555), - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(3043), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1122] = { - [aux_sym_string_literal_repeat1] = STATE(1127), - [anon_sym_DQUOTE] = ACTIONS(3035), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(3045), - [aux_sym_string_literal_token1] = ACTIONS(3045), + [anon_sym_RPAREN] = ACTIONS(3033), + [sym_comment] = ACTIONS(3), }, [1123] = { - [sym_parenthesized_expression] = STATE(754), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3047), + [sym_char_literal] = STATE(1126), + [sym__expression] = STATE(1126), + [sym_comma_expression] = STATE(1127), + [sym_binary_expression] = STATE(1126), + [sym_update_expression] = STATE(1126), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1126), + [sym_sizeof_expression] = STATE(1126), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1126), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1126), + [sym_assignment_expression] = STATE(1126), + [sym_cast_expression] = STATE(1126), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1126), + [sym_true] = ACTIONS(3035), + [sym_null] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3039), + [anon_sym_sizeof] = ACTIONS(33), }, [1124] = { - [sym_if_statement] = STATE(1130), - [sym_do_statement] = STATE(1130), - [sym_for_statement] = STATE(1130), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(1130), - [sym_return_statement] = STATE(1130), - [sym_break_statement] = STATE(1130), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(1130), - [sym_case_statement] = STATE(1130), - [sym_while_statement] = STATE(1130), - [sym_continue_statement] = STATE(1130), - [sym_goto_statement] = STATE(1130), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(1130), - [aux_sym_switch_body_repeat1] = STATE(1130), - [sym_expression_statement] = STATE(1130), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1125] = { - [anon_sym_LF] = ACTIONS(3051), - [sym_comment] = ACTIONS(171), + [anon_sym_RPAREN] = ACTIONS(3041), + [sym_comment] = ACTIONS(3), }, [1126] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(3053), - [sym_preproc_arg] = ACTIONS(3055), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3043), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1127] = { - [aux_sym_string_literal_repeat1] = STATE(164), - [anon_sym_DQUOTE] = ACTIONS(3057), - [sym_comment] = ACTIONS(171), - [sym_escape_sequence] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), }, [1128] = { - [sym_char_literal] = STATE(1132), - [sym__expression] = STATE(1132), - [sym_comma_expression] = STATE(1133), - [sym_binary_expression] = STATE(1132), - [sym_update_expression] = STATE(1132), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1132), - [sym_sizeof_expression] = STATE(1132), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1132), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1132), - [sym_assignment_expression] = STATE(1132), - [sym_cast_expression] = STATE(1132), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1132), - [sym_false] = ACTIONS(3059), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3061), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3059), - [sym_null] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3063), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(3045), + [sym_preproc_arg] = ACTIONS(3047), }, [1129] = { - [sym_char_literal] = STATE(1136), - [sym__expression] = STATE(1136), - [sym_comma_expression] = STATE(1137), - [sym_binary_expression] = STATE(1136), - [sym_update_expression] = STATE(1136), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1136), - [sym_sizeof_expression] = STATE(1136), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1136), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1136), - [sym_assignment_expression] = STATE(1136), - [sym_cast_expression] = STATE(1136), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1136), - [sym_false] = ACTIONS(3065), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3065), - [sym_null] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LF] = ACTIONS(3049), + [sym_comment] = ACTIONS(147), }, [1130] = { - [sym_if_statement] = STATE(390), - [sym_do_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym__expression] = STATE(1111), - [sym_comma_expression] = STATE(1112), - [sym_binary_expression] = STATE(1111), - [sym_update_expression] = STATE(1111), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(390), - [sym_return_statement] = STATE(390), - [sym_break_statement] = STATE(390), - [sym_conditional_expression] = STATE(1111), - [sym_assignment_expression] = STATE(1111), - [sym_cast_expression] = STATE(1111), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1111), - [sym_char_literal] = STATE(1111), - [sym_labeled_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_continue_statement] = STATE(390), - [sym_goto_statement] = STATE(390), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1111), - [sym_sizeof_expression] = STATE(1111), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(390), - [aux_sym_switch_body_repeat1] = STATE(390), - [sym_expression_statement] = STATE(390), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [sym_false] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_goto] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_default] = ACTIONS(1031), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(1041), - [sym_true] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1049), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1131] = { - [anon_sym_LF] = ACTIONS(3073), - [sym_comment] = ACTIONS(171), + [anon_sym_RPAREN] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), }, [1132] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_preproc_params] = STATE(1135), + [sym_preproc_arg] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_LF] = ACTIONS(3055), + [sym_comment] = ACTIONS(147), }, [1133] = { - [anon_sym_RPAREN] = ACTIONS(3075), + [sym_parenthesized_expression] = STATE(808), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(233), }, [1134] = { - [sym_char_literal] = STATE(1139), - [sym__expression] = STATE(1139), - [sym_comma_expression] = STATE(1140), - [sym_binary_expression] = STATE(1139), - [sym_update_expression] = STATE(1139), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1139), - [sym_sizeof_expression] = STATE(1139), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1139), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1139), - [sym_assignment_expression] = STATE(1139), - [sym_cast_expression] = STATE(1139), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1139), - [sym_false] = ACTIONS(3077), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3077), - [sym_null] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3081), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LF] = ACTIONS(3057), + [sym_comment] = ACTIONS(147), }, [1135] = { - [sym_char_literal] = STATE(1141), - [sym__expression] = STATE(1141), - [sym_comma_expression] = STATE(1142), - [sym_binary_expression] = STATE(1141), - [sym_update_expression] = STATE(1141), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1141), - [sym_sizeof_expression] = STATE(1141), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1141), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1141), - [sym_assignment_expression] = STATE(1141), - [sym_cast_expression] = STATE(1141), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1141), - [sym_false] = ACTIONS(3083), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3085), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3083), - [sym_null] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(3059), + [sym_preproc_arg] = ACTIONS(3061), }, [1136] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LF] = ACTIONS(3063), + [sym_comment] = ACTIONS(147), }, [1137] = { - [anon_sym_RPAREN] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(3065), + [sym_preproc_arg] = ACTIONS(3067), }, [1138] = { - [sym_char_literal] = STATE(1144), - [sym__expression] = STATE(1144), - [sym_comma_expression] = STATE(1145), - [sym_binary_expression] = STATE(1144), - [sym_update_expression] = STATE(1144), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1144), - [sym_sizeof_expression] = STATE(1144), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1144), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1144), - [sym_cast_expression] = STATE(1144), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1144), - [sym_false] = ACTIONS(3091), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3093), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3091), - [sym_null] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_LF] = ACTIONS(3069), + [sym_comment] = ACTIONS(147), }, [1139] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_preproc_params] = STATE(1141), + [sym_preproc_arg] = ACTIONS(3071), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_LF] = ACTIONS(3073), + [sym_comment] = ACTIONS(147), }, [1140] = { - [anon_sym_RPAREN] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3075), + [sym_comment] = ACTIONS(147), }, [1141] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(3077), + [sym_preproc_arg] = ACTIONS(3079), }, [1142] = { - [anon_sym_RPAREN] = ACTIONS(3099), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(3081), + [sym_comment] = ACTIONS(147), }, [1143] = { - [sym_char_literal] = STATE(1146), - [sym__expression] = STATE(1146), - [sym_comma_expression] = STATE(1147), - [sym_binary_expression] = STATE(1146), - [sym_update_expression] = STATE(1146), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1146), - [sym_sizeof_expression] = STATE(1146), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1146), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1146), - [sym_assignment_expression] = STATE(1146), - [sym_cast_expression] = STATE(1146), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1146), - [sym_false] = ACTIONS(3101), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3101), - [sym_null] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3105), - [anon_sym_sizeof] = ACTIONS(25), + [sym_identifier] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), }, [1144] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_preproc_arg] = ACTIONS(3085), + [sym_comment] = ACTIONS(147), }, [1145] = { - [anon_sym_RPAREN] = ACTIONS(3107), - [sym_comment] = ACTIONS(3), + [sym__expression] = STATE(59), + [sym_comma_expression] = STATE(61), + [sym_binary_expression] = STATE(59), + [sym_update_expression] = STATE(59), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(60), + [sym__type_specifier] = STATE(62), + [aux_sym_sized_type_specifier_repeat1] = STATE(508), + [sym_union_specifier] = STATE(62), + [sym_conditional_expression] = STATE(59), + [sym_assignment_expression] = STATE(59), + [sym_cast_expression] = STATE(59), + [sym_type_descriptor] = STATE(874), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(59), + [sym_char_literal] = STATE(59), + [aux_sym_type_definition_repeat1] = STATE(60), + [sym_sized_type_specifier] = STATE(62), + [sym_enum_specifier] = STATE(62), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(59), + [sym_sizeof_expression] = STATE(59), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(59), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(62), + [sym_struct_specifier] = STATE(62), + [anon_sym_union] = ACTIONS(37), + [sym_true] = ACTIONS(175), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(175), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(179), + [sym_identifier] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(183), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(175), + [anon_sym_long] = ACTIONS(177), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1146] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_identifier] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), }, [1147] = { - [anon_sym_RPAREN] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), + [sym_string_literal] = STATE(879), + [anon_sym_union] = ACTIONS(229), + [anon_sym_unsigned] = ACTIONS(229), + [anon_sym_restrict] = ACTIONS(229), + [anon_sym_short] = ACTIONS(229), + [anon_sym_static] = ACTIONS(229), + [anon_sym_volatile] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_signed] = ACTIONS(229), + [anon_sym_enum] = ACTIONS(229), + [anon_sym_long] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(229), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(229), + [sym_primitive_type] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [sym_identifier] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym___attribute__] = ACTIONS(229), }, [1148] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(3111), - [sym_preproc_arg] = ACTIONS(3113), + [sym_parenthesized_expression] = STATE(881), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(237), }, [1149] = { - [anon_sym_LF] = ACTIONS(3115), - [sym_comment] = ACTIONS(171), + [sym_identifier] = ACTIONS(3089), + [sym_comment] = ACTIONS(3), }, [1150] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_pointer_declarator] = STATE(885), + [sym_array_declarator] = STATE(885), + [sym__declarator] = STATE(885), + [sym_parenthesized_declarator] = STATE(885), + [sym_function_declarator] = STATE(885), + [sym_init_declarator] = STATE(886), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(328), + [sym_identifier] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), }, [1151] = { - [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3093), [sym_comment] = ACTIONS(3), }, [1152] = { - [sym_preproc_params] = STATE(1155), - [sym_preproc_arg] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(555), - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(3121), + [sym_array_type_declarator] = STATE(891), + [sym_parenthesized_type_declarator] = STATE(891), + [sym_function_type_declarator] = STATE(891), + [sym__type_declarator] = STATE(891), + [sym_pointer_type_declarator] = STATE(891), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LPAREN2] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), + [sym_comment] = ACTIONS(3), }, [1153] = { - [sym_parenthesized_expression] = STATE(822), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [sym_char_literal] = STATE(958), + [sym__expression] = STATE(958), + [sym_comma_expression] = STATE(959), + [sym_binary_expression] = STATE(958), + [sym_update_expression] = STATE(958), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(958), + [sym_sizeof_expression] = STATE(958), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(958), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(958), + [sym_assignment_expression] = STATE(958), + [sym_cast_expression] = STATE(958), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(958), + [sym_true] = ACTIONS(3095), + [sym_null] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1154] = { - [anon_sym_LF] = ACTIONS(3123), - [sym_comment] = ACTIONS(171), + [sym__expression] = STATE(59), + [sym_comma_expression] = STATE(61), + [sym_binary_expression] = STATE(59), + [sym_update_expression] = STATE(59), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(60), + [sym__type_specifier] = STATE(62), + [aux_sym_sized_type_specifier_repeat1] = STATE(508), + [sym_union_specifier] = STATE(62), + [sym_conditional_expression] = STATE(59), + [sym_assignment_expression] = STATE(59), + [sym_cast_expression] = STATE(59), + [sym_type_descriptor] = STATE(898), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(59), + [sym_char_literal] = STATE(59), + [aux_sym_type_definition_repeat1] = STATE(60), + [sym_sized_type_specifier] = STATE(62), + [sym_enum_specifier] = STATE(62), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(59), + [sym_sizeof_expression] = STATE(59), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(59), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(62), + [sym_struct_specifier] = STATE(62), + [anon_sym_union] = ACTIONS(37), + [sym_true] = ACTIONS(175), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(175), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_const] = ACTIONS(7), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(179), + [sym_identifier] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(183), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(175), + [anon_sym_long] = ACTIONS(177), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1155] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(3125), - [sym_preproc_arg] = ACTIONS(3127), + [sym_char_literal] = STATE(899), + [sym__expression] = STATE(899), + [sym_binary_expression] = STATE(899), + [sym_update_expression] = STATE(899), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(899), + [sym_sizeof_expression] = STATE(899), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(899), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(899), + [sym_assignment_expression] = STATE(899), + [sym_cast_expression] = STATE(899), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(899), + [sym_true] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1156] = { - [anon_sym_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(171), + [sym_identifier] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), }, [1157] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(3131), - [sym_preproc_arg] = ACTIONS(3133), + [sym_preproc_arg] = ACTIONS(3105), + [sym_comment] = ACTIONS(147), }, [1158] = { - [anon_sym_LF] = ACTIONS(3135), - [sym_comment] = ACTIONS(171), + [sym_array_type_declarator] = STATE(907), + [sym_parenthesized_type_declarator] = STATE(907), + [sym_function_type_declarator] = STATE(907), + [sym__type_declarator] = STATE(907), + [sym_pointer_type_declarator] = STATE(907), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LPAREN2] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), + [sym_comment] = ACTIONS(3), }, [1159] = { - [sym_preproc_params] = STATE(1161), - [sym_preproc_arg] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(555), - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(3139), + [sym_char_literal] = STATE(1161), + [sym__expression] = STATE(1161), + [sym_binary_expression] = STATE(1161), + [sym_update_expression] = STATE(1161), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1161), + [sym_sizeof_expression] = STATE(1161), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1161), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1161), + [sym_assignment_expression] = STATE(1161), + [sym_cast_expression] = STATE(1161), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1161), + [sym_true] = ACTIONS(3107), + [sym_null] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1160] = { - [anon_sym_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(171), + [sym_char_literal] = STATE(1163), + [sym__expression] = STATE(1163), + [sym_binary_expression] = STATE(1163), + [sym_update_expression] = STATE(1163), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1163), + [sym_sizeof_expression] = STATE(1163), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1163), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1163), + [sym_assignment_expression] = STATE(1163), + [sym_cast_expression] = STATE(1163), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1163), + [sym_true] = ACTIONS(3113), + [sym_null] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1161] = { - [sym_comment] = ACTIONS(171), - [anon_sym_LF] = ACTIONS(3143), - [sym_preproc_arg] = ACTIONS(3145), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1162] = { - [anon_sym_LF] = ACTIONS(3147), - [sym_comment] = ACTIONS(171), + [sym_char_literal] = STATE(1164), + [sym__expression] = STATE(1164), + [sym_binary_expression] = STATE(1164), + [sym_update_expression] = STATE(1164), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1164), + [sym_sizeof_expression] = STATE(1164), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1164), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1164), + [sym_assignment_expression] = STATE(1164), + [sym_cast_expression] = STATE(1164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1164), + [sym_true] = ACTIONS(3121), + [sym_null] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1163] = { - [sym_identifier] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1164] = { - [sym_preproc_arg] = ACTIONS(3151), - [sym_comment] = ACTIONS(171), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1165] = { - [sym__expression] = STATE(63), - [sym_comma_expression] = STATE(65), - [sym_binary_expression] = STATE(63), - [sym_update_expression] = STATE(63), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(64), - [sym__type_specifier] = STATE(66), - [aux_sym_sized_type_specifier_repeat1] = STATE(516), - [sym_union_specifier] = STATE(66), - [sym_conditional_expression] = STATE(63), - [sym_assignment_expression] = STATE(63), - [sym_cast_expression] = STATE(63), - [sym_type_descriptor] = STATE(888), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(63), - [sym_char_literal] = STATE(63), - [aux_sym_type_definition_repeat1] = STATE(64), - [sym_sized_type_specifier] = STATE(66), - [sym_enum_specifier] = STATE(66), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(63), - [sym_sizeof_expression] = STATE(63), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(63), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(66), - [sym_struct_specifier] = STATE(66), - [anon_sym_union] = ACTIONS(7), - [sym_false] = ACTIONS(199), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(201), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(205), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(207), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [sym_true] = ACTIONS(199), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(199), - [anon_sym_signed] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_identifier] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), }, [1166] = { - [sym_identifier] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), + [sym_preproc_arg] = ACTIONS(3133), + [sym_comment] = ACTIONS(147), }, [1167] = { - [sym_string_literal] = STATE(893), - [anon_sym_union] = ACTIONS(233), - [anon_sym_unsigned] = ACTIONS(233), - [anon_sym_restrict] = ACTIONS(233), - [anon_sym_short] = ACTIONS(233), - [anon_sym_static] = ACTIONS(233), - [anon_sym_volatile] = ACTIONS(233), - [anon_sym_register] = ACTIONS(233), - [anon_sym_extern] = ACTIONS(233), - [sym_identifier] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_signed] = ACTIONS(233), - [anon_sym_enum] = ACTIONS(233), - [anon_sym_long] = ACTIONS(233), - [anon_sym_const] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym__Atomic] = ACTIONS(233), - [sym_primitive_type] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(233), - [anon_sym_L] = ACTIONS(237), - [anon_sym_inline] = ACTIONS(233), - [anon_sym___attribute__] = ACTIONS(233), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), }, [1168] = { - [sym_parenthesized_expression] = STATE(895), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(243), + [sym_string_literal] = STATE(962), + [anon_sym_union] = ACTIONS(229), + [anon_sym_unsigned] = ACTIONS(229), + [anon_sym_restrict] = ACTIONS(229), + [anon_sym_short] = ACTIONS(229), + [anon_sym_static] = ACTIONS(229), + [anon_sym_volatile] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_signed] = ACTIONS(229), + [anon_sym_enum] = ACTIONS(229), + [anon_sym_long] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(229), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(229), + [sym_primitive_type] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [sym_identifier] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym___attribute__] = ACTIONS(229), }, [1169] = { - [sym_identifier] = ACTIONS(3155), + [sym_parenthesized_expression] = STATE(963), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(237), }, [1170] = { - [sym_pointer_declarator] = STATE(900), - [sym_array_declarator] = STATE(900), - [sym__declarator] = STATE(900), - [sym_parenthesized_declarator] = STATE(900), - [sym_function_declarator] = STATE(900), - [sym_init_declarator] = STATE(901), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_LPAREN2] = ACTIONS(338), + [sym_identifier] = ACTIONS(3137), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(3157), }, [1171] = { - [anon_sym_while] = ACTIONS(3159), + [sym_pointer_declarator] = STATE(966), + [sym_array_declarator] = STATE(966), + [sym__declarator] = STATE(966), + [sym_parenthesized_declarator] = STATE(966), + [sym_function_declarator] = STATE(966), + [sym_init_declarator] = STATE(967), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(328), + [sym_identifier] = ACTIONS(3139), [sym_comment] = ACTIONS(3), }, [1172] = { - [sym_array_type_declarator] = STATE(906), - [sym_parenthesized_type_declarator] = STATE(906), - [sym_function_type_declarator] = STATE(906), - [sym__type_declarator] = STATE(906), - [sym_pointer_type_declarator] = STATE(906), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), + [anon_sym_while] = ACTIONS(3141), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(475), }, [1173] = { - [anon_sym_DQUOTE] = ACTIONS(269), + [sym_array_type_declarator] = STATE(972), + [sym_parenthesized_type_declarator] = STATE(972), + [sym_function_type_declarator] = STATE(972), + [sym__type_declarator] = STATE(972), + [sym_pointer_type_declarator] = STATE(972), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LPAREN2] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), [sym_comment] = ACTIONS(3), }, [1174] = { - [sym_char_literal] = STATE(974), - [sym__expression] = STATE(974), - [sym_comma_expression] = STATE(975), - [sym_binary_expression] = STATE(974), - [sym_update_expression] = STATE(974), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(974), - [sym_sizeof_expression] = STATE(974), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(974), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(974), - [sym_assignment_expression] = STATE(974), - [sym_cast_expression] = STATE(974), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(974), - [sym_false] = ACTIONS(3161), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3161), - [sym_null] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(1037), + [sym__expression] = STATE(1037), + [sym_comma_expression] = STATE(1038), + [sym_binary_expression] = STATE(1037), + [sym_update_expression] = STATE(1037), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1037), + [sym_sizeof_expression] = STATE(1037), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1037), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1037), + [sym_assignment_expression] = STATE(1037), + [sym_cast_expression] = STATE(1037), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1037), + [sym_true] = ACTIONS(3143), + [sym_null] = ACTIONS(3143), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1175] = { - [sym__expression] = STATE(63), - [sym_comma_expression] = STATE(65), - [sym_binary_expression] = STATE(63), - [sym_update_expression] = STATE(63), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(64), - [sym__type_specifier] = STATE(66), - [aux_sym_sized_type_specifier_repeat1] = STATE(516), - [sym_union_specifier] = STATE(66), - [sym_conditional_expression] = STATE(63), - [sym_assignment_expression] = STATE(63), - [sym_cast_expression] = STATE(63), - [sym_type_descriptor] = STATE(914), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(63), - [sym_char_literal] = STATE(63), - [aux_sym_type_definition_repeat1] = STATE(64), - [sym_sized_type_specifier] = STATE(66), - [sym_enum_specifier] = STATE(66), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(63), - [sym_sizeof_expression] = STATE(63), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(63), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(66), - [sym_struct_specifier] = STATE(66), - [anon_sym_union] = ACTIONS(7), - [sym_false] = ACTIONS(199), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(201), - [anon_sym_unsigned] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(205), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(207), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [sym_true] = ACTIONS(199), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(199), - [anon_sym_signed] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_identifier] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), }, [1176] = { - [sym_char_literal] = STATE(915), - [sym__expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_update_expression] = STATE(915), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(915), - [sym_sizeof_expression] = STATE(915), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(915), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_cast_expression] = STATE(915), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(915), - [sym_false] = ACTIONS(3165), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3165), - [sym_null] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_preproc_arg] = ACTIONS(3149), + [sym_comment] = ACTIONS(147), }, [1177] = { - [sym_identifier] = ACTIONS(3169), + [sym_array_type_declarator] = STATE(986), + [sym_parenthesized_type_declarator] = STATE(986), + [sym_function_type_declarator] = STATE(986), + [sym__type_declarator] = STATE(986), + [sym_pointer_type_declarator] = STATE(986), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LPAREN2] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), [sym_comment] = ACTIONS(3), }, [1178] = { - [sym_preproc_arg] = ACTIONS(3171), - [sym_comment] = ACTIONS(171), + [sym_char_literal] = STATE(1180), + [sym__expression] = STATE(1180), + [sym_binary_expression] = STATE(1180), + [sym_update_expression] = STATE(1180), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1180), + [sym_sizeof_expression] = STATE(1180), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1180), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1180), + [sym_assignment_expression] = STATE(1180), + [sym_cast_expression] = STATE(1180), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1180), + [sym_true] = ACTIONS(3151), + [sym_null] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1179] = { - [sym_array_type_declarator] = STATE(923), - [sym_parenthesized_type_declarator] = STATE(923), - [sym_function_type_declarator] = STATE(923), - [sym__type_declarator] = STATE(923), - [sym_pointer_type_declarator] = STATE(923), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(475), - }, - [1180] = { [sym_char_literal] = STATE(1182), [sym__expression] = STATE(1182), [sym_binary_expression] = STATE(1182), [sym_update_expression] = STATE(1182), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(1182), [sym_sizeof_expression] = STATE(1182), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(1182), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(1182), [sym_assignment_expression] = STATE(1182), [sym_cast_expression] = STATE(1182), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(1182), - [sym_false] = ACTIONS(3173), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3173), - [sym_null] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), + }, + [1180] = { + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1181] = { - [sym_char_literal] = STATE(1184), - [sym__expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_update_expression] = STATE(1184), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1184), - [sym_sizeof_expression] = STATE(1184), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1184), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1184), - [sym_assignment_expression] = STATE(1184), - [sym_cast_expression] = STATE(1184), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1184), - [sym_false] = ACTIONS(3179), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3181), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3179), - [sym_null] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(1183), + [sym__expression] = STATE(1183), + [sym_binary_expression] = STATE(1183), + [sym_update_expression] = STATE(1183), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1183), + [sym_sizeof_expression] = STATE(1183), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1183), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1183), + [sym_assignment_expression] = STATE(1183), + [sym_cast_expression] = STATE(1183), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1183), + [sym_true] = ACTIONS(3165), + [sym_null] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1182] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1183] = { - [sym_char_literal] = STATE(1185), - [sym__expression] = STATE(1185), - [sym_binary_expression] = STATE(1185), - [sym_update_expression] = STATE(1185), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1185), - [sym_sizeof_expression] = STATE(1185), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1185), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1185), - [sym_assignment_expression] = STATE(1185), - [sym_cast_expression] = STATE(1185), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1185), - [sym_false] = ACTIONS(3187), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3187), - [sym_null] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1184] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_identifier] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), }, [1185] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_preproc_arg] = ACTIONS(3177), + [sym_comment] = ACTIONS(147), }, [1186] = { - [sym_identifier] = ACTIONS(3197), + [sym_identifier] = ACTIONS(3179), [sym_comment] = ACTIONS(3), }, [1187] = { - [sym_preproc_arg] = ACTIONS(3199), - [sym_comment] = ACTIONS(171), + [sym_string_literal] = STATE(1041), + [anon_sym_union] = ACTIONS(229), + [anon_sym_unsigned] = ACTIONS(229), + [anon_sym_restrict] = ACTIONS(229), + [anon_sym_short] = ACTIONS(229), + [anon_sym_static] = ACTIONS(229), + [anon_sym_volatile] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_signed] = ACTIONS(229), + [anon_sym_enum] = ACTIONS(229), + [anon_sym_long] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(229), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym__Atomic] = ACTIONS(229), + [sym_primitive_type] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [sym_identifier] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym___attribute__] = ACTIONS(229), }, [1188] = { - [sym_identifier] = ACTIONS(3201), + [sym_parenthesized_expression] = STATE(1042), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(237), }, [1189] = { - [sym_string_literal] = STATE(978), - [anon_sym_union] = ACTIONS(233), - [anon_sym_unsigned] = ACTIONS(233), - [anon_sym_restrict] = ACTIONS(233), - [anon_sym_short] = ACTIONS(233), - [anon_sym_static] = ACTIONS(233), - [anon_sym_volatile] = ACTIONS(233), - [anon_sym_register] = ACTIONS(233), - [anon_sym_extern] = ACTIONS(233), - [sym_identifier] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_signed] = ACTIONS(233), - [anon_sym_enum] = ACTIONS(233), - [anon_sym_long] = ACTIONS(233), - [anon_sym_const] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym__Atomic] = ACTIONS(233), - [sym_primitive_type] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(233), - [anon_sym_L] = ACTIONS(237), - [anon_sym_inline] = ACTIONS(233), - [anon_sym___attribute__] = ACTIONS(233), + [sym_identifier] = ACTIONS(3181), [sym_comment] = ACTIONS(3), }, [1190] = { - [sym_parenthesized_expression] = STATE(979), + [sym_pointer_declarator] = STATE(1045), + [sym_array_declarator] = STATE(1045), + [sym__declarator] = STATE(1045), + [sym_parenthesized_declarator] = STATE(1045), + [sym_function_declarator] = STATE(1045), + [sym_init_declarator] = STATE(1046), + [anon_sym_STAR] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(328), + [sym_identifier] = ACTIONS(3183), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(243), }, [1191] = { - [sym_identifier] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3185), [sym_comment] = ACTIONS(3), }, [1192] = { - [sym_pointer_declarator] = STATE(983), - [sym_array_declarator] = STATE(983), - [sym__declarator] = STATE(983), - [sym_parenthesized_declarator] = STATE(983), - [sym_function_declarator] = STATE(983), - [sym_init_declarator] = STATE(984), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_LPAREN2] = ACTIONS(338), + [sym_array_type_declarator] = STATE(1050), + [sym_parenthesized_type_declarator] = STATE(1050), + [sym_function_type_declarator] = STATE(1050), + [sym__type_declarator] = STATE(1050), + [sym_pointer_type_declarator] = STATE(1050), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LPAREN2] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(3205), }, [1193] = { - [anon_sym_while] = ACTIONS(3207), + [sym_char_literal] = STATE(1098), + [sym__expression] = STATE(1098), + [sym_comma_expression] = STATE(1099), + [sym_binary_expression] = STATE(1098), + [sym_update_expression] = STATE(1098), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1098), + [sym_sizeof_expression] = STATE(1098), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1098), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1098), + [sym_assignment_expression] = STATE(1098), + [sym_cast_expression] = STATE(1098), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1098), + [sym_true] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1194] = { - [sym_array_type_declarator] = STATE(989), - [sym_parenthesized_type_declarator] = STATE(989), - [sym_function_type_declarator] = STATE(989), - [sym__type_declarator] = STATE(989), - [sym_pointer_type_declarator] = STATE(989), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), + [sym_array_type_declarator] = STATE(1060), + [sym_parenthesized_type_declarator] = STATE(1060), + [sym_function_type_declarator] = STATE(1060), + [sym__type_declarator] = STATE(1060), + [sym_pointer_type_declarator] = STATE(1060), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_LPAREN2] = ACTIONS(455), + [sym_identifier] = ACTIONS(457), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(475), }, [1195] = { - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(1197), + [sym__expression] = STATE(1197), + [sym_binary_expression] = STATE(1197), + [sym_update_expression] = STATE(1197), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1197), + [sym_sizeof_expression] = STATE(1197), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1197), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1197), + [sym_assignment_expression] = STATE(1197), + [sym_cast_expression] = STATE(1197), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1197), + [sym_true] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1196] = { - [sym_char_literal] = STATE(1054), - [sym__expression] = STATE(1054), - [sym_comma_expression] = STATE(1055), - [sym_binary_expression] = STATE(1054), - [sym_update_expression] = STATE(1054), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1054), - [sym_sizeof_expression] = STATE(1054), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1054), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1054), - [sym_assignment_expression] = STATE(1054), - [sym_cast_expression] = STATE(1054), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1054), - [sym_false] = ACTIONS(3211), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3211), - [sym_null] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(1199), + [sym__expression] = STATE(1199), + [sym_binary_expression] = STATE(1199), + [sym_update_expression] = STATE(1199), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1199), + [sym_sizeof_expression] = STATE(1199), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1199), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1199), + [sym_assignment_expression] = STATE(1199), + [sym_cast_expression] = STATE(1199), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1199), + [sym_true] = ACTIONS(3197), + [sym_null] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3197), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1197] = { - [sym_identifier] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1198] = { - [sym_preproc_arg] = ACTIONS(3217), - [sym_comment] = ACTIONS(171), + [sym_char_literal] = STATE(1200), + [sym__expression] = STATE(1200), + [sym_binary_expression] = STATE(1200), + [sym_update_expression] = STATE(1200), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1200), + [sym_sizeof_expression] = STATE(1200), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1200), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1200), + [sym_assignment_expression] = STATE(1200), + [sym_cast_expression] = STATE(1200), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1200), + [sym_true] = ACTIONS(3205), + [sym_null] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1199] = { - [sym_array_type_declarator] = STATE(1004), - [sym_parenthesized_type_declarator] = STATE(1004), - [sym_function_type_declarator] = STATE(1004), - [sym__type_declarator] = STATE(1004), - [sym_pointer_type_declarator] = STATE(1004), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(475), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, - [1200] = { - [sym_char_literal] = STATE(1202), - [sym__expression] = STATE(1202), - [sym_binary_expression] = STATE(1202), - [sym_update_expression] = STATE(1202), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1202), - [sym_sizeof_expression] = STATE(1202), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1202), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1202), - [sym_assignment_expression] = STATE(1202), - [sym_cast_expression] = STATE(1202), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1202), - [sym_false] = ACTIONS(3219), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [1201] = { - [sym_char_literal] = STATE(1204), - [sym__expression] = STATE(1204), - [sym_binary_expression] = STATE(1204), - [sym_update_expression] = STATE(1204), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1204), - [sym_sizeof_expression] = STATE(1204), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1204), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1204), - [sym_cast_expression] = STATE(1204), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1204), - [sym_false] = ACTIONS(3225), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [1200] = { + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), + }, + [1201] = { + [sym_identifier] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), }, [1202] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_parenthesized_expression] = STATE(1101), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(237), }, [1203] = { - [sym_char_literal] = STATE(1205), - [sym__expression] = STATE(1205), - [sym_binary_expression] = STATE(1205), - [sym_update_expression] = STATE(1205), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1205), - [sym_sizeof_expression] = STATE(1205), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1205), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1205), - [sym_assignment_expression] = STATE(1205), - [sym_cast_expression] = STATE(1205), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1205), - [sym_false] = ACTIONS(3233), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_identifier] = ACTIONS(3217), + [sym_comment] = ACTIONS(3), }, [1204] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_while] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), }, [1205] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_char_literal] = STATE(1130), + [sym__expression] = STATE(1130), + [sym_comma_expression] = STATE(1131), + [sym_binary_expression] = STATE(1130), + [sym_update_expression] = STATE(1130), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1130), + [sym_sizeof_expression] = STATE(1130), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1130), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1130), + [sym_assignment_expression] = STATE(1130), + [sym_cast_expression] = STATE(1130), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1130), + [sym_true] = ACTIONS(3221), + [sym_null] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1206] = { - [sym_identifier] = ACTIONS(3243), + [sym_char_literal] = STATE(1208), + [sym__expression] = STATE(1208), + [sym_binary_expression] = STATE(1208), + [sym_update_expression] = STATE(1208), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1208), + [sym_sizeof_expression] = STATE(1208), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1208), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1208), + [sym_cast_expression] = STATE(1208), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1208), + [sym_true] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1207] = { - [sym_preproc_arg] = ACTIONS(3245), - [sym_comment] = ACTIONS(171), + [sym_char_literal] = STATE(1210), + [sym__expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_update_expression] = STATE(1210), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1210), + [sym_sizeof_expression] = STATE(1210), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1210), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1210), + [sym_assignment_expression] = STATE(1210), + [sym_cast_expression] = STATE(1210), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1210), + [sym_true] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1208] = { - [sym_identifier] = ACTIONS(3247), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1209] = { - [sym_string_literal] = STATE(1058), - [anon_sym_union] = ACTIONS(233), - [anon_sym_unsigned] = ACTIONS(233), - [anon_sym_restrict] = ACTIONS(233), - [anon_sym_short] = ACTIONS(233), - [anon_sym_static] = ACTIONS(233), - [anon_sym_volatile] = ACTIONS(233), - [anon_sym_register] = ACTIONS(233), - [anon_sym_extern] = ACTIONS(233), - [sym_identifier] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_signed] = ACTIONS(233), - [anon_sym_enum] = ACTIONS(233), - [anon_sym_long] = ACTIONS(233), - [anon_sym_const] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym__Atomic] = ACTIONS(233), - [sym_primitive_type] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(233), - [anon_sym_L] = ACTIONS(237), - [anon_sym_inline] = ACTIONS(233), - [anon_sym___attribute__] = ACTIONS(233), - [sym_comment] = ACTIONS(3), + [sym_char_literal] = STATE(1211), + [sym__expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_update_expression] = STATE(1211), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1211), + [sym_sizeof_expression] = STATE(1211), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1211), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1211), + [sym_assignment_expression] = STATE(1211), + [sym_cast_expression] = STATE(1211), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1211), + [sym_true] = ACTIONS(3239), + [sym_null] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1210] = { - [sym_parenthesized_expression] = STATE(1059), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(243), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1211] = { - [sym_identifier] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1212] = { - [sym_pointer_declarator] = STATE(1063), - [sym_array_declarator] = STATE(1063), - [sym__declarator] = STATE(1063), - [sym_parenthesized_declarator] = STATE(1063), - [sym_function_declarator] = STATE(1063), - [sym_init_declarator] = STATE(1064), - [anon_sym_STAR] = ACTIONS(336), - [anon_sym_LPAREN2] = ACTIONS(338), + [sym_identifier] = ACTIONS(3249), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(3251), }, [1213] = { - [anon_sym_while] = ACTIONS(3253), + [anon_sym_while] = ACTIONS(3251), [sym_comment] = ACTIONS(3), }, [1214] = { - [sym_array_type_declarator] = STATE(1068), - [sym_parenthesized_type_declarator] = STATE(1068), - [sym_function_type_declarator] = STATE(1068), - [sym__type_declarator] = STATE(1068), - [sym_pointer_type_declarator] = STATE(1068), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), + [sym_identifier] = ACTIONS(3253), [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(475), }, [1215] = { - [anon_sym_DQUOTE] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(1151), + [sym_do_statement] = STATE(1151), + [sym_for_statement] = STATE(1151), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(1151), + [sym_return_statement] = STATE(1151), + [sym_break_statement] = STATE(1151), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(1151), + [sym_while_statement] = STATE(1151), + [sym_continue_statement] = STATE(1151), + [sym_goto_statement] = STATE(1151), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(1151), + [sym_expression_statement] = STATE(1151), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1216] = { - [sym_char_literal] = STATE(1116), - [sym__expression] = STATE(1116), - [sym_comma_expression] = STATE(1117), - [sym_binary_expression] = STATE(1116), - [sym_update_expression] = STATE(1116), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1116), - [sym_sizeof_expression] = STATE(1116), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1116), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1116), - [sym_assignment_expression] = STATE(1116), - [sym_cast_expression] = STATE(1116), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1116), - [sym_false] = ACTIONS(3257), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(1152), + [sym__type_specifier] = STATE(1152), + [aux_sym_type_definition_repeat1] = STATE(1217), + [sym_sized_type_specifier] = STATE(1152), + [sym_enum_specifier] = STATE(1152), + [sym_macro_type_specifier] = STATE(1152), + [sym_struct_specifier] = STATE(1152), + [sym_type_qualifier] = STATE(1217), + [anon_sym_long] = ACTIONS(27), + [anon_sym_union] = ACTIONS(37), + [anon_sym_const] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(3255), + [sym_identifier] = ACTIONS(187), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), }, [1217] = { - [sym_array_type_declarator] = STATE(1079), - [sym_parenthesized_type_declarator] = STATE(1079), - [sym_function_type_declarator] = STATE(1079), - [sym__type_declarator] = STATE(1079), - [sym_pointer_type_declarator] = STATE(1079), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(475), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(1158), + [sym__type_specifier] = STATE(1158), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_sized_type_specifier] = STATE(1158), + [sym_enum_specifier] = STATE(1158), + [sym_macro_type_specifier] = STATE(1158), + [sym_struct_specifier] = STATE(1158), + [sym_type_qualifier] = STATE(144), + [anon_sym_long] = ACTIONS(27), + [anon_sym_union] = ACTIONS(37), + [anon_sym_const] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(3257), + [sym_identifier] = ACTIONS(187), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), }, [1218] = { - [sym_char_literal] = STATE(1220), - [sym__expression] = STATE(1220), - [sym_binary_expression] = STATE(1220), - [sym_update_expression] = STATE(1220), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1220), - [sym_sizeof_expression] = STATE(1220), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1220), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1220), - [sym_assignment_expression] = STATE(1220), - [sym_cast_expression] = STATE(1220), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1220), - [sym_false] = ACTIONS(3261), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3263), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3261), - [sym_null] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3265), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(160), + [sym_do_statement] = STATE(160), + [sym_for_statement] = STATE(160), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(160), + [sym_return_statement] = STATE(160), + [sym_break_statement] = STATE(160), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(160), + [sym_while_statement] = STATE(160), + [sym_continue_statement] = STATE(160), + [sym_goto_statement] = STATE(160), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(160), + [sym_expression_statement] = STATE(160), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1219] = { - [sym_char_literal] = STATE(1222), [sym__expression] = STATE(1222), [sym_binary_expression] = STATE(1222), + [sym_declaration] = STATE(1160), [sym_update_expression] = STATE(1222), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1222), - [sym_sizeof_expression] = STATE(1222), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1222), - [sym_string_literal] = STATE(42), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_conditional_expression] = STATE(1222), [sym_assignment_expression] = STATE(1222), [sym_cast_expression] = STATE(1222), - [sym_field_expression] = STATE(37), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(1222), - [sym_false] = ACTIONS(3267), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3267), - [sym_null] = ACTIONS(3267), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(1222), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1222), + [sym_sizeof_expression] = STATE(1222), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1222), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), + [sym_storage_class_specifier] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym_true] = ACTIONS(3259), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(7), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(481), + [sym_number_literal] = ACTIONS(3261), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1220] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(1254), + [sym_do_statement] = STATE(1254), + [sym_for_statement] = STATE(1254), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(1254), + [sym_return_statement] = STATE(1254), + [sym_break_statement] = STATE(1254), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(1254), + [sym_while_statement] = STATE(1254), + [sym_continue_statement] = STATE(1254), + [sym_goto_statement] = STATE(1254), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(1254), + [sym_expression_statement] = STATE(1254), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1221] = { - [sym_char_literal] = STATE(1223), - [sym__expression] = STATE(1223), - [sym_binary_expression] = STATE(1223), - [sym_update_expression] = STATE(1223), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1223), - [sym_sizeof_expression] = STATE(1223), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1223), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1223), - [sym_assignment_expression] = STATE(1223), - [sym_cast_expression] = STATE(1223), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1223), - [sym_false] = ACTIONS(3275), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(181), + [sym_do_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(181), + [sym_return_statement] = STATE(181), + [sym_break_statement] = STATE(181), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(181), + [sym_while_statement] = STATE(181), + [sym_continue_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1222] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1223] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(378), + [sym_do_statement] = STATE(378), + [sym_for_statement] = STATE(378), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(378), + [sym_return_statement] = STATE(378), + [sym_break_statement] = STATE(378), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(378), + [sym_while_statement] = STATE(378), + [sym_continue_statement] = STATE(378), + [sym_goto_statement] = STATE(378), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(378), + [sym_expression_statement] = STATE(378), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1224] = { - [sym_identifier] = ACTIONS(3285), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(442), + [sym_do_statement] = STATE(442), + [sym_for_statement] = STATE(442), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(442), + [sym_return_statement] = STATE(442), + [sym_break_statement] = STATE(442), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(442), + [sym_while_statement] = STATE(442), + [sym_continue_statement] = STATE(442), + [sym_goto_statement] = STATE(442), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(442), + [sym_expression_statement] = STATE(442), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1225] = { - [sym_parenthesized_expression] = STATE(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(243), + [sym_if_statement] = STATE(451), + [sym_do_statement] = STATE(451), + [sym_for_statement] = STATE(451), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(451), + [sym_return_statement] = STATE(451), + [sym_break_statement] = STATE(451), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(451), + [sym_while_statement] = STATE(451), + [sym_continue_statement] = STATE(451), + [sym_goto_statement] = STATE(451), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(451), + [sym_expression_statement] = STATE(451), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1226] = { - [sym_identifier] = ACTIONS(3287), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(483), + [sym_do_statement] = STATE(483), + [sym_for_statement] = STATE(483), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(483), + [sym_return_statement] = STATE(483), + [sym_break_statement] = STATE(483), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(483), + [sym_while_statement] = STATE(483), + [sym_continue_statement] = STATE(483), + [sym_goto_statement] = STATE(483), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(483), + [sym_expression_statement] = STATE(483), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1227] = { - [anon_sym_while] = ACTIONS(3289), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(484), + [sym_do_statement] = STATE(484), + [sym_for_statement] = STATE(484), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(484), + [sym_return_statement] = STATE(484), + [sym_break_statement] = STATE(484), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(484), + [sym_while_statement] = STATE(484), + [sym_continue_statement] = STATE(484), + [sym_goto_statement] = STATE(484), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(484), + [sym_expression_statement] = STATE(484), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1228] = { - [anon_sym_DQUOTE] = ACTIONS(3291), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(486), + [sym_do_statement] = STATE(486), + [sym_for_statement] = STATE(486), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(486), + [sym_return_statement] = STATE(486), + [sym_break_statement] = STATE(486), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(486), + [sym_while_statement] = STATE(486), + [sym_continue_statement] = STATE(486), + [sym_goto_statement] = STATE(486), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(486), + [sym_expression_statement] = STATE(486), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1229] = { - [sym_char_literal] = STATE(1150), - [sym__expression] = STATE(1150), - [sym_comma_expression] = STATE(1151), - [sym_binary_expression] = STATE(1150), - [sym_update_expression] = STATE(1150), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1150), - [sym_sizeof_expression] = STATE(1150), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1150), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1150), - [sym_assignment_expression] = STATE(1150), - [sym_cast_expression] = STATE(1150), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1150), - [sym_false] = ACTIONS(3293), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_break_statement] = STATE(491), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_continue_statement] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1230] = { - [sym_char_literal] = STATE(1232), - [sym__expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_update_expression] = STATE(1232), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1232), - [sym_sizeof_expression] = STATE(1232), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1232), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1232), - [sym_assignment_expression] = STATE(1232), - [sym_cast_expression] = STATE(1232), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1232), - [sym_false] = ACTIONS(3297), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3299), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3297), - [sym_null] = ACTIONS(3297), - [anon_sym_SEMI] = ACTIONS(3301), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(492), + [sym_do_statement] = STATE(492), + [sym_for_statement] = STATE(492), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(492), + [sym_return_statement] = STATE(492), + [sym_break_statement] = STATE(492), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(492), + [sym_while_statement] = STATE(492), + [sym_continue_statement] = STATE(492), + [sym_goto_statement] = STATE(492), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(492), + [sym_expression_statement] = STATE(492), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1231] = { - [sym_char_literal] = STATE(1234), - [sym__expression] = STATE(1234), - [sym_binary_expression] = STATE(1234), - [sym_update_expression] = STATE(1234), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1234), - [sym_sizeof_expression] = STATE(1234), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1234), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1234), - [sym_assignment_expression] = STATE(1234), - [sym_cast_expression] = STATE(1234), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1234), - [sym_false] = ACTIONS(3303), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3303), - [sym_null] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(500), + [sym_do_statement] = STATE(500), + [sym_for_statement] = STATE(500), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(500), + [sym_return_statement] = STATE(500), + [sym_break_statement] = STATE(500), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(500), + [sym_while_statement] = STATE(500), + [sym_continue_statement] = STATE(500), + [sym_goto_statement] = STATE(500), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(500), + [sym_expression_statement] = STATE(500), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1232] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(501), + [sym_do_statement] = STATE(501), + [sym_for_statement] = STATE(501), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(501), + [sym_return_statement] = STATE(501), + [sym_break_statement] = STATE(501), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(501), + [sym_while_statement] = STATE(501), + [sym_continue_statement] = STATE(501), + [sym_goto_statement] = STATE(501), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(501), + [sym_expression_statement] = STATE(501), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1233] = { - [sym_char_literal] = STATE(1235), - [sym__expression] = STATE(1235), - [sym_binary_expression] = STATE(1235), - [sym_update_expression] = STATE(1235), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1235), - [sym_sizeof_expression] = STATE(1235), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1235), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1235), - [sym_assignment_expression] = STATE(1235), - [sym_cast_expression] = STATE(1235), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1235), - [sym_false] = ACTIONS(3311), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3313), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(502), + [sym_do_statement] = STATE(502), + [sym_for_statement] = STATE(502), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(502), + [sym_return_statement] = STATE(502), + [sym_break_statement] = STATE(502), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(502), + [sym_while_statement] = STATE(502), + [sym_continue_statement] = STATE(502), + [sym_goto_statement] = STATE(502), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(502), + [sym_expression_statement] = STATE(502), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1234] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(504), + [sym_do_statement] = STATE(504), + [sym_for_statement] = STATE(504), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(504), + [sym_return_statement] = STATE(504), + [sym_break_statement] = STATE(504), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(504), + [sym_while_statement] = STATE(504), + [sym_continue_statement] = STATE(504), + [sym_goto_statement] = STATE(504), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(504), + [sym_expression_statement] = STATE(504), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1235] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_if_statement] = STATE(505), + [sym_do_statement] = STATE(505), + [sym_for_statement] = STATE(505), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(505), + [sym_return_statement] = STATE(505), + [sym_break_statement] = STATE(505), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(505), + [sym_while_statement] = STATE(505), + [sym_continue_statement] = STATE(505), + [sym_goto_statement] = STATE(505), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(505), + [sym_expression_statement] = STATE(505), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1236] = { - [sym_identifier] = ACTIONS(3321), - [sym_comment] = ACTIONS(3), + [sym_if_statement] = STATE(1172), + [sym_do_statement] = STATE(1172), + [sym_for_statement] = STATE(1172), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(1172), + [sym_return_statement] = STATE(1172), + [sym_break_statement] = STATE(1172), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(1172), + [sym_while_statement] = STATE(1172), + [sym_continue_statement] = STATE(1172), + [sym_goto_statement] = STATE(1172), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(1172), + [sym_expression_statement] = STATE(1172), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1237] = { - [anon_sym_while] = ACTIONS(3323), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(1173), + [sym__type_specifier] = STATE(1173), + [aux_sym_type_definition_repeat1] = STATE(1238), + [sym_sized_type_specifier] = STATE(1173), + [sym_enum_specifier] = STATE(1173), + [sym_macro_type_specifier] = STATE(1173), + [sym_struct_specifier] = STATE(1173), + [sym_type_qualifier] = STATE(1238), + [anon_sym_long] = ACTIONS(27), + [anon_sym_union] = ACTIONS(37), + [anon_sym_const] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(3267), + [sym_identifier] = ACTIONS(187), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), }, [1238] = { - [sym_identifier] = ACTIONS(3325), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(1177), + [sym__type_specifier] = STATE(1177), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_sized_type_specifier] = STATE(1177), + [sym_enum_specifier] = STATE(1177), + [sym_macro_type_specifier] = STATE(1177), + [sym_struct_specifier] = STATE(1177), + [sym_type_qualifier] = STATE(144), + [anon_sym_long] = ACTIONS(27), + [anon_sym_union] = ACTIONS(37), + [anon_sym_const] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(3269), + [sym_identifier] = ACTIONS(187), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), }, [1239] = { - [sym_if_statement] = STATE(1171), - [sym_do_statement] = STATE(1171), - [sym_for_statement] = STATE(1171), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(1171), - [sym_return_statement] = STATE(1171), - [sym_break_statement] = STATE(1171), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(1171), - [sym_while_statement] = STATE(1171), - [sym_continue_statement] = STATE(1171), - [sym_goto_statement] = STATE(1171), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(1171), - [sym_expression_statement] = STATE(1171), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym__expression] = STATE(1240), + [sym_binary_expression] = STATE(1240), + [sym_declaration] = STATE(1179), + [sym_update_expression] = STATE(1240), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_conditional_expression] = STATE(1240), + [sym_assignment_expression] = STATE(1240), + [sym_cast_expression] = STATE(1240), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1240), + [sym_char_literal] = STATE(1240), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1240), + [sym_sizeof_expression] = STATE(1240), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1240), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), + [sym_storage_class_specifier] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym_true] = ACTIONS(3271), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(7), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(481), + [sym_number_literal] = ACTIONS(3273), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1240] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(1172), - [sym__type_specifier] = STATE(1172), - [aux_sym_type_definition_repeat1] = STATE(1243), - [sym_sized_type_specifier] = STATE(1172), - [sym_enum_specifier] = STATE(1172), - [sym_macro_type_specifier] = STATE(1172), - [sym_struct_specifier] = STATE(1172), - [sym_type_qualifier] = STATE(1243), - [anon_sym_long] = ACTIONS(17), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(3327), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1241] = { - [sym_if_statement] = STATE(139), - [sym_do_statement] = STATE(139), - [sym_for_statement] = STATE(139), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(139), - [sym_return_statement] = STATE(139), - [sym_break_statement] = STATE(139), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(139), - [sym_while_statement] = STATE(139), - [sym_continue_statement] = STATE(139), - [sym_goto_statement] = STATE(139), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(139), - [sym_expression_statement] = STATE(139), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(1191), + [sym_do_statement] = STATE(1191), + [sym_for_statement] = STATE(1191), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(1191), + [sym_return_statement] = STATE(1191), + [sym_break_statement] = STATE(1191), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(1191), + [sym_while_statement] = STATE(1191), + [sym_continue_statement] = STATE(1191), + [sym_goto_statement] = STATE(1191), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(1191), + [sym_expression_statement] = STATE(1191), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1242] = { - [anon_sym_GT_GT] = ACTIONS(137), - [anon_sym_PERCENT_EQ] = ACTIONS(139), - [anon_sym_DASH_EQ] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_EQ_EQ] = ACTIONS(143), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_DASH_GT] = ACTIONS(143), - [anon_sym_LT_LT] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS_EQ] = ACTIONS(139), - [anon_sym_LT_LT_EQ] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(143), - [anon_sym_BANG_EQ] = ACTIONS(143), - [anon_sym_CARET_EQ] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(143), - [anon_sym_PLUS_PLUS] = ACTIONS(143), - [anon_sym_GT_GT_EQ] = ACTIONS(139), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_PIPE_EQ] = ACTIONS(139), - [anon_sym_AMP_EQ] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(143), - [anon_sym_COLON] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(143), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT_EQ] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH_EQ] = ACTIONS(139), - [anon_sym_AMP_AMP] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DOT] = ACTIONS(143), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(143), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(1192), + [sym__type_specifier] = STATE(1192), + [aux_sym_type_definition_repeat1] = STATE(1243), + [sym_sized_type_specifier] = STATE(1192), + [sym_enum_specifier] = STATE(1192), + [sym_macro_type_specifier] = STATE(1192), + [sym_struct_specifier] = STATE(1192), + [sym_type_qualifier] = STATE(1243), + [anon_sym_long] = ACTIONS(27), + [anon_sym_union] = ACTIONS(37), + [anon_sym_const] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(3279), + [sym_identifier] = ACTIONS(187), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), }, [1243] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(1179), - [sym__type_specifier] = STATE(1179), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_sized_type_specifier] = STATE(1179), - [sym_enum_specifier] = STATE(1179), - [sym_macro_type_specifier] = STATE(1179), - [sym_struct_specifier] = STATE(1179), - [sym_type_qualifier] = STATE(151), - [anon_sym_long] = ACTIONS(17), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(3329), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_union_specifier] = STATE(1194), + [sym__type_specifier] = STATE(1194), + [aux_sym_type_definition_repeat1] = STATE(144), + [sym_sized_type_specifier] = STATE(1194), + [sym_enum_specifier] = STATE(1194), + [sym_macro_type_specifier] = STATE(1194), + [sym_struct_specifier] = STATE(1194), + [sym_type_qualifier] = STATE(144), + [anon_sym_long] = ACTIONS(27), + [anon_sym_union] = ACTIONS(37), + [anon_sym_const] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_restrict] = ACTIONS(7), + [anon_sym_short] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym__Atomic] = ACTIONS(7), + [sym_primitive_type] = ACTIONS(3281), + [sym_identifier] = ACTIONS(187), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(69), }, [1244] = { - [sym__expression] = STATE(1247), - [sym_binary_expression] = STATE(1247), - [sym_declaration] = STATE(1181), - [sym_update_expression] = STATE(1247), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_conditional_expression] = STATE(1247), - [sym_assignment_expression] = STATE(1247), - [sym_cast_expression] = STATE(1247), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1247), - [sym_char_literal] = STATE(1247), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1247), - [sym_sizeof_expression] = STATE(1247), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1247), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_storage_class_specifier] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_false] = ACTIONS(3331), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(493), - [anon_sym_const] = ACTIONS(13), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_number_literal] = ACTIONS(3333), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [sym_true] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym__expression] = STATE(1245), + [sym_binary_expression] = STATE(1245), + [sym_declaration] = STATE(1196), + [sym_update_expression] = STATE(1245), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_conditional_expression] = STATE(1245), + [sym_assignment_expression] = STATE(1245), + [sym_cast_expression] = STATE(1245), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1245), + [sym_char_literal] = STATE(1245), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1245), + [sym_sizeof_expression] = STATE(1245), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1245), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), + [sym_storage_class_specifier] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym_true] = ACTIONS(3283), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(7), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(481), + [sym_number_literal] = ACTIONS(3285), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1245] = { - [sym_if_statement] = STATE(1278), - [sym_do_statement] = STATE(1278), - [sym_for_statement] = STATE(1278), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(1278), - [sym_return_statement] = STATE(1278), - [sym_break_statement] = STATE(1278), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(1278), - [sym_while_statement] = STATE(1278), - [sym_continue_statement] = STATE(1278), - [sym_goto_statement] = STATE(1278), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(1278), - [sym_expression_statement] = STATE(1278), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1246] = { - [sym_if_statement] = STATE(184), - [sym_do_statement] = STATE(184), - [sym_for_statement] = STATE(184), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(184), - [sym_return_statement] = STATE(184), - [sym_break_statement] = STATE(184), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(184), - [sym_while_statement] = STATE(184), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(184), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(184), - [sym_expression_statement] = STATE(184), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(1204), + [sym_do_statement] = STATE(1204), + [sym_for_statement] = STATE(1204), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(1204), + [sym_return_statement] = STATE(1204), + [sym_break_statement] = STATE(1204), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(1204), + [sym_while_statement] = STATE(1204), + [sym_continue_statement] = STATE(1204), + [sym_goto_statement] = STATE(1204), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(1204), + [sym_expression_statement] = STATE(1204), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1247] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym__expression] = STATE(1248), + [sym_binary_expression] = STATE(1248), + [sym_declaration] = STATE(1207), + [sym_update_expression] = STATE(1248), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_conditional_expression] = STATE(1248), + [sym_assignment_expression] = STATE(1248), + [sym_cast_expression] = STATE(1248), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1248), + [sym_char_literal] = STATE(1248), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1248), + [sym_sizeof_expression] = STATE(1248), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1248), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), + [sym_storage_class_specifier] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym_true] = ACTIONS(3291), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(7), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(481), + [sym_number_literal] = ACTIONS(3293), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1248] = { - [sym_if_statement] = STATE(386), - [sym_do_statement] = STATE(386), - [sym_for_statement] = STATE(386), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(386), - [sym_return_statement] = STATE(386), - [sym_break_statement] = STATE(386), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(386), - [sym_while_statement] = STATE(386), - [sym_continue_statement] = STATE(386), - [sym_goto_statement] = STATE(386), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(386), - [sym_expression_statement] = STATE(386), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1249] = { - [sym_if_statement] = STATE(450), - [sym_do_statement] = STATE(450), - [sym_for_statement] = STATE(450), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(450), - [sym_return_statement] = STATE(450), - [sym_break_statement] = STATE(450), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(450), - [sym_while_statement] = STATE(450), - [sym_continue_statement] = STATE(450), - [sym_goto_statement] = STATE(450), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(450), - [sym_expression_statement] = STATE(450), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_if_statement] = STATE(1213), + [sym_do_statement] = STATE(1213), + [sym_for_statement] = STATE(1213), + [sym__expression] = STATE(34), + [sym_comma_expression] = STATE(35), + [sym_binary_expression] = STATE(34), + [sym_update_expression] = STATE(34), + [sym_call_expression] = STATE(36), + [sym_switch_statement] = STATE(1213), + [sym_return_statement] = STATE(1213), + [sym_break_statement] = STATE(1213), + [sym_conditional_expression] = STATE(34), + [sym_assignment_expression] = STATE(34), + [sym_cast_expression] = STATE(34), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(34), + [sym_char_literal] = STATE(34), + [sym_labeled_statement] = STATE(1213), + [sym_while_statement] = STATE(1213), + [sym_continue_statement] = STATE(1213), + [sym_goto_statement] = STATE(1213), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(34), + [sym_sizeof_expression] = STATE(34), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(34), + [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(1213), + [sym_expression_statement] = STATE(1213), + [anon_sym_LBRACE] = ACTIONS(35), + [sym_true] = ACTIONS(5), + [sym_null] = ACTIONS(5), + [anon_sym_do] = ACTIONS(135), + [anon_sym_goto] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(137), + [anon_sym_for] = ACTIONS(139), + [anon_sym_break] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_if] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_switch] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(5), + [anon_sym_return] = ACTIONS(73), + [anon_sym_while] = ACTIONS(143), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1250] = { - [sym_if_statement] = STATE(459), - [sym_do_statement] = STATE(459), - [sym_for_statement] = STATE(459), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(459), - [sym_return_statement] = STATE(459), - [sym_break_statement] = STATE(459), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(459), - [sym_while_statement] = STATE(459), - [sym_continue_statement] = STATE(459), - [sym_goto_statement] = STATE(459), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(459), - [sym_expression_statement] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3299), }, [1251] = { - [sym_if_statement] = STATE(491), - [sym_do_statement] = STATE(491), - [sym_for_statement] = STATE(491), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(491), - [sym_return_statement] = STATE(491), - [sym_break_statement] = STATE(491), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(491), - [sym_while_statement] = STATE(491), - [sym_continue_statement] = STATE(491), - [sym_goto_statement] = STATE(491), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(491), - [sym_expression_statement] = STATE(491), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_parenthesized_expression] = STATE(1220), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(233), }, [1252] = { - [sym_if_statement] = STATE(492), - [sym_do_statement] = STATE(492), - [sym_for_statement] = STATE(492), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(492), - [sym_return_statement] = STATE(492), - [sym_break_statement] = STATE(492), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(492), - [sym_while_statement] = STATE(492), - [sym_continue_statement] = STATE(492), - [sym_goto_statement] = STATE(492), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(492), - [sym_expression_statement] = STATE(492), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_parenthesized_expression] = STATE(1221), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(233), }, [1253] = { - [sym_if_statement] = STATE(494), - [sym_do_statement] = STATE(494), - [sym_for_statement] = STATE(494), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(494), - [sym_return_statement] = STATE(494), - [sym_break_statement] = STATE(494), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(494), - [sym_while_statement] = STATE(494), - [sym_continue_statement] = STATE(494), - [sym_goto_statement] = STATE(494), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(494), - [sym_expression_statement] = STATE(494), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_PERCENT_EQ] = ACTIONS(199), + [anon_sym_DASH_EQ] = ACTIONS(199), + [anon_sym_PIPE] = ACTIONS(197), + [anon_sym_EQ_EQ] = ACTIONS(203), + [anon_sym_SLASH] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(203), + [anon_sym_LT_LT] = ACTIONS(197), + [anon_sym_DASH_DASH] = ACTIONS(203), + [anon_sym_PLUS_EQ] = ACTIONS(199), + [anon_sym_LT_LT_EQ] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_CARET_EQ] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(203), + [sym_comment] = ACTIONS(3), + [anon_sym_GT_GT_EQ] = ACTIONS(199), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_PIPE_EQ] = ACTIONS(199), + [anon_sym_AMP_EQ] = ACTIONS(199), + [anon_sym_PERCENT] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_LPAREN2] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_STAR_EQ] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(203), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(197), + [anon_sym_SLASH_EQ] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(203), + [anon_sym_SEMI] = ACTIONS(203), + [anon_sym_CARET] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_LBRACK] = ACTIONS(203), }, [1254] = { - [sym_if_statement] = STATE(499), - [sym_do_statement] = STATE(499), - [sym_for_statement] = STATE(499), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(499), - [sym_return_statement] = STATE(499), - [sym_break_statement] = STATE(499), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(499), - [sym_while_statement] = STATE(499), - [sym_continue_statement] = STATE(499), - [sym_goto_statement] = STATE(499), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(499), - [sym_expression_statement] = STATE(499), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_else] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(986), + [sym_comment] = ACTIONS(3), }, [1255] = { - [sym_if_statement] = STATE(500), - [sym_do_statement] = STATE(500), - [sym_for_statement] = STATE(500), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(500), - [sym_return_statement] = STATE(500), - [sym_break_statement] = STATE(500), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(500), - [sym_while_statement] = STATE(500), - [sym_continue_statement] = STATE(500), - [sym_goto_statement] = STATE(500), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(500), - [sym_expression_statement] = STATE(500), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(1257), + [sym__expression] = STATE(1257), + [sym_comma_expression] = STATE(1258), + [sym_binary_expression] = STATE(1257), + [sym_update_expression] = STATE(1257), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1257), + [sym_sizeof_expression] = STATE(1257), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1257), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1257), + [sym_assignment_expression] = STATE(1257), + [sym_cast_expression] = STATE(1257), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1257), + [sym_true] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3307), + [anon_sym_sizeof] = ACTIONS(33), }, [1256] = { - [sym_if_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(1261), + [sym__expression] = STATE(1261), + [sym_comma_expression] = STATE(1262), + [sym_binary_expression] = STATE(1261), + [sym_update_expression] = STATE(1261), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1261), + [sym_sizeof_expression] = STATE(1261), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1261), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1261), + [sym_assignment_expression] = STATE(1261), + [sym_cast_expression] = STATE(1261), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1261), + [sym_true] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3313), + [anon_sym_sizeof] = ACTIONS(33), }, [1257] = { - [sym_if_statement] = STATE(509), - [sym_do_statement] = STATE(509), - [sym_for_statement] = STATE(509), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(509), - [sym_return_statement] = STATE(509), - [sym_break_statement] = STATE(509), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(509), - [sym_while_statement] = STATE(509), - [sym_continue_statement] = STATE(509), - [sym_goto_statement] = STATE(509), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(509), - [sym_expression_statement] = STATE(509), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3315), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1258] = { - [sym_if_statement] = STATE(510), - [sym_do_statement] = STATE(510), - [sym_for_statement] = STATE(510), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(510), - [sym_return_statement] = STATE(510), - [sym_break_statement] = STATE(510), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(510), - [sym_while_statement] = STATE(510), - [sym_continue_statement] = STATE(510), - [sym_goto_statement] = STATE(510), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(510), - [sym_expression_statement] = STATE(510), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(3315), + [sym_comment] = ACTIONS(3), }, [1259] = { - [sym_if_statement] = STATE(512), - [sym_do_statement] = STATE(512), - [sym_for_statement] = STATE(512), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(512), - [sym_return_statement] = STATE(512), - [sym_break_statement] = STATE(512), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(512), - [sym_while_statement] = STATE(512), - [sym_continue_statement] = STATE(512), - [sym_goto_statement] = STATE(512), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(512), - [sym_expression_statement] = STATE(512), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(1264), + [sym__expression] = STATE(1264), + [sym_comma_expression] = STATE(1265), + [sym_binary_expression] = STATE(1264), + [sym_update_expression] = STATE(1264), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1264), + [sym_sizeof_expression] = STATE(1264), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1264), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1264), + [sym_assignment_expression] = STATE(1264), + [sym_cast_expression] = STATE(1264), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1264), + [sym_true] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3321), + [anon_sym_sizeof] = ACTIONS(33), }, [1260] = { - [sym_if_statement] = STATE(513), - [sym_do_statement] = STATE(513), - [sym_for_statement] = STATE(513), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(513), - [sym_return_statement] = STATE(513), - [sym_break_statement] = STATE(513), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(513), - [sym_while_statement] = STATE(513), - [sym_continue_statement] = STATE(513), - [sym_goto_statement] = STATE(513), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(513), - [sym_expression_statement] = STATE(513), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_char_literal] = STATE(1266), + [sym__expression] = STATE(1266), + [sym_comma_expression] = STATE(1267), + [sym_binary_expression] = STATE(1266), + [sym_update_expression] = STATE(1266), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1266), + [sym_sizeof_expression] = STATE(1266), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1266), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1266), + [sym_assignment_expression] = STATE(1266), + [sym_cast_expression] = STATE(1266), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1266), + [sym_true] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3327), + [anon_sym_sizeof] = ACTIONS(33), }, [1261] = { - [sym_if_statement] = STATE(1193), - [sym_do_statement] = STATE(1193), - [sym_for_statement] = STATE(1193), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(1193), - [sym_return_statement] = STATE(1193), - [sym_break_statement] = STATE(1193), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(1193), - [sym_while_statement] = STATE(1193), - [sym_continue_statement] = STATE(1193), - [sym_goto_statement] = STATE(1193), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(1193), - [sym_expression_statement] = STATE(1193), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3329), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1262] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(1194), - [sym__type_specifier] = STATE(1194), - [aux_sym_type_definition_repeat1] = STATE(1263), - [sym_sized_type_specifier] = STATE(1194), - [sym_enum_specifier] = STATE(1194), - [sym_macro_type_specifier] = STATE(1194), - [sym_struct_specifier] = STATE(1194), - [sym_type_qualifier] = STATE(1263), - [anon_sym_long] = ACTIONS(17), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), }, [1263] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(1199), - [sym__type_specifier] = STATE(1199), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_sized_type_specifier] = STATE(1199), - [sym_enum_specifier] = STATE(1199), - [sym_macro_type_specifier] = STATE(1199), - [sym_struct_specifier] = STATE(1199), - [sym_type_qualifier] = STATE(151), - [anon_sym_long] = ACTIONS(17), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(3341), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), + [sym_char_literal] = STATE(1269), + [sym__expression] = STATE(1269), + [sym_comma_expression] = STATE(1270), + [sym_binary_expression] = STATE(1269), + [sym_update_expression] = STATE(1269), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1269), + [sym_sizeof_expression] = STATE(1269), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1269), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1269), + [sym_cast_expression] = STATE(1269), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1269), + [sym_true] = ACTIONS(3331), + [sym_null] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3335), + [anon_sym_sizeof] = ACTIONS(33), }, [1264] = { - [sym__expression] = STATE(1265), - [sym_binary_expression] = STATE(1265), - [sym_declaration] = STATE(1201), - [sym_update_expression] = STATE(1265), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_conditional_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1265), - [sym_char_literal] = STATE(1265), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1265), - [sym_sizeof_expression] = STATE(1265), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1265), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_storage_class_specifier] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_false] = ACTIONS(3343), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(493), - [anon_sym_const] = ACTIONS(13), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_number_literal] = ACTIONS(3345), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [sym_true] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3337), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1265] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(3337), + [sym_comment] = ACTIONS(3), }, [1266] = { - [sym_if_statement] = STATE(1213), - [sym_do_statement] = STATE(1213), - [sym_for_statement] = STATE(1213), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(1213), - [sym_return_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(1213), - [sym_while_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_goto_statement] = STATE(1213), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3339), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1267] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(1214), - [sym__type_specifier] = STATE(1214), - [aux_sym_type_definition_repeat1] = STATE(1268), - [sym_sized_type_specifier] = STATE(1214), - [sym_enum_specifier] = STATE(1214), - [sym_macro_type_specifier] = STATE(1214), - [sym_struct_specifier] = STATE(1214), - [sym_type_qualifier] = STATE(1268), - [anon_sym_long] = ACTIONS(17), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(3351), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(3339), + [sym_comment] = ACTIONS(3), }, [1268] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_union_specifier] = STATE(1217), - [sym__type_specifier] = STATE(1217), - [aux_sym_type_definition_repeat1] = STATE(151), - [sym_sized_type_specifier] = STATE(1217), - [sym_enum_specifier] = STATE(1217), - [sym_macro_type_specifier] = STATE(1217), - [sym_struct_specifier] = STATE(1217), - [sym_type_qualifier] = STATE(151), - [anon_sym_long] = ACTIONS(17), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(209), - [anon_sym_short] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(3353), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_enum] = ACTIONS(65), + [sym_char_literal] = STATE(1271), + [sym__expression] = STATE(1271), + [sym_comma_expression] = STATE(1272), + [sym_binary_expression] = STATE(1271), + [sym_update_expression] = STATE(1271), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1271), + [sym_sizeof_expression] = STATE(1271), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1271), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1271), + [sym_assignment_expression] = STATE(1271), + [sym_cast_expression] = STATE(1271), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1271), + [sym_true] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_RPAREN] = ACTIONS(3345), + [anon_sym_sizeof] = ACTIONS(33), }, [1269] = { - [sym__expression] = STATE(1270), - [sym_binary_expression] = STATE(1270), - [sym_declaration] = STATE(1219), - [sym_update_expression] = STATE(1270), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_conditional_expression] = STATE(1270), - [sym_assignment_expression] = STATE(1270), - [sym_cast_expression] = STATE(1270), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1270), - [sym_char_literal] = STATE(1270), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1270), - [sym_sizeof_expression] = STATE(1270), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1270), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_storage_class_specifier] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_false] = ACTIONS(3355), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(493), - [anon_sym_const] = ACTIONS(13), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_number_literal] = ACTIONS(3357), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [sym_true] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1270] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(3347), + [sym_comment] = ACTIONS(3), }, [1271] = { - [sym_if_statement] = STATE(1227), - [sym_do_statement] = STATE(1227), - [sym_for_statement] = STATE(1227), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(1227), - [sym_return_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(1227), - [sym_while_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_goto_statement] = STATE(1227), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1272] = { - [sym__expression] = STATE(1273), - [sym_binary_expression] = STATE(1273), - [sym_declaration] = STATE(1231), - [sym_update_expression] = STATE(1273), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_conditional_expression] = STATE(1273), - [sym_assignment_expression] = STATE(1273), - [sym_cast_expression] = STATE(1273), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1273), - [sym_char_literal] = STATE(1273), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1273), - [sym_sizeof_expression] = STATE(1273), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1273), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_storage_class_specifier] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_false] = ACTIONS(3363), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(493), - [anon_sym_const] = ACTIONS(13), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(3349), [sym_comment] = ACTIONS(3), - [sym_number_literal] = ACTIONS(3365), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [sym_true] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), }, [1273] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3351), }, [1274] = { - [sym_if_statement] = STATE(1237), - [sym_do_statement] = STATE(1237), - [sym_for_statement] = STATE(1237), - [sym__expression] = STATE(35), - [sym_comma_expression] = STATE(36), - [sym_binary_expression] = STATE(35), - [sym_update_expression] = STATE(35), - [sym_call_expression] = STATE(37), - [sym_switch_statement] = STATE(1237), - [sym_return_statement] = STATE(1237), - [sym_break_statement] = STATE(1237), - [sym_conditional_expression] = STATE(35), - [sym_assignment_expression] = STATE(35), - [sym_cast_expression] = STATE(35), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(35), - [sym_char_literal] = STATE(35), - [sym_labeled_statement] = STATE(1237), - [sym_while_statement] = STATE(1237), - [sym_continue_statement] = STATE(1237), - [sym_goto_statement] = STATE(1237), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(35), - [sym_sizeof_expression] = STATE(35), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(35), - [sym_string_literal] = STATE(42), - [sym_compound_statement] = STATE(1237), - [sym_expression_statement] = STATE(1237), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(159), - [anon_sym_do] = ACTIONS(161), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_for] = ACTIONS(163), - [anon_sym_break] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(57), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_if] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(63), - [sym_true] = ACTIONS(11), - [sym_null] = ACTIONS(11), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3353), }, [1275] = { [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3371), + [anon_sym_LPAREN2] = ACTIONS(3355), }, [1276] = { - [sym_parenthesized_expression] = STATE(1245), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [sym_char_literal] = STATE(1278), + [sym__expression] = STATE(1278), + [sym_binary_expression] = STATE(1278), + [sym_update_expression] = STATE(1278), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1278), + [sym_sizeof_expression] = STATE(1278), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1278), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1278), + [sym_assignment_expression] = STATE(1278), + [sym_cast_expression] = STATE(1278), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1278), + [sym_true] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1277] = { - [sym_parenthesized_expression] = STATE(1246), + [sym_char_literal] = STATE(1280), + [sym__expression] = STATE(1280), + [sym_binary_expression] = STATE(1280), + [sym_update_expression] = STATE(1280), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1280), + [sym_sizeof_expression] = STATE(1280), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1280), + [sym_string_literal] = STATE(41), + [sym_conditional_expression] = STATE(1280), + [sym_assignment_expression] = STATE(1280), + [sym_cast_expression] = STATE(1280), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1280), + [sym_true] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(239), + [sym_false] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1278] = { - [anon_sym_else] = ACTIONS(3373), - [sym_comment] = ACTIONS(3), - [anon_sym_while] = ACTIONS(1009), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1279] = { [sym_char_literal] = STATE(1281), [sym__expression] = STATE(1281), - [sym_comma_expression] = STATE(1282), [sym_binary_expression] = STATE(1281), [sym_update_expression] = STATE(1281), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), + [sym_call_expression] = STATE(36), + [sym_pointer_expression] = STATE(36), [sym_unary_expression] = STATE(1281), [sym_sizeof_expression] = STATE(1281), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(1281), - [sym_string_literal] = STATE(42), + [sym_string_literal] = STATE(41), [sym_conditional_expression] = STATE(1281), [sym_assignment_expression] = STATE(1281), [sym_cast_expression] = STATE(1281), - [sym_field_expression] = STATE(37), + [sym_field_expression] = STATE(36), [sym_compound_literal_expression] = STATE(1281), - [sym_false] = ACTIONS(3375), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_sizeof] = ACTIONS(25), + [sym_true] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [anon_sym_DASH_DASH] = ACTIONS(13), + [sym_identifier] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [sym_number_literal] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym_sizeof] = ACTIONS(33), }, [1280] = { - [sym_char_literal] = STATE(1285), - [sym__expression] = STATE(1285), - [sym_comma_expression] = STATE(1286), - [sym_binary_expression] = STATE(1285), - [sym_update_expression] = STATE(1285), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1285), - [sym_sizeof_expression] = STATE(1285), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1285), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1285), - [sym_assignment_expression] = STATE(1285), - [sym_cast_expression] = STATE(1285), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1285), - [sym_false] = ACTIONS(3381), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3381), - [sym_null] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3385), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1281] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3387), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1282] = { - [anon_sym_RPAREN] = ACTIONS(3387), - [sym_comment] = ACTIONS(3), + [sym__expression] = STATE(1283), + [sym_binary_expression] = STATE(1283), + [sym_declaration] = STATE(1277), + [sym_update_expression] = STATE(1283), + [sym_call_expression] = STATE(36), + [sym_type_qualifier] = STATE(43), + [sym__type_specifier] = STATE(130), + [sym_union_specifier] = STATE(130), + [aux_sym_sized_type_specifier_repeat1] = STATE(38), + [sym_conditional_expression] = STATE(1283), + [sym_assignment_expression] = STATE(1283), + [sym_cast_expression] = STATE(1283), + [sym__declaration_specifiers] = STATE(164), + [sym_field_expression] = STATE(36), + [sym_compound_literal_expression] = STATE(1283), + [sym_char_literal] = STATE(1283), + [sym_sized_type_specifier] = STATE(130), + [sym_enum_specifier] = STATE(130), + [sym_pointer_expression] = STATE(36), + [sym_unary_expression] = STATE(1283), + [sym_sizeof_expression] = STATE(1283), + [sym_attribute_specifier] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1283), + [sym_string_literal] = STATE(41), + [sym_macro_type_specifier] = STATE(130), + [sym_storage_class_specifier] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(43), + [sym_struct_specifier] = STATE(130), + [sym_true] = ACTIONS(3381), + [anon_sym_restrict] = ACTIONS(7), + [sym_null] = ACTIONS(3381), + [anon_sym_const] = ACTIONS(7), + [anon_sym_DASH_DASH] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(7), + [sym_identifier] = ACTIONS(481), + [sym_number_literal] = ACTIONS(3383), + [anon_sym_volatile] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(21), + [anon_sym_extern] = ACTIONS(63), + [anon_sym_PLUS_PLUS] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(25), + [anon_sym_signed] = ACTIONS(27), + [sym_comment] = ACTIONS(3), + [anon_sym_long] = ACTIONS(27), + [anon_sym_L_SQUOTE] = ACTIONS(21), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_sizeof] = ACTIONS(33), + [anon_sym_union] = ACTIONS(37), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_L_DQUOTE] = ACTIONS(49), + [anon_sym_LPAREN2] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(348), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_register] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(69), + [sym_false] = ACTIONS(3381), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(61), + [anon_sym_auto] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), }, [1283] = { - [sym_char_literal] = STATE(1288), - [sym__expression] = STATE(1288), - [sym_comma_expression] = STATE(1289), - [sym_binary_expression] = STATE(1288), - [sym_update_expression] = STATE(1288), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1288), - [sym_sizeof_expression] = STATE(1288), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1288), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1288), - [sym_assignment_expression] = STATE(1288), - [sym_cast_expression] = STATE(1288), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1288), - [sym_false] = ACTIONS(3389), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3389), - [sym_null] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_sizeof] = ACTIONS(25), + [sym_argument_list] = STATE(111), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(273), + [anon_sym_EQ_EQ] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_DASH_GT] = ACTIONS(281), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_LT_LT] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(295), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_CARET] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(305), }, [1284] = { - [sym_char_literal] = STATE(1290), - [sym__expression] = STATE(1290), - [sym_comma_expression] = STATE(1291), - [sym_binary_expression] = STATE(1290), - [sym_update_expression] = STATE(1290), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1290), - [sym_sizeof_expression] = STATE(1290), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1290), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1290), - [sym_assignment_expression] = STATE(1290), - [sym_cast_expression] = STATE(1290), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1290), - [sym_false] = ACTIONS(3395), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3397), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3399), - [anon_sym_sizeof] = ACTIONS(25), - }, - [1285] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - }, - [1286] = { - [anon_sym_RPAREN] = ACTIONS(3401), - [sym_comment] = ACTIONS(3), - }, - [1287] = { - [sym_char_literal] = STATE(1293), - [sym__expression] = STATE(1293), - [sym_comma_expression] = STATE(1294), - [sym_binary_expression] = STATE(1293), - [sym_update_expression] = STATE(1293), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1293), - [sym_sizeof_expression] = STATE(1293), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1293), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1293), - [sym_assignment_expression] = STATE(1293), - [sym_cast_expression] = STATE(1293), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1293), - [sym_false] = ACTIONS(3403), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_sizeof] = ACTIONS(25), - }, - [1288] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - }, - [1289] = { - [anon_sym_RPAREN] = ACTIONS(3409), - [sym_comment] = ACTIONS(3), - }, - [1290] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - }, - [1291] = { - [anon_sym_RPAREN] = ACTIONS(3411), - [sym_comment] = ACTIONS(3), - }, - [1292] = { - [sym_char_literal] = STATE(1295), - [sym__expression] = STATE(1295), - [sym_comma_expression] = STATE(1296), - [sym_binary_expression] = STATE(1295), - [sym_update_expression] = STATE(1295), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1295), - [sym_sizeof_expression] = STATE(1295), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1295), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1295), - [sym_assignment_expression] = STATE(1295), - [sym_cast_expression] = STATE(1295), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1295), - [sym_false] = ACTIONS(3413), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_sizeof] = ACTIONS(25), - }, - [1293] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - }, - [1294] = { - [anon_sym_RPAREN] = ACTIONS(3419), - [sym_comment] = ACTIONS(3), - }, - [1295] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(3421), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - }, - [1296] = { - [anon_sym_RPAREN] = ACTIONS(3421), - [sym_comment] = ACTIONS(3), - }, - [1297] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3423), - }, - [1298] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3425), - }, - [1299] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3427), - }, - [1300] = { - [sym_char_literal] = STATE(1302), - [sym__expression] = STATE(1302), - [sym_binary_expression] = STATE(1302), - [sym_update_expression] = STATE(1302), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1302), - [sym_sizeof_expression] = STATE(1302), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1302), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1302), - [sym_assignment_expression] = STATE(1302), - [sym_cast_expression] = STATE(1302), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1302), - [sym_false] = ACTIONS(3429), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [1301] = { - [sym_char_literal] = STATE(1304), - [sym__expression] = STATE(1304), - [sym_binary_expression] = STATE(1304), - [sym_update_expression] = STATE(1304), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1304), - [sym_sizeof_expression] = STATE(1304), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1304), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1304), - [sym_assignment_expression] = STATE(1304), - [sym_cast_expression] = STATE(1304), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1304), - [sym_false] = ACTIONS(3435), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3435), - [sym_null] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [1302] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - }, - [1303] = { - [sym_char_literal] = STATE(1305), - [sym__expression] = STATE(1305), - [sym_binary_expression] = STATE(1305), - [sym_update_expression] = STATE(1305), - [sym_call_expression] = STATE(37), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1305), - [sym_sizeof_expression] = STATE(1305), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1305), - [sym_string_literal] = STATE(42), - [sym_conditional_expression] = STATE(1305), - [sym_assignment_expression] = STATE(1305), - [sym_cast_expression] = STATE(1305), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1305), - [sym_false] = ACTIONS(3443), - [sym_identifier] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_comment] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [sym_number_literal] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_true] = ACTIONS(3443), - [sym_null] = ACTIONS(3443), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_L] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(25), - }, - [1304] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - }, - [1305] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - }, - [1306] = { - [sym__expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_declaration] = STATE(1301), - [sym_update_expression] = STATE(1307), - [sym_call_expression] = STATE(37), - [sym_type_qualifier] = STATE(44), - [sym__type_specifier] = STATE(134), - [sym_union_specifier] = STATE(134), - [aux_sym_sized_type_specifier_repeat1] = STATE(39), - [sym_conditional_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_cast_expression] = STATE(1307), - [sym__declaration_specifiers] = STATE(168), - [sym_field_expression] = STATE(37), - [sym_compound_literal_expression] = STATE(1307), - [sym_char_literal] = STATE(1307), - [sym_sized_type_specifier] = STATE(134), - [sym_enum_specifier] = STATE(134), - [sym_pointer_expression] = STATE(37), - [sym_unary_expression] = STATE(1307), - [sym_sizeof_expression] = STATE(1307), - [sym_attribute_specifier] = STATE(44), - [sym_subscript_expression] = STATE(37), - [sym_parenthesized_expression] = STATE(37), - [sym_concatenated_string] = STATE(1307), - [sym_string_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(134), - [sym_storage_class_specifier] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(44), - [sym_struct_specifier] = STATE(134), - [sym_false] = ACTIONS(3453), - [anon_sym_restrict] = ACTIONS(13), - [sym_identifier] = ACTIONS(493), - [anon_sym_const] = ACTIONS(13), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [sym_number_literal] = ACTIONS(3455), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_extern] = ACTIONS(9), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(61), - [anon_sym_signed] = ACTIONS(17), - [anon_sym_long] = ACTIONS(17), - [anon_sym_L] = ACTIONS(81), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(25), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(17), - [anon_sym_short] = ACTIONS(17), - [anon_sym_AMP] = ACTIONS(29), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_primitive_type] = ACTIONS(360), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_static] = ACTIONS(9), - [anon_sym_register] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(29), - [sym_true] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(65), - [sym_null] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(53), - [anon_sym_auto] = ACTIONS(9), - [anon_sym_inline] = ACTIONS(9), - }, - [1307] = { - [sym_argument_list] = STATE(115), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(281), - [anon_sym_PERCENT] = ACTIONS(283), - [anon_sym_EQ_EQ] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(295), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_DASH_DASH] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_PIPE_PIPE] = ACTIONS(301), - [anon_sym_BANG_EQ] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(295), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(313), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - }, - [1308] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3461), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3389), }, }; @@ -52171,285 +52301,285 @@ static TSParseActionEntry ts_parse_actions[] = { [0] = {.count = 0, .reusable = false}, [1] = {.count = 1, .reusable = false}, RECOVER(), [3] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [5] = {.count = 1, .reusable = true}, SHIFT(2), - [7] = {.count = 1, .reusable = false}, SHIFT(3), - [9] = {.count = 1, .reusable = false}, SHIFT(20), - [11] = {.count = 1, .reusable = false}, SHIFT(35), - [13] = {.count = 1, .reusable = false}, SHIFT(4), - [15] = {.count = 1, .reusable = false}, SHIFT(5), - [17] = {.count = 1, .reusable = false}, SHIFT(39), - [19] = {.count = 1, .reusable = false}, SHIFT(33), - [21] = {.count = 1, .reusable = false}, SHIFT(6), - [23] = {.count = 1, .reusable = false}, SHIFT(7), - [25] = {.count = 1, .reusable = false}, SHIFT(34), - [27] = {.count = 1, .reusable = false}, SHIFT(8), - [29] = {.count = 1, .reusable = true}, SHIFT(9), - [31] = {.count = 1, .reusable = false}, SHIFT(10), - [33] = {.count = 1, .reusable = true}, SHIFT(11), - [35] = {.count = 1, .reusable = true}, SHIFT(12), - [37] = {.count = 1, .reusable = false}, SHIFT(13), - [39] = {.count = 1, .reusable = true}, SHIFT(14), - [41] = {.count = 1, .reusable = true}, SHIFT(15), - [43] = {.count = 1, .reusable = false}, SHIFT(38), - [45] = {.count = 1, .reusable = false}, SHIFT(16), - [47] = {.count = 1, .reusable = false}, SHIFT(17), - [49] = {.count = 1, .reusable = false}, SHIFT(18), - [51] = {.count = 1, .reusable = false}, SHIFT(19), - [53] = {.count = 1, .reusable = false}, SHIFT(11), - [55] = {.count = 1, .reusable = false}, SHIFT(21), - [57] = {.count = 1, .reusable = true}, SHIFT(35), - [59] = {.count = 1, .reusable = false}, SHIFT(22), - [61] = {.count = 1, .reusable = false}, SHIFT(23), - [63] = {.count = 1, .reusable = false}, SHIFT(24), - [65] = {.count = 1, .reusable = false}, SHIFT(25), - [67] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), - [69] = {.count = 1, .reusable = false}, SHIFT(26), - [71] = {.count = 1, .reusable = false}, SHIFT(27), - [73] = {.count = 1, .reusable = false}, SHIFT(28), - [75] = {.count = 1, .reusable = true}, SHIFT(29), + [5] = {.count = 1, .reusable = false}, SHIFT(34), + [7] = {.count = 1, .reusable = false}, SHIFT(4), + [9] = {.count = 1, .reusable = false}, SHIFT(6), + [11] = {.count = 1, .reusable = false}, SHIFT(12), + [13] = {.count = 1, .reusable = true}, SHIFT(13), + [15] = {.count = 1, .reusable = false}, SHIFT(15), + [17] = {.count = 1, .reusable = false}, SHIFT(18), + [19] = {.count = 1, .reusable = true}, SHIFT(34), + [21] = {.count = 1, .reusable = true}, SHIFT(26), + [23] = {.count = 1, .reusable = false}, SHIFT(21), + [25] = {.count = 1, .reusable = false}, SHIFT(23), + [27] = {.count = 1, .reusable = false}, SHIFT(38), + [29] = {.count = 1, .reusable = false}, SHIFT(28), + [31] = {.count = 1, .reusable = false}, SHIFT(32), + [33] = {.count = 1, .reusable = false}, SHIFT(33), + [35] = {.count = 1, .reusable = true}, SHIFT(2), + [37] = {.count = 1, .reusable = false}, SHIFT(3), + [39] = {.count = 1, .reusable = false}, SHIFT(5), + [41] = {.count = 1, .reusable = false}, SHIFT(7), + [43] = {.count = 1, .reusable = true}, SHIFT(8), + [45] = {.count = 1, .reusable = false}, SHIFT(9), + [47] = {.count = 1, .reusable = true}, SHIFT(10), + [49] = {.count = 1, .reusable = true}, SHIFT(14), + [51] = {.count = 1, .reusable = true}, SHIFT(11), + [53] = {.count = 1, .reusable = false}, SHIFT(37), + [55] = {.count = 1, .reusable = false}, SHIFT(16), + [57] = {.count = 1, .reusable = false}, SHIFT(17), + [59] = {.count = 1, .reusable = false}, SHIFT(19), + [61] = {.count = 1, .reusable = false}, SHIFT(10), + [63] = {.count = 1, .reusable = false}, SHIFT(20), + [65] = {.count = 1, .reusable = false}, SHIFT(22), + [67] = {.count = 1, .reusable = false}, SHIFT(24), + [69] = {.count = 1, .reusable = false}, SHIFT(25), + [71] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), + [73] = {.count = 1, .reusable = false}, SHIFT(27), + [75] = {.count = 1, .reusable = false}, SHIFT(29), [77] = {.count = 1, .reusable = true}, SHIFT(30), [79] = {.count = 1, .reusable = false}, SHIFT(31), - [81] = {.count = 1, .reusable = false}, SHIFT(32), - [83] = {.count = 1, .reusable = false}, SHIFT(881), - [85] = {.count = 1, .reusable = false}, SHIFT(869), - [87] = {.count = 1, .reusable = false}, SHIFT(1163), - [89] = {.count = 1, .reusable = false}, SHIFT(1240), - [91] = {.count = 1, .reusable = false}, SHIFT(1166), - [93] = {.count = 1, .reusable = true}, SHIFT(881), - [95] = {.count = 1, .reusable = false}, SHIFT(1167), - [97] = {.count = 1, .reusable = false}, SHIFT(878), - [99] = {.count = 1, .reusable = true}, SHIFT(868), - [101] = {.count = 1, .reusable = false}, SHIFT(1239), - [103] = {.count = 1, .reusable = false}, SHIFT(870), - [105] = {.count = 1, .reusable = false}, SHIFT(1164), - [107] = {.count = 1, .reusable = true}, SHIFT(45), - [109] = {.count = 1, .reusable = false}, SHIFT(883), - [111] = {.count = 1, .reusable = false}, SHIFT(1275), - [113] = {.count = 1, .reusable = false}, SHIFT(874), - [115] = {.count = 1, .reusable = false}, SHIFT(875), - [117] = {.count = 1, .reusable = false}, SHIFT(876), - [119] = {.count = 1, .reusable = false}, SHIFT(1168), - [121] = {.count = 1, .reusable = false}, SHIFT(877), - [123] = {.count = 1, .reusable = false}, SHIFT(879), - [125] = {.count = 1, .reusable = true}, SHIFT(515), - [127] = {.count = 1, .reusable = false}, SHIFT(1169), + [81] = {.count = 1, .reusable = false}, SHIFT(866), + [83] = {.count = 1, .reusable = false}, SHIFT(1143), + [85] = {.count = 1, .reusable = false}, SHIFT(1216), + [87] = {.count = 1, .reusable = false}, SHIFT(858), + [89] = {.count = 1, .reusable = false}, SHIFT(1146), + [91] = {.count = 1, .reusable = true}, SHIFT(866), + [93] = {.count = 1, .reusable = false}, SHIFT(1147), + [95] = {.count = 1, .reusable = false}, SHIFT(863), + [97] = {.count = 1, .reusable = true}, SHIFT(853), + [99] = {.count = 1, .reusable = false}, SHIFT(1215), + [101] = {.count = 1, .reusable = false}, SHIFT(854), + [103] = {.count = 1, .reusable = false}, SHIFT(1144), + [105] = {.count = 1, .reusable = true}, SHIFT(44), + [107] = {.count = 1, .reusable = false}, SHIFT(868), + [109] = {.count = 1, .reusable = false}, SHIFT(1250), + [111] = {.count = 1, .reusable = false}, SHIFT(859), + [113] = {.count = 1, .reusable = false}, SHIFT(860), + [115] = {.count = 1, .reusable = false}, SHIFT(861), + [117] = {.count = 1, .reusable = false}, SHIFT(1148), + [119] = {.count = 1, .reusable = false}, SHIFT(862), + [121] = {.count = 1, .reusable = false}, SHIFT(864), + [123] = {.count = 1, .reusable = true}, SHIFT(507), + [125] = {.count = 1, .reusable = false}, SHIFT(1149), + [127] = {.count = 1, .reusable = true}, SHIFT(46), [129] = {.count = 1, .reusable = true}, SHIFT(47), - [131] = {.count = 1, .reusable = true}, SHIFT(48), + [131] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), [133] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), - [135] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), - [137] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [139] = {.count = 1, .reusable = true}, SHIFT(50), - [141] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [143] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [145] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(51), - [149] = {.count = 1, .reusable = false}, SHIFT(50), - [151] = {.count = 1, .reusable = true}, SHIFT(52), - [153] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [156] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [159] = {.count = 1, .reusable = false}, SHIFT(53), - [161] = {.count = 1, .reusable = false}, SHIFT(1261), - [163] = {.count = 1, .reusable = false}, SHIFT(1308), - [165] = {.count = 1, .reusable = false}, SHIFT(1276), - [167] = {.count = 1, .reusable = false}, SHIFT(1277), - [169] = {.count = 1, .reusable = true}, SHIFT(55), - [171] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [173] = {.count = 1, .reusable = false}, SHIFT(56), - [175] = {.count = 1, .reusable = false}, SHIFT(57), - [177] = {.count = 1, .reusable = false}, SHIFT(58), - [179] = {.count = 1, .reusable = true}, SHIFT(871), - [181] = {.count = 1, .reusable = true}, SHIFT(1165), - [183] = {.count = 1, .reusable = true}, SHIFT(872), - [185] = {.count = 1, .reusable = false}, SHIFT(871), - [187] = {.count = 1, .reusable = true}, SHIFT(58), - [189] = {.count = 1, .reusable = false}, SHIFT(880), - [191] = {.count = 1, .reusable = false}, SHIFT(59), - [193] = {.count = 1, .reusable = false}, SHIFT(60), - [195] = {.count = 1, .reusable = false}, SHIFT(37), - [197] = {.count = 1, .reusable = true}, SHIFT(60), - [199] = {.count = 1, .reusable = false}, SHIFT(63), - [201] = {.count = 1, .reusable = false}, SHIFT(61), - [203] = {.count = 1, .reusable = false}, SHIFT(516), - [205] = {.count = 1, .reusable = false}, SHIFT(66), - [207] = {.count = 1, .reusable = true}, SHIFT(63), - [209] = {.count = 1, .reusable = false}, SHIFT(67), - [211] = {.count = 1, .reusable = false}, SHIFT(68), - [213] = {.count = 1, .reusable = false}, SHIFT(70), - [215] = {.count = 1, .reusable = true}, SHIFT(70), - [217] = {.count = 1, .reusable = false}, SHIFT(71), + [135] = {.count = 1, .reusable = false}, SHIFT(1236), + [137] = {.count = 1, .reusable = false}, SHIFT(49), + [139] = {.count = 1, .reusable = false}, SHIFT(1284), + [141] = {.count = 1, .reusable = false}, SHIFT(1251), + [143] = {.count = 1, .reusable = false}, SHIFT(1252), + [145] = {.count = 1, .reusable = true}, SHIFT(51), + [147] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [149] = {.count = 1, .reusable = false}, SHIFT(52), + [151] = {.count = 1, .reusable = false}, SHIFT(53), + [153] = {.count = 1, .reusable = false}, SHIFT(54), + [155] = {.count = 1, .reusable = true}, SHIFT(855), + [157] = {.count = 1, .reusable = true}, SHIFT(1145), + [159] = {.count = 1, .reusable = true}, SHIFT(856), + [161] = {.count = 1, .reusable = false}, SHIFT(855), + [163] = {.count = 1, .reusable = true}, SHIFT(54), + [165] = {.count = 1, .reusable = false}, SHIFT(865), + [167] = {.count = 1, .reusable = false}, SHIFT(55), + [169] = {.count = 1, .reusable = false}, SHIFT(56), + [171] = {.count = 1, .reusable = false}, SHIFT(36), + [173] = {.count = 1, .reusable = true}, SHIFT(56), + [175] = {.count = 1, .reusable = false}, SHIFT(59), + [177] = {.count = 1, .reusable = false}, SHIFT(508), + [179] = {.count = 1, .reusable = false}, SHIFT(62), + [181] = {.count = 1, .reusable = false}, SHIFT(57), + [183] = {.count = 1, .reusable = true}, SHIFT(59), + [185] = {.count = 1, .reusable = false}, SHIFT(64), + [187] = {.count = 1, .reusable = false}, SHIFT(63), + [189] = {.count = 1, .reusable = false}, SHIFT(66), + [191] = {.count = 1, .reusable = true}, SHIFT(66), + [193] = {.count = 1, .reusable = true}, SHIFT(68), + [195] = {.count = 1, .reusable = false}, SHIFT(67), + [197] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [199] = {.count = 1, .reusable = true}, SHIFT(69), + [201] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [203] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [205] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(70), + [209] = {.count = 1, .reusable = false}, SHIFT(69), + [211] = {.count = 1, .reusable = true}, SHIFT(71), + [213] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [216] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), [219] = {.count = 1, .reusable = true}, SHIFT(72), [221] = {.count = 1, .reusable = true}, SHIFT(73), [223] = {.count = 1, .reusable = true}, SHIFT(74), - [225] = {.count = 1, .reusable = true}, SHIFT(75), - [227] = {.count = 1, .reusable = true}, SHIFT(76), - [229] = {.count = 1, .reusable = true}, SHIFT(873), - [231] = {.count = 1, .reusable = true}, SHIFT(77), - [233] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), - [235] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), - [237] = {.count = 1, .reusable = false}, SHIFT(1173), - [239] = {.count = 1, .reusable = true}, SHIFT(79), - [241] = {.count = 1, .reusable = true}, SHIFT(81), - [243] = {.count = 1, .reusable = true}, SHIFT(894), - [245] = {.count = 1, .reusable = true}, SHIFT(84), - [247] = {.count = 1, .reusable = true}, SHIFT(85), - [249] = {.count = 1, .reusable = false}, SHIFT(88), - [251] = {.count = 1, .reusable = true}, SHIFT(88), - [253] = {.count = 1, .reusable = true}, SHIFT(87), - [255] = {.count = 1, .reusable = true}, SHIFT(90), - [257] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [259] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [225] = {.count = 1, .reusable = true}, SHIFT(857), + [227] = {.count = 1, .reusable = true}, SHIFT(75), + [229] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), + [231] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), + [233] = {.count = 1, .reusable = true}, SHIFT(77), + [235] = {.count = 1, .reusable = true}, SHIFT(79), + [237] = {.count = 1, .reusable = true}, SHIFT(880), + [239] = {.count = 1, .reusable = true}, SHIFT(82), + [241] = {.count = 1, .reusable = true}, SHIFT(83), + [243] = {.count = 1, .reusable = true}, SHIFT(85), + [245] = {.count = 1, .reusable = false}, SHIFT(85), + [247] = {.count = 1, .reusable = false}, SHIFT(87), + [249] = {.count = 1, .reusable = true}, SHIFT(87), + [251] = {.count = 1, .reusable = true}, SHIFT(86), + [253] = {.count = 1, .reusable = true}, SHIFT(89), + [255] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [257] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [259] = {.count = 1, .reusable = true}, SHIFT(90), [261] = {.count = 1, .reusable = true}, SHIFT(91), - [263] = {.count = 1, .reusable = false}, SHIFT(91), + [263] = {.count = 1, .reusable = false}, SHIFT(93), [265] = {.count = 1, .reusable = true}, SHIFT(92), [267] = {.count = 1, .reusable = true}, SHIFT(93), [269] = {.count = 1, .reusable = true}, SHIFT(94), - [271] = {.count = 1, .reusable = true}, SHIFT(95), - [273] = {.count = 1, .reusable = false}, SHIFT(97), + [271] = {.count = 1, .reusable = false}, SHIFT(102), + [273] = {.count = 1, .reusable = true}, SHIFT(101), [275] = {.count = 1, .reusable = true}, SHIFT(96), - [277] = {.count = 1, .reusable = true}, SHIFT(97), - [279] = {.count = 1, .reusable = true}, SHIFT(98), - [281] = {.count = 1, .reusable = false}, SHIFT(106), - [283] = {.count = 1, .reusable = true}, SHIFT(105), + [277] = {.count = 1, .reusable = false}, SHIFT(103), + [279] = {.count = 1, .reusable = false}, SHIFT(101), + [281] = {.count = 1, .reusable = true}, SHIFT(105), + [283] = {.count = 1, .reusable = true}, SHIFT(106), [285] = {.count = 1, .reusable = true}, SHIFT(100), - [287] = {.count = 1, .reusable = false}, SHIFT(107), - [289] = {.count = 1, .reusable = false}, SHIFT(105), - [291] = {.count = 1, .reusable = true}, SHIFT(109), - [293] = {.count = 1, .reusable = true}, SHIFT(110), - [295] = {.count = 1, .reusable = true}, SHIFT(104), - [297] = {.count = 1, .reusable = true}, SHIFT(108), - [299] = {.count = 1, .reusable = true}, SHIFT(114), - [301] = {.count = 1, .reusable = true}, SHIFT(99), - [303] = {.count = 1, .reusable = true}, SHIFT(102), - [305] = {.count = 1, .reusable = false}, SHIFT(103), - [307] = {.count = 1, .reusable = true}, SHIFT(111), + [287] = {.count = 1, .reusable = true}, SHIFT(104), + [289] = {.count = 1, .reusable = true}, SHIFT(110), + [291] = {.count = 1, .reusable = true}, SHIFT(95), + [293] = {.count = 1, .reusable = true}, SHIFT(98), + [295] = {.count = 1, .reusable = false}, SHIFT(99), + [297] = {.count = 1, .reusable = true}, SHIFT(107), + [299] = {.count = 1, .reusable = true}, SHIFT(108), + [301] = {.count = 1, .reusable = true}, SHIFT(109), + [303] = {.count = 1, .reusable = false}, SHIFT(100), + [305] = {.count = 1, .reusable = true}, SHIFT(97), + [307] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), [309] = {.count = 1, .reusable = true}, SHIFT(112), - [311] = {.count = 1, .reusable = true}, SHIFT(113), - [313] = {.count = 1, .reusable = false}, SHIFT(104), - [315] = {.count = 1, .reusable = true}, SHIFT(101), - [317] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [319] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [321] = {.count = 1, .reusable = true}, SHIFT(116), - [323] = {.count = 1, .reusable = false}, SHIFT(120), - [325] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), - [327] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(119), - [330] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), - [332] = {.count = 1, .reusable = false}, SHIFT(118), - [334] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [336] = {.count = 1, .reusable = true}, SHIFT(121), - [338] = {.count = 1, .reusable = true}, SHIFT(122), - [340] = {.count = 1, .reusable = true}, SHIFT(123), - [342] = {.count = 1, .reusable = true}, SHIFT(1173), - [344] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), - [346] = {.count = 1, .reusable = false}, SHIFT(127), - [348] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [350] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [352] = {.count = 1, .reusable = true}, SHIFT(129), - [354] = {.count = 1, .reusable = false}, SHIFT(959), - [356] = {.count = 1, .reusable = false}, SHIFT(131), - [358] = {.count = 1, .reusable = true}, SHIFT(132), - [360] = {.count = 1, .reusable = false}, SHIFT(134), - [362] = {.count = 1, .reusable = false}, SHIFT(130), - [364] = {.count = 1, .reusable = false}, SHIFT(1191), - [366] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 3), - [368] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 3), - [370] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 4), - [372] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 4), - [374] = {.count = 1, .reusable = false}, SHIFT(137), - [376] = {.count = 1, .reusable = true}, SHIFT(137), - [378] = {.count = 1, .reusable = false}, SHIFT(1242), - [380] = {.count = 1, .reusable = true}, SHIFT(1241), - [382] = {.count = 1, .reusable = true}, SHIFT(140), - [384] = {.count = 1, .reusable = true}, SHIFT(141), - [386] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2, .production_id = 5), - [388] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2, .production_id = 5), - [390] = {.count = 1, .reusable = true}, SHIFT(142), - [392] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2, .production_id = 6), - [394] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2, .production_id = 6), - [396] = {.count = 1, .reusable = false}, SHIFT(967), - [398] = {.count = 1, .reusable = false}, SHIFT(958), - [400] = {.count = 1, .reusable = false}, SHIFT(1186), - [402] = {.count = 1, .reusable = false}, SHIFT(143), - [404] = {.count = 1, .reusable = false}, SHIFT(1262), - [406] = {.count = 1, .reusable = false}, SHIFT(1188), - [408] = {.count = 1, .reusable = true}, SHIFT(967), - [410] = {.count = 1, .reusable = false}, SHIFT(1189), - [412] = {.count = 1, .reusable = false}, SHIFT(965), - [414] = {.count = 1, .reusable = false}, SHIFT(144), - [416] = {.count = 1, .reusable = true}, SHIFT(957), - [418] = {.count = 1, .reusable = false}, SHIFT(1266), - [420] = {.count = 1, .reusable = false}, SHIFT(145), - [422] = {.count = 1, .reusable = false}, SHIFT(1039), - [424] = {.count = 1, .reusable = false}, SHIFT(1187), - [426] = {.count = 1, .reusable = false}, SHIFT(969), - [428] = {.count = 1, .reusable = false}, SHIFT(1297), - [430] = {.count = 1, .reusable = false}, SHIFT(961), - [432] = {.count = 1, .reusable = false}, SHIFT(962), - [434] = {.count = 1, .reusable = false}, SHIFT(963), - [436] = {.count = 1, .reusable = false}, SHIFT(1190), - [438] = {.count = 1, .reusable = false}, SHIFT(964), - [440] = {.count = 1, .reusable = false}, SHIFT(966), - [442] = {.count = 1, .reusable = true}, SHIFT(632), - [444] = {.count = 1, .reusable = false}, SHIFT(1211), - [446] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2, .production_id = 6), - [448] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2, .production_id = 6), - [450] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [452] = {.count = 1, .reusable = true}, SHIFT(148), - [454] = {.count = 1, .reusable = true}, SHIFT(149), - [456] = {.count = 1, .reusable = false}, SHIFT(150), - [458] = {.count = 1, .reusable = true}, SHIFT(4), - [460] = {.count = 1, .reusable = true}, SHIFT(153), - [462] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [464] = {.count = 1, .reusable = true}, SHIFT(152), - [466] = {.count = 1, .reusable = true}, SHIFT(154), - [468] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(51), - [471] = {.count = 1, .reusable = true}, SHIFT(159), - [473] = {.count = 1, .reusable = true}, SHIFT(160), + [311] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [313] = {.count = 1, .reusable = false}, SHIFT(116), + [315] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), + [317] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), + [319] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(114), + [322] = {.count = 1, .reusable = false}, SHIFT(115), + [324] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [326] = {.count = 1, .reusable = true}, SHIFT(117), + [328] = {.count = 1, .reusable = true}, SHIFT(118), + [330] = {.count = 1, .reusable = true}, SHIFT(119), + [332] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), + [334] = {.count = 1, .reusable = false}, SHIFT(123), + [336] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [338] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [340] = {.count = 1, .reusable = true}, SHIFT(125), + [342] = {.count = 1, .reusable = false}, SHIFT(941), + [344] = {.count = 1, .reusable = false}, SHIFT(127), + [346] = {.count = 1, .reusable = true}, SHIFT(128), + [348] = {.count = 1, .reusable = false}, SHIFT(130), + [350] = {.count = 1, .reusable = false}, SHIFT(126), + [352] = {.count = 1, .reusable = false}, SHIFT(1170), + [354] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 3), + [356] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 3), + [358] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 4), + [360] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 4), + [362] = {.count = 1, .reusable = true}, SHIFT(1218), + [364] = {.count = 1, .reusable = true}, SHIFT(133), + [366] = {.count = 1, .reusable = true}, SHIFT(134), + [368] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2, .production_id = 5), + [370] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2, .production_id = 5), + [372] = {.count = 1, .reusable = true}, SHIFT(135), + [374] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2, .production_id = 6), + [376] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2, .production_id = 6), + [378] = {.count = 1, .reusable = false}, SHIFT(950), + [380] = {.count = 1, .reusable = false}, SHIFT(1165), + [382] = {.count = 1, .reusable = false}, SHIFT(136), + [384] = {.count = 1, .reusable = false}, SHIFT(1237), + [386] = {.count = 1, .reusable = false}, SHIFT(943), + [388] = {.count = 1, .reusable = false}, SHIFT(1167), + [390] = {.count = 1, .reusable = true}, SHIFT(950), + [392] = {.count = 1, .reusable = false}, SHIFT(1168), + [394] = {.count = 1, .reusable = false}, SHIFT(948), + [396] = {.count = 1, .reusable = false}, SHIFT(137), + [398] = {.count = 1, .reusable = true}, SHIFT(940), + [400] = {.count = 1, .reusable = false}, SHIFT(1241), + [402] = {.count = 1, .reusable = false}, SHIFT(138), + [404] = {.count = 1, .reusable = false}, SHIFT(1020), + [406] = {.count = 1, .reusable = false}, SHIFT(1166), + [408] = {.count = 1, .reusable = false}, SHIFT(952), + [410] = {.count = 1, .reusable = false}, SHIFT(1273), + [412] = {.count = 1, .reusable = false}, SHIFT(944), + [414] = {.count = 1, .reusable = false}, SHIFT(945), + [416] = {.count = 1, .reusable = false}, SHIFT(946), + [418] = {.count = 1, .reusable = false}, SHIFT(1169), + [420] = {.count = 1, .reusable = false}, SHIFT(947), + [422] = {.count = 1, .reusable = false}, SHIFT(949), + [424] = {.count = 1, .reusable = true}, SHIFT(622), + [426] = {.count = 1, .reusable = false}, SHIFT(1189), + [428] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2, .production_id = 6), + [430] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2, .production_id = 6), + [432] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [434] = {.count = 1, .reusable = true}, SHIFT(141), + [436] = {.count = 1, .reusable = true}, SHIFT(142), + [438] = {.count = 1, .reusable = false}, SHIFT(143), + [440] = {.count = 1, .reusable = true}, SHIFT(4), + [442] = {.count = 1, .reusable = true}, SHIFT(146), + [444] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [446] = {.count = 1, .reusable = true}, SHIFT(145), + [448] = {.count = 1, .reusable = true}, SHIFT(147), + [450] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(70), + [453] = {.count = 1, .reusable = true}, SHIFT(151), + [455] = {.count = 1, .reusable = true}, SHIFT(153), + [457] = {.count = 1, .reusable = true}, SHIFT(152), + [459] = {.count = 1, .reusable = false}, SHIFT(155), + [461] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 6), + [463] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 6), + [465] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [467] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [469] = {.count = 1, .reusable = true}, SHIFT(157), + [471] = {.count = 1, .reusable = false}, SHIFT(156), + [473] = {.count = 1, .reusable = false}, SHIFT(158), [475] = {.count = 1, .reusable = true}, SHIFT(158), - [477] = {.count = 1, .reusable = false}, SHIFT(162), - [479] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 6), - [481] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 6), - [483] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [485] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [487] = {.count = 1, .reusable = false}, SHIFT(163), - [489] = {.count = 1, .reusable = true}, SHIFT(164), - [491] = {.count = 1, .reusable = false}, SHIFT(166), - [493] = {.count = 1, .reusable = false}, SHIFT(521), - [495] = {.count = 1, .reusable = true}, SHIFT(166), - [497] = {.count = 1, .reusable = true}, SHIFT(165), - [499] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [501] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [503] = {.count = 1, .reusable = false}, SHIFT(169), - [505] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2, .production_id = 7), - [507] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2, .production_id = 7), - [509] = {.count = 1, .reusable = true}, SHIFT(898), + [477] = {.count = 1, .reusable = false}, SHIFT(1253), + [479] = {.count = 1, .reusable = false}, SHIFT(162), + [481] = {.count = 1, .reusable = false}, SHIFT(511), + [483] = {.count = 1, .reusable = true}, SHIFT(162), + [485] = {.count = 1, .reusable = true}, SHIFT(161), + [487] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [489] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [491] = {.count = 1, .reusable = false}, SHIFT(165), + [493] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2, .production_id = 7), + [495] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2, .production_id = 7), + [497] = {.count = 1, .reusable = true}, SHIFT(168), + [499] = {.count = 1, .reusable = false}, SHIFT(875), + [501] = {.count = 1, .reusable = true}, SHIFT(875), + [503] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 3), + [505] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 3), + [507] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 4), + [509] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 4), [511] = {.count = 1, .reusable = true}, SHIFT(172), - [513] = {.count = 1, .reusable = false}, SHIFT(889), - [515] = {.count = 1, .reusable = true}, SHIFT(889), - [517] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 3), - [519] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 3), - [521] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 4), - [523] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 4), - [525] = {.count = 1, .reusable = true}, SHIFT(176), - [527] = {.count = 1, .reusable = true}, SHIFT(178), - [529] = {.count = 1, .reusable = true}, SHIFT(179), - [531] = {.count = 1, .reusable = true}, SHIFT(180), - [533] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 3), - [535] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 3), - [537] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 4), - [539] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 4), - [541] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [543] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [545] = {.count = 1, .reusable = true}, SHIFT(183), - [547] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [549] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [551] = {.count = 1, .reusable = true}, SHIFT(185), - [553] = {.count = 1, .reusable = false}, SHIFT(186), - [555] = {.count = 1, .reusable = true}, SHIFT(188), - [557] = {.count = 1, .reusable = false}, SHIFT(187), + [513] = {.count = 1, .reusable = true}, SHIFT(175), + [515] = {.count = 1, .reusable = true}, SHIFT(174), + [517] = {.count = 1, .reusable = true}, SHIFT(176), + [519] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 3), + [521] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 3), + [523] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 4), + [525] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 4), + [527] = {.count = 1, .reusable = true}, SHIFT(179), + [529] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [531] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [533] = {.count = 1, .reusable = true}, SHIFT(180), + [535] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [537] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [539] = {.count = 1, .reusable = false}, SHIFT(182), + [541] = {.count = 1, .reusable = true}, SHIFT(184), + [543] = {.count = 1, .reusable = false}, SHIFT(183), + [545] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [547] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [549] = {.count = 1, .reusable = false}, SHIFT(188), + [551] = {.count = 1, .reusable = true}, SHIFT(188), + [553] = {.count = 1, .reusable = false}, SHIFT(189), + [555] = {.count = 1, .reusable = true}, SHIFT(189), + [557] = {.count = 1, .reusable = false}, SHIFT(190), [559] = {.count = 1, .reusable = true}, SHIFT(190), - [561] = {.count = 1, .reusable = false}, SHIFT(190), + [561] = {.count = 1, .reusable = false}, SHIFT(191), [563] = {.count = 1, .reusable = true}, SHIFT(191), - [565] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [567] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [565] = {.count = 1, .reusable = false}, SHIFT(192), + [567] = {.count = 1, .reusable = true}, SHIFT(192), [569] = {.count = 1, .reusable = false}, SHIFT(194), [571] = {.count = 1, .reusable = true}, SHIFT(194), [573] = {.count = 1, .reusable = false}, SHIFT(195), @@ -52460,1341 +52590,1307 @@ static TSParseActionEntry ts_parse_actions[] = { [583] = {.count = 1, .reusable = true}, SHIFT(197), [585] = {.count = 1, .reusable = false}, SHIFT(198), [587] = {.count = 1, .reusable = true}, SHIFT(198), - [589] = {.count = 1, .reusable = false}, SHIFT(200), - [591] = {.count = 1, .reusable = true}, SHIFT(200), - [593] = {.count = 1, .reusable = false}, SHIFT(201), - [595] = {.count = 1, .reusable = true}, SHIFT(201), - [597] = {.count = 1, .reusable = false}, SHIFT(202), - [599] = {.count = 1, .reusable = true}, SHIFT(202), - [601] = {.count = 1, .reusable = false}, SHIFT(203), - [603] = {.count = 1, .reusable = true}, SHIFT(203), - [605] = {.count = 1, .reusable = false}, SHIFT(204), - [607] = {.count = 1, .reusable = true}, SHIFT(204), - [609] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 9), - [611] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 9), - [613] = {.count = 1, .reusable = true}, SHIFT(205), - [615] = {.count = 1, .reusable = false}, SHIFT(207), - [617] = {.count = 1, .reusable = true}, SHIFT(207), - [619] = {.count = 1, .reusable = true}, SHIFT(206), - [621] = {.count = 1, .reusable = false}, SHIFT(208), - [623] = {.count = 1, .reusable = true}, SHIFT(208), - [625] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [627] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [629] = {.count = 1, .reusable = false}, SHIFT(209), - [631] = {.count = 1, .reusable = true}, SHIFT(209), - [633] = {.count = 1, .reusable = false}, SHIFT(210), - [635] = {.count = 1, .reusable = true}, SHIFT(210), - [637] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2, .production_id = 10), - [639] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2, .production_id = 10), - [641] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [643] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [645] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [647] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [649] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [651] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [653] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [655] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [657] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(120), - [660] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [662] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [664] = {.count = 1, .reusable = false}, SHIFT(211), - [666] = {.count = 1, .reusable = true}, SHIFT(213), - [668] = {.count = 1, .reusable = true}, SHIFT(214), - [670] = {.count = 1, .reusable = true}, SHIFT(218), - [672] = {.count = 1, .reusable = true}, SHIFT(216), - [674] = {.count = 1, .reusable = true}, SHIFT(217), - [676] = {.count = 1, .reusable = true}, SHIFT(215), - [678] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [680] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [682] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [685] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [688] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), - [691] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), - [694] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [697] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), - [700] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), - [703] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), - [706] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [708] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [711] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), - [714] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), - [717] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), - [720] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), - [726] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [729] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), - [732] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), - [735] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), - [738] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), - [741] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), - [744] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), - [747] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), - [750] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), - [753] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [756] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), - [759] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), - [762] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), - [765] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), - [768] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), - [771] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), - [774] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), - [777] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [780] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [783] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), - [786] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [789] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), - [792] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), - [795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), - [798] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [800] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [802] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [804] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4), - [807] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [809] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(20), - [812] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(33), - [815] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [817] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [819] = {.count = 1, .reusable = true}, SHIFT(224), - [821] = {.count = 1, .reusable = false}, SHIFT(225), - [823] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [825] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [827] = {.count = 1, .reusable = true}, SHIFT(226), - [829] = {.count = 1, .reusable = true}, SHIFT(228), - [831] = {.count = 1, .reusable = true}, SHIFT(229), - [833] = {.count = 1, .reusable = true}, SHIFT(230), - [835] = {.count = 1, .reusable = true}, SHIFT(231), - [837] = {.count = 1, .reusable = true}, SHIFT(232), - [839] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .production_id = 13), - [841] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .production_id = 13), - [843] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3, .production_id = 14), - [845] = {.count = 1, .reusable = true}, SHIFT(235), - [847] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .production_id = 15), - [849] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .production_id = 15), - [851] = {.count = 1, .reusable = true}, SHIFT(1174), - [853] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .production_id = 16), - [855] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .production_id = 16), - [857] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3, .production_id = 17), - [859] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3, .production_id = 17), - [861] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3, .production_id = 18), - [863] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3, .production_id = 18), - [865] = {.count = 1, .reusable = false}, SHIFT(237), - [867] = {.count = 1, .reusable = true}, SHIFT(1037), - [869] = {.count = 1, .reusable = false}, SHIFT(1047), - [871] = {.count = 1, .reusable = false}, SHIFT(1038), - [873] = {.count = 1, .reusable = false}, SHIFT(1271), - [875] = {.count = 1, .reusable = false}, SHIFT(1206), - [877] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), - [879] = {.count = 1, .reusable = false}, SHIFT(1104), - [881] = {.count = 1, .reusable = false}, SHIFT(1207), - [883] = {.count = 1, .reusable = false}, SHIFT(1267), - [885] = {.count = 1, .reusable = false}, SHIFT(1049), - [887] = {.count = 1, .reusable = false}, SHIFT(1298), - [889] = {.count = 1, .reusable = false}, SHIFT(1041), - [891] = {.count = 1, .reusable = false}, SHIFT(1208), - [893] = {.count = 1, .reusable = false}, SHIFT(1042), - [895] = {.count = 1, .reusable = false}, SHIFT(1209), - [897] = {.count = 1, .reusable = true}, SHIFT(1047), - [899] = {.count = 1, .reusable = false}, SHIFT(1043), - [901] = {.count = 1, .reusable = false}, SHIFT(1210), - [903] = {.count = 1, .reusable = false}, SHIFT(1044), - [905] = {.count = 1, .reusable = false}, SHIFT(1045), - [907] = {.count = 1, .reusable = false}, SHIFT(1046), - [909] = {.count = 1, .reusable = true}, SHIFT(723), - [911] = {.count = 1, .reusable = false}, SHIFT(1226), - [913] = {.count = 1, .reusable = true}, SHIFT(239), - [915] = {.count = 1, .reusable = false}, SHIFT(240), - [917] = {.count = 1, .reusable = true}, SHIFT(242), - [919] = {.count = 1, .reusable = false}, SHIFT(243), - [921] = {.count = 1, .reusable = true}, SHIFT(243), - [923] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [925] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [927] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [929] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [931] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4), - [934] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [936] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [938] = {.count = 1, .reusable = true}, SHIFT(249), - [940] = {.count = 1, .reusable = true}, SHIFT(250), - [942] = {.count = 1, .reusable = false}, SHIFT(255), - [944] = {.count = 1, .reusable = true}, SHIFT(255), - [946] = {.count = 1, .reusable = true}, SHIFT(253), - [948] = {.count = 1, .reusable = true}, SHIFT(254), - [950] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 19), - [952] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 20), - [954] = {.count = 1, .reusable = true}, SHIFT(257), - [956] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [958] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [960] = {.count = 1, .reusable = false}, SHIFT(158), - [962] = {.count = 1, .reusable = true}, SHIFT(264), - [964] = {.count = 1, .reusable = true}, SHIFT(263), - [966] = {.count = 1, .reusable = true}, SHIFT(265), - [968] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [970] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [972] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [974] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(164), - [977] = {.count = 1, .reusable = false}, SHIFT(270), - [979] = {.count = 1, .reusable = true}, SHIFT(270), - [981] = {.count = 1, .reusable = true}, SHIFT(269), - [983] = {.count = 1, .reusable = true}, SHIFT(271), - [985] = {.count = 1, .reusable = false}, SHIFT(273), - [987] = {.count = 1, .reusable = true}, SHIFT(273), - [989] = {.count = 1, .reusable = true}, SHIFT(272), - [991] = {.count = 1, .reusable = true}, SHIFT(274), - [993] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .production_id = 21), - [995] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .production_id = 21), - [997] = {.count = 1, .reusable = true}, SHIFT(275), - [999] = {.count = 1, .reusable = false}, SHIFT(276), - [1001] = {.count = 1, .reusable = true}, SHIFT(278), - [1003] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1005] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1007] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3, .production_id = 23), - [1009] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3, .production_id = 23), - [1011] = {.count = 1, .reusable = false}, SHIFT(280), - [1013] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .production_id = 13), - [1015] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .production_id = 13), - [1017] = {.count = 1, .reusable = true}, SHIFT(1103), - [1019] = {.count = 1, .reusable = false}, SHIFT(281), - [1021] = {.count = 1, .reusable = false}, SHIFT(1111), - [1023] = {.count = 1, .reusable = false}, SHIFT(635), - [1025] = {.count = 1, .reusable = false}, SHIFT(1274), - [1027] = {.count = 1, .reusable = false}, SHIFT(1224), - [1029] = {.count = 1, .reusable = true}, SHIFT(282), - [1031] = {.count = 1, .reusable = false}, SHIFT(283), - [1033] = {.count = 1, .reusable = false}, SHIFT(1299), - [1035] = {.count = 1, .reusable = false}, SHIFT(1106), - [1037] = {.count = 1, .reusable = true}, SHIFT(1111), - [1039] = {.count = 1, .reusable = false}, SHIFT(1107), - [1041] = {.count = 1, .reusable = false}, SHIFT(1225), - [1043] = {.count = 1, .reusable = false}, SHIFT(1108), - [1045] = {.count = 1, .reusable = false}, SHIFT(1109), - [1047] = {.count = 1, .reusable = false}, SHIFT(1110), - [1049] = {.count = 1, .reusable = true}, SHIFT(800), - [1051] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1053] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1055] = {.count = 1, .reusable = true}, SHIFT(285), - [1057] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1, .production_id = 25), - [1059] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [1061] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [1063] = {.count = 1, .reusable = true}, SHIFT(286), - [1065] = {.count = 1, .reusable = true}, SHIFT(287), - [1067] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .production_id = 13), - [1069] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .production_id = 13), - [1071] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [1073] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [1075] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3, .production_id = 24), - [1077] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3, .production_id = 24), - [1079] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [1081] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [1083] = {.count = 1, .reusable = true}, SHIFT(289), - [1085] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .production_id = 21), - [1087] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .production_id = 21), - [1089] = {.count = 1, .reusable = true}, SHIFT(290), - [1091] = {.count = 1, .reusable = true}, SHIFT(291), - [1093] = {.count = 1, .reusable = false}, SHIFT(292), - [1095] = {.count = 1, .reusable = false}, SHIFT(293), - [1097] = {.count = 1, .reusable = true}, SHIFT(294), - [1099] = {.count = 1, .reusable = false}, SHIFT(295), - [1101] = {.count = 1, .reusable = true}, SHIFT(296), - [1103] = {.count = 1, .reusable = true}, SHIFT(297), - [1105] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [1107] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [1109] = {.count = 1, .reusable = true}, SHIFT(298), - [1111] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3, .production_id = 14), - [1113] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .production_id = 27), - [1115] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .production_id = 27), - [1117] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), - [1119] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), - [1121] = {.count = 1, .reusable = true}, SHIFT(299), - [1123] = {.count = 1, .reusable = true}, SHIFT(300), - [1125] = {.count = 1, .reusable = true}, SHIFT(302), - [1127] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [1129] = {.count = 1, .reusable = false}, SHIFT(303), - [1131] = {.count = 1, .reusable = true}, SHIFT(304), - [1133] = {.count = 1, .reusable = false}, SHIFT(305), - [1135] = {.count = 1, .reusable = true}, SHIFT(305), - [1137] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3, .production_id = 29), - [1139] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3, .production_id = 29), - [1141] = {.count = 1, .reusable = true}, SHIFT(307), - [1143] = {.count = 1, .reusable = false}, SHIFT(311), - [1145] = {.count = 1, .reusable = true}, SHIFT(311), - [1147] = {.count = 1, .reusable = true}, SHIFT(309), - [1149] = {.count = 1, .reusable = true}, SHIFT(310), - [1151] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [1153] = {.count = 1, .reusable = true}, SHIFT(33), - [1155] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3, .production_id = 31), - [1157] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3, .production_id = 31), - [1159] = {.count = 1, .reusable = true}, SHIFT(314), - [1161] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1163] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1165] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1173), - [1168] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(15), - [1171] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [1173] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [1175] = {.count = 1, .reusable = false}, SHIFT(1177), - [1177] = {.count = 1, .reusable = false}, SHIFT(316), - [1179] = {.count = 1, .reusable = false}, SHIFT(1148), - [1181] = {.count = 1, .reusable = false}, SHIFT(1178), - [1183] = {.count = 1, .reusable = false}, SHIFT(317), - [1185] = {.count = 1, .reusable = false}, SHIFT(318), - [1187] = {.count = 1, .reusable = false}, SHIFT(1236), - [1189] = {.count = 1, .reusable = false}, SHIFT(321), - [1191] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [1193] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [1195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(130), - [1198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3), - [1201] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(39), - [1204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4), - [1207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(20), - [1210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(67), - [1213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(23), - [1216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(959), - [1219] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(131), - [1222] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(25), - [1225] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1227] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1191), - [1230] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(134), - [1233] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(33), - [1236] = {.count = 1, .reusable = false}, SHIFT(230), - [1238] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .production_id = 32), - [1240] = {.count = 1, .reusable = false}, SHIFT(327), - [1242] = {.count = 1, .reusable = true}, SHIFT(327), - [1244] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2, .production_id = 33), - [1246] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2, .production_id = 33), - [1248] = {.count = 1, .reusable = true}, SHIFT(328), - [1250] = {.count = 1, .reusable = true}, SHIFT(331), - [1252] = {.count = 1, .reusable = true}, SHIFT(330), - [1254] = {.count = 1, .reusable = true}, SHIFT(329), - [1256] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 34), - [1258] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 34), - [1260] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4, .production_id = 35), - [1262] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4, .production_id = 35), - [1264] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .production_id = 18), - [1266] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), - [1268] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 36), - [1270] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 36), - [1272] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 18), - [1274] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 18), - [1276] = {.count = 1, .reusable = true}, SHIFT(337), - [1278] = {.count = 1, .reusable = true}, SHIFT(338), - [1280] = {.count = 1, .reusable = false}, SHIFT(342), - [1282] = {.count = 1, .reusable = true}, SHIFT(340), - [1284] = {.count = 1, .reusable = true}, SHIFT(342), - [1286] = {.count = 1, .reusable = true}, SHIFT(339), - [1288] = {.count = 1, .reusable = false}, SHIFT(341), - [1290] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4, .production_id = 37), - [1292] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4, .production_id = 37), - [1294] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4, .production_id = 37), - [1296] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4, .production_id = 37), - [1298] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [1300] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [1302] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [1304] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [1306] = {.count = 1, .reusable = true}, SHIFT(348), - [1308] = {.count = 1, .reusable = true}, SHIFT(347), - [1310] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), - [1312] = {.count = 1, .reusable = true}, SHIFT(350), - [1314] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1, .production_id = 33), - [1316] = {.count = 1, .reusable = true}, SHIFT(351), - [1318] = {.count = 1, .reusable = true}, SHIFT(352), - [1320] = {.count = 1, .reusable = true}, SHIFT(354), - [1322] = {.count = 1, .reusable = true}, SHIFT(355), - [1324] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [1326] = {.count = 1, .reusable = false}, SHIFT(358), - [1328] = {.count = 1, .reusable = true}, SHIFT(358), - [1330] = {.count = 1, .reusable = true}, SHIFT(356), - [1332] = {.count = 1, .reusable = true}, SHIFT(357), - [1334] = {.count = 1, .reusable = false}, SHIFT(361), - [1336] = {.count = 1, .reusable = true}, SHIFT(361), - [1338] = {.count = 1, .reusable = true}, SHIFT(359), - [1340] = {.count = 1, .reusable = true}, SHIFT(360), - [1342] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), - [1344] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 39), - [1346] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [1348] = {.count = 1, .reusable = true}, SHIFT(364), - [1350] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4, .production_id = 38), - [1352] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4, .production_id = 38), - [1354] = {.count = 1, .reusable = false}, SHIFT(368), - [1356] = {.count = 1, .reusable = true}, SHIFT(368), - [1358] = {.count = 1, .reusable = true}, SHIFT(366), - [1360] = {.count = 1, .reusable = true}, SHIFT(367), - [1362] = {.count = 1, .reusable = true}, SHIFT(370), - [1364] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [1366] = {.count = 1, .reusable = true}, SHIFT(372), - [1368] = {.count = 1, .reusable = false}, SHIFT(375), - [1370] = {.count = 1, .reusable = true}, SHIFT(375), - [1372] = {.count = 1, .reusable = true}, SHIFT(374), + [589] = {.count = 1, .reusable = false}, REDUCE(sym_update_expression, 2, .production_id = 9), + [591] = {.count = 1, .reusable = true}, REDUCE(sym_update_expression, 2, .production_id = 9), + [593] = {.count = 1, .reusable = true}, SHIFT(199), + [595] = {.count = 1, .reusable = false}, SHIFT(201), + [597] = {.count = 1, .reusable = true}, SHIFT(201), + [599] = {.count = 1, .reusable = true}, SHIFT(200), + [601] = {.count = 1, .reusable = false}, SHIFT(202), + [603] = {.count = 1, .reusable = true}, SHIFT(202), + [605] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [607] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [609] = {.count = 1, .reusable = false}, SHIFT(203), + [611] = {.count = 1, .reusable = true}, SHIFT(203), + [613] = {.count = 1, .reusable = false}, SHIFT(204), + [615] = {.count = 1, .reusable = true}, SHIFT(204), + [617] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2, .production_id = 10), + [619] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2, .production_id = 10), + [621] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [623] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [625] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [627] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [629] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 11), + [631] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 11), + [633] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .production_id = 12), + [635] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .production_id = 12), + [637] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(116), + [640] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [642] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [644] = {.count = 1, .reusable = false}, SHIFT(205), + [646] = {.count = 1, .reusable = true}, SHIFT(207), + [648] = {.count = 1, .reusable = true}, SHIFT(208), + [650] = {.count = 1, .reusable = true}, SHIFT(212), + [652] = {.count = 1, .reusable = true}, SHIFT(210), + [654] = {.count = 1, .reusable = true}, SHIFT(211), + [656] = {.count = 1, .reusable = true}, SHIFT(209), + [658] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [660] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [662] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), + [665] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), + [668] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), + [671] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), + [674] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), + [677] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), + [680] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), + [683] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), + [686] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [689] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), + [692] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), + [695] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), + [698] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), + [701] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), + [704] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), + [707] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), + [710] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), + [713] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), + [716] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), + [719] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), + [722] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), + [725] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), + [728] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), + [731] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), + [734] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), + [737] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), + [740] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), + [743] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), + [746] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), + [749] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), + [752] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), + [755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), + [758] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), + [761] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [763] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), + [766] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [769] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), + [772] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [775] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2, .production_id = 12), + [777] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2, .production_id = 12), + [779] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [781] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4), + [784] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [786] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(20), + [789] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(32), + [792] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [794] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [796] = {.count = 1, .reusable = true}, SHIFT(218), + [798] = {.count = 1, .reusable = false}, SHIFT(219), + [800] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [802] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [804] = {.count = 1, .reusable = true}, SHIFT(220), + [806] = {.count = 1, .reusable = true}, SHIFT(222), + [808] = {.count = 1, .reusable = true}, SHIFT(224), + [810] = {.count = 1, .reusable = true}, SHIFT(223), + [812] = {.count = 1, .reusable = true}, SHIFT(225), + [814] = {.count = 1, .reusable = true}, SHIFT(226), + [816] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .production_id = 13), + [818] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .production_id = 13), + [820] = {.count = 1, .reusable = true}, SHIFT(1153), + [822] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [824] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [826] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [828] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [830] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3, .production_id = 16), + [832] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3, .production_id = 16), + [834] = {.count = 1, .reusable = false}, SHIFT(230), + [836] = {.count = 1, .reusable = false}, SHIFT(1029), + [838] = {.count = 1, .reusable = false}, SHIFT(1184), + [840] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), + [842] = {.count = 1, .reusable = false}, SHIFT(1242), + [844] = {.count = 1, .reusable = false}, SHIFT(1022), + [846] = {.count = 1, .reusable = false}, SHIFT(1186), + [848] = {.count = 1, .reusable = true}, SHIFT(1029), + [850] = {.count = 1, .reusable = false}, SHIFT(1187), + [852] = {.count = 1, .reusable = false}, SHIFT(1027), + [854] = {.count = 1, .reusable = true}, SHIFT(1019), + [856] = {.count = 1, .reusable = false}, SHIFT(1246), + [858] = {.count = 1, .reusable = false}, SHIFT(1085), + [860] = {.count = 1, .reusable = false}, SHIFT(1185), + [862] = {.count = 1, .reusable = false}, SHIFT(1031), + [864] = {.count = 1, .reusable = false}, SHIFT(1274), + [866] = {.count = 1, .reusable = false}, SHIFT(1023), + [868] = {.count = 1, .reusable = false}, SHIFT(1024), + [870] = {.count = 1, .reusable = false}, SHIFT(1025), + [872] = {.count = 1, .reusable = false}, SHIFT(1188), + [874] = {.count = 1, .reusable = false}, SHIFT(1026), + [876] = {.count = 1, .reusable = false}, SHIFT(1028), + [878] = {.count = 1, .reusable = true}, SHIFT(711), + [880] = {.count = 1, .reusable = false}, SHIFT(1203), + [882] = {.count = 1, .reusable = true}, SHIFT(232), + [884] = {.count = 1, .reusable = false}, SHIFT(233), + [886] = {.count = 1, .reusable = true}, SHIFT(235), + [888] = {.count = 1, .reusable = false}, SHIFT(236), + [890] = {.count = 1, .reusable = true}, SHIFT(236), + [892] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [894] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [896] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 12), + [898] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [900] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4), + [903] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), + [905] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [907] = {.count = 1, .reusable = true}, SHIFT(243), + [909] = {.count = 1, .reusable = true}, SHIFT(242), + [911] = {.count = 1, .reusable = false}, SHIFT(248), + [913] = {.count = 1, .reusable = true}, SHIFT(248), + [915] = {.count = 1, .reusable = true}, SHIFT(246), + [917] = {.count = 1, .reusable = true}, SHIFT(247), + [919] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [921] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 18), + [923] = {.count = 1, .reusable = true}, SHIFT(250), + [925] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [927] = {.count = 1, .reusable = false}, SHIFT(152), + [929] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [931] = {.count = 1, .reusable = true}, SHIFT(257), + [933] = {.count = 1, .reusable = true}, SHIFT(256), + [935] = {.count = 1, .reusable = true}, SHIFT(258), + [937] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [939] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [941] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(157), + [944] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [946] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3, .production_id = 19), + [948] = {.count = 1, .reusable = true}, SHIFT(262), + [950] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .production_id = 20), + [952] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .production_id = 20), + [954] = {.count = 1, .reusable = false}, SHIFT(264), + [956] = {.count = 1, .reusable = true}, SHIFT(264), + [958] = {.count = 1, .reusable = true}, SHIFT(263), + [960] = {.count = 1, .reusable = true}, SHIFT(265), + [962] = {.count = 1, .reusable = false}, SHIFT(267), + [964] = {.count = 1, .reusable = true}, SHIFT(267), + [966] = {.count = 1, .reusable = true}, SHIFT(266), + [968] = {.count = 1, .reusable = true}, SHIFT(268), + [970] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .production_id = 21), + [972] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .production_id = 21), + [974] = {.count = 1, .reusable = true}, SHIFT(269), + [976] = {.count = 1, .reusable = false}, SHIFT(270), + [978] = {.count = 1, .reusable = true}, SHIFT(272), + [980] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3, .production_id = 22), + [982] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3, .production_id = 22), + [984] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3, .production_id = 23), + [986] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3, .production_id = 23), + [988] = {.count = 1, .reusable = false}, SHIFT(274), + [990] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .production_id = 13), + [992] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .production_id = 13), + [994] = {.count = 1, .reusable = true}, SHIFT(1084), + [996] = {.count = 1, .reusable = false}, SHIFT(275), + [998] = {.count = 1, .reusable = false}, SHIFT(1092), + [1000] = {.count = 1, .reusable = false}, SHIFT(1249), + [1002] = {.count = 1, .reusable = false}, SHIFT(1201), + [1004] = {.count = 1, .reusable = true}, SHIFT(276), + [1006] = {.count = 1, .reusable = false}, SHIFT(277), + [1008] = {.count = 1, .reusable = false}, SHIFT(954), + [1010] = {.count = 1, .reusable = false}, SHIFT(1275), + [1012] = {.count = 1, .reusable = false}, SHIFT(1087), + [1014] = {.count = 1, .reusable = true}, SHIFT(1092), + [1016] = {.count = 1, .reusable = false}, SHIFT(1088), + [1018] = {.count = 1, .reusable = false}, SHIFT(1202), + [1020] = {.count = 1, .reusable = false}, SHIFT(1089), + [1022] = {.count = 1, .reusable = false}, SHIFT(1090), + [1024] = {.count = 1, .reusable = false}, SHIFT(1091), + [1026] = {.count = 1, .reusable = true}, SHIFT(786), + [1028] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3, .production_id = 24), + [1030] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3, .production_id = 24), + [1032] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [1034] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [1036] = {.count = 1, .reusable = true}, SHIFT(279), + [1038] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1, .production_id = 25), + [1040] = {.count = 1, .reusable = true}, SHIFT(280), + [1042] = {.count = 1, .reusable = true}, SHIFT(281), + [1044] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .production_id = 13), + [1046] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .production_id = 13), + [1048] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [1050] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [1052] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [1054] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [1056] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3, .production_id = 24), + [1058] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3, .production_id = 24), + [1060] = {.count = 1, .reusable = true}, SHIFT(283), + [1062] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .production_id = 21), + [1064] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .production_id = 21), + [1066] = {.count = 1, .reusable = true}, SHIFT(284), + [1068] = {.count = 1, .reusable = true}, SHIFT(285), + [1070] = {.count = 1, .reusable = false}, SHIFT(286), + [1072] = {.count = 1, .reusable = false}, SHIFT(287), + [1074] = {.count = 1, .reusable = true}, SHIFT(288), + [1076] = {.count = 1, .reusable = true}, SHIFT(289), + [1078] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [1080] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [1082] = {.count = 1, .reusable = true}, SHIFT(290), + [1084] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3, .production_id = 19), + [1086] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .production_id = 27), + [1088] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .production_id = 27), + [1090] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), + [1092] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), + [1094] = {.count = 1, .reusable = true}, SHIFT(291), + [1096] = {.count = 1, .reusable = true}, SHIFT(292), + [1098] = {.count = 1, .reusable = true}, SHIFT(294), + [1100] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [1102] = {.count = 1, .reusable = false}, SHIFT(295), + [1104] = {.count = 1, .reusable = true}, SHIFT(296), + [1106] = {.count = 1, .reusable = false}, SHIFT(297), + [1108] = {.count = 1, .reusable = true}, SHIFT(297), + [1110] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3, .production_id = 29), + [1112] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3, .production_id = 29), + [1114] = {.count = 1, .reusable = true}, SHIFT(299), + [1116] = {.count = 1, .reusable = false}, SHIFT(303), + [1118] = {.count = 1, .reusable = true}, SHIFT(303), + [1120] = {.count = 1, .reusable = true}, SHIFT(301), + [1122] = {.count = 1, .reusable = true}, SHIFT(302), + [1124] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [1126] = {.count = 1, .reusable = true}, SHIFT(32), + [1128] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3, .production_id = 31), + [1130] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3, .production_id = 31), + [1132] = {.count = 1, .reusable = true}, SHIFT(306), + [1134] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1136] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1138] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(14), + [1141] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3, .production_id = 12), + [1143] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3, .production_id = 12), + [1145] = {.count = 1, .reusable = false}, SHIFT(1156), + [1147] = {.count = 1, .reusable = false}, SHIFT(308), + [1149] = {.count = 1, .reusable = false}, SHIFT(1128), + [1151] = {.count = 1, .reusable = false}, SHIFT(1157), + [1153] = {.count = 1, .reusable = false}, SHIFT(309), + [1155] = {.count = 1, .reusable = false}, SHIFT(310), + [1157] = {.count = 1, .reusable = false}, SHIFT(1212), + [1159] = {.count = 1, .reusable = false}, SHIFT(313), + [1161] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [1163] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [1165] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(126), + [1168] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3), + [1171] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(38), + [1174] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4), + [1177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(20), + [1180] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(23), + [1183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(941), + [1186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(127), + [1189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(25), + [1192] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1194] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1170), + [1197] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(130), + [1200] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(32), + [1203] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(63), + [1206] = {.count = 1, .reusable = false}, SHIFT(223), + [1208] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .production_id = 32), + [1210] = {.count = 1, .reusable = false}, SHIFT(319), + [1212] = {.count = 1, .reusable = true}, SHIFT(319), + [1214] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2, .production_id = 33), + [1216] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2, .production_id = 33), + [1218] = {.count = 1, .reusable = true}, SHIFT(320), + [1220] = {.count = 1, .reusable = true}, SHIFT(323), + [1222] = {.count = 1, .reusable = true}, SHIFT(322), + [1224] = {.count = 1, .reusable = true}, SHIFT(321), + [1226] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4, .production_id = 34), + [1228] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4, .production_id = 34), + [1230] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .production_id = 16), + [1232] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), + [1234] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1236] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1238] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .production_id = 16), + [1240] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .production_id = 16), + [1242] = {.count = 1, .reusable = true}, SHIFT(329), + [1244] = {.count = 1, .reusable = true}, SHIFT(330), + [1246] = {.count = 1, .reusable = false}, SHIFT(334), + [1248] = {.count = 1, .reusable = true}, SHIFT(332), + [1250] = {.count = 1, .reusable = true}, SHIFT(334), + [1252] = {.count = 1, .reusable = true}, SHIFT(331), + [1254] = {.count = 1, .reusable = false}, SHIFT(333), + [1256] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4, .production_id = 36), + [1258] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4, .production_id = 36), + [1260] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4, .production_id = 36), + [1262] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4, .production_id = 36), + [1264] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 37), + [1266] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 12), + [1268] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [1270] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [1272] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), + [1274] = {.count = 1, .reusable = true}, SHIFT(340), + [1276] = {.count = 1, .reusable = true}, SHIFT(339), + [1278] = {.count = 1, .reusable = true}, SHIFT(342), + [1280] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1, .production_id = 33), + [1282] = {.count = 1, .reusable = true}, SHIFT(343), + [1284] = {.count = 1, .reusable = true}, SHIFT(346), + [1286] = {.count = 1, .reusable = true}, SHIFT(344), + [1288] = {.count = 1, .reusable = true}, SHIFT(347), + [1290] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [1292] = {.count = 1, .reusable = false}, SHIFT(350), + [1294] = {.count = 1, .reusable = true}, SHIFT(350), + [1296] = {.count = 1, .reusable = true}, SHIFT(348), + [1298] = {.count = 1, .reusable = true}, SHIFT(349), + [1300] = {.count = 1, .reusable = false}, SHIFT(353), + [1302] = {.count = 1, .reusable = true}, SHIFT(353), + [1304] = {.count = 1, .reusable = true}, SHIFT(351), + [1306] = {.count = 1, .reusable = true}, SHIFT(352), + [1308] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [1310] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [1312] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [1314] = {.count = 1, .reusable = true}, SHIFT(356), + [1316] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4, .production_id = 37), + [1318] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4, .production_id = 37), + [1320] = {.count = 1, .reusable = false}, SHIFT(360), + [1322] = {.count = 1, .reusable = true}, SHIFT(360), + [1324] = {.count = 1, .reusable = true}, SHIFT(358), + [1326] = {.count = 1, .reusable = true}, SHIFT(359), + [1328] = {.count = 1, .reusable = true}, SHIFT(362), + [1330] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [1332] = {.count = 1, .reusable = true}, SHIFT(364), + [1334] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 39), + [1336] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 39), + [1338] = {.count = 1, .reusable = false}, SHIFT(367), + [1340] = {.count = 1, .reusable = true}, SHIFT(367), + [1342] = {.count = 1, .reusable = true}, SHIFT(366), + [1344] = {.count = 1, .reusable = true}, SHIFT(369), + [1346] = {.count = 1, .reusable = false}, SHIFT(371), + [1348] = {.count = 1, .reusable = true}, SHIFT(371), + [1350] = {.count = 1, .reusable = true}, SHIFT(370), + [1352] = {.count = 1, .reusable = false}, SHIFT(373), + [1354] = {.count = 1, .reusable = true}, SHIFT(373), + [1356] = {.count = 1, .reusable = true}, SHIFT(372), + [1358] = {.count = 1, .reusable = true}, SHIFT(375), + [1360] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 40), + [1362] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 40), + [1364] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 21), + [1366] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 21), + [1368] = {.count = 1, .reusable = true}, SHIFT(376), + [1370] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [1372] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), [1374] = {.count = 1, .reusable = true}, SHIFT(377), [1376] = {.count = 1, .reusable = false}, SHIFT(379), [1378] = {.count = 1, .reusable = true}, SHIFT(379), - [1380] = {.count = 1, .reusable = true}, SHIFT(378), - [1382] = {.count = 1, .reusable = false}, SHIFT(381), - [1384] = {.count = 1, .reusable = true}, SHIFT(381), - [1386] = {.count = 1, .reusable = true}, SHIFT(380), - [1388] = {.count = 1, .reusable = true}, SHIFT(383), - [1390] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 40), - [1392] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 40), - [1394] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .production_id = 21), - [1396] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .production_id = 21), - [1398] = {.count = 1, .reusable = true}, SHIFT(384), - [1400] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [1402] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [1404] = {.count = 1, .reusable = true}, SHIFT(385), - [1406] = {.count = 1, .reusable = false}, SHIFT(387), - [1408] = {.count = 1, .reusable = true}, SHIFT(387), - [1410] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), - [1412] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), - [1414] = {.count = 1, .reusable = true}, SHIFT(388), - [1416] = {.count = 1, .reusable = true}, SHIFT(389), - [1418] = {.count = 1, .reusable = false}, SHIFT(391), - [1420] = {.count = 1, .reusable = true}, SHIFT(391), - [1422] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [1424] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [1426] = {.count = 1, .reusable = true}, SHIFT(392), - [1428] = {.count = 1, .reusable = true}, SHIFT(394), - [1430] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .production_id = 41), - [1432] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .production_id = 41), - [1434] = {.count = 1, .reusable = true}, SHIFT(396), - [1436] = {.count = 1, .reusable = true}, SHIFT(397), - [1438] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [1440] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .production_id = 42), - [1442] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .production_id = 42), - [1444] = {.count = 1, .reusable = true}, SHIFT(399), - [1446] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 4), - [1448] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 4), - [1450] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 4), - [1452] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 4), - [1454] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), - [1456] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), - [1458] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4, .production_id = 43), - [1460] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4, .production_id = 43), - [1462] = {.count = 1, .reusable = false}, SHIFT(9), - [1464] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4, .production_id = 44), - [1466] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4, .production_id = 44), - [1468] = {.count = 1, .reusable = false}, SHIFT(400), - [1470] = {.count = 1, .reusable = true}, SHIFT(400), - [1472] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), - [1474] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), - [1476] = {.count = 1, .reusable = true}, SHIFT(401), - [1478] = {.count = 1, .reusable = false}, SHIFT(403), - [1480] = {.count = 1, .reusable = true}, SHIFT(403), - [1482] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 45), - [1484] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [1486] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3, .production_id = 46), - [1488] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 28), - [1490] = {.count = 1, .reusable = true}, SHIFT(404), - [1492] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [1494] = {.count = 1, .reusable = false}, SHIFT(407), - [1496] = {.count = 1, .reusable = true}, SHIFT(407), - [1498] = {.count = 1, .reusable = true}, SHIFT(405), - [1500] = {.count = 1, .reusable = true}, SHIFT(406), - [1502] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [1504] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4, .production_id = 48), - [1506] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4, .production_id = 48), - [1508] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 49), SHIFT_REPEAT(217), - [1511] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 49), - [1513] = {.count = 1, .reusable = false}, SHIFT(1197), - [1515] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1517] = {.count = 1, .reusable = false}, SHIFT(1157), - [1519] = {.count = 1, .reusable = false}, SHIFT(1198), - [1521] = {.count = 1, .reusable = false}, SHIFT(1238), - [1523] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 21), - [1525] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 21), - [1527] = {.count = 1, .reusable = false}, SHIFT(410), - [1529] = {.count = 1, .reusable = false}, SHIFT(411), - [1531] = {.count = 1, .reusable = true}, SHIFT(413), - [1533] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 18), - [1535] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 18), - [1537] = {.count = 1, .reusable = false}, SHIFT(414), - [1539] = {.count = 1, .reusable = true}, SHIFT(416), - [1541] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [1543] = {.count = 1, .reusable = true}, SHIFT(418), - [1545] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), - [1547] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 33), - [1549] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 33), - [1551] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 29), - [1553] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 29), - [1555] = {.count = 1, .reusable = false}, SHIFT(422), - [1557] = {.count = 1, .reusable = true}, SHIFT(422), - [1559] = {.count = 1, .reusable = true}, SHIFT(420), - [1561] = {.count = 1, .reusable = true}, SHIFT(421), - [1563] = {.count = 1, .reusable = true}, SHIFT(424), - [1565] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [1567] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .production_id = 36), - [1569] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .production_id = 18), - [1571] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .production_id = 50), - [1573] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .production_id = 50), - [1575] = {.count = 1, .reusable = false}, SHIFT(428), - [1577] = {.count = 1, .reusable = true}, SHIFT(428), - [1579] = {.count = 1, .reusable = true}, SHIFT(429), - [1581] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [1583] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [1585] = {.count = 1, .reusable = true}, SHIFT(430), - [1587] = {.count = 1, .reusable = true}, SHIFT(431), - [1589] = {.count = 1, .reusable = true}, SHIFT(433), - [1591] = {.count = 1, .reusable = true}, SHIFT(341), - [1593] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4, .production_id = 51), - [1595] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 45), - [1597] = {.count = 1, .reusable = true}, SHIFT(435), - [1599] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), - [1601] = {.count = 1, .reusable = true}, SHIFT(436), - [1603] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [1605] = {.count = 1, .reusable = false}, SHIFT(439), - [1607] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2, .production_id = 29), - [1609] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 52), - [1611] = {.count = 1, .reusable = true}, SHIFT(440), - [1613] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [1615] = {.count = 1, .reusable = true}, SHIFT(441), - [1617] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), - [1619] = {.count = 1, .reusable = false}, SHIFT(444), - [1621] = {.count = 1, .reusable = true}, SHIFT(444), - [1623] = {.count = 1, .reusable = true}, SHIFT(442), - [1625] = {.count = 1, .reusable = true}, SHIFT(443), - [1627] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 45), - [1629] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [1631] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 28), - [1633] = {.count = 1, .reusable = true}, SHIFT(445), - [1635] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [1637] = {.count = 1, .reusable = false}, SHIFT(448), - [1639] = {.count = 1, .reusable = true}, SHIFT(448), - [1641] = {.count = 1, .reusable = true}, SHIFT(446), - [1643] = {.count = 1, .reusable = true}, SHIFT(447), - [1645] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 53), - [1647] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 53), - [1649] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 49), SHIFT_REPEAT(264), - [1652] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 49), - [1654] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 54), - [1656] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 54), - [1658] = {.count = 1, .reusable = true}, SHIFT(449), - [1660] = {.count = 1, .reusable = true}, SHIFT(451), - [1662] = {.count = 1, .reusable = false}, SHIFT(453), - [1664] = {.count = 1, .reusable = true}, SHIFT(453), - [1666] = {.count = 1, .reusable = true}, SHIFT(452), - [1668] = {.count = 1, .reusable = false}, SHIFT(456), - [1670] = {.count = 1, .reusable = true}, SHIFT(456), - [1672] = {.count = 1, .reusable = true}, SHIFT(455), - [1674] = {.count = 1, .reusable = true}, SHIFT(458), - [1676] = {.count = 1, .reusable = true}, SHIFT(460), - [1678] = {.count = 1, .reusable = false}, SHIFT(462), - [1680] = {.count = 1, .reusable = true}, SHIFT(462), - [1682] = {.count = 1, .reusable = true}, SHIFT(461), - [1684] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), - [1686] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), - [1688] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [1690] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [1692] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5, .production_id = 56), - [1694] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5, .production_id = 56), - [1696] = {.count = 1, .reusable = true}, SHIFT(464), - [1698] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), - [1700] = {.count = 1, .reusable = false}, SHIFT(514), - [1702] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), - [1704] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), - [1706] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), - [1708] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1103), - [1711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(281), - [1714] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1111), - [1717] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(635), - [1720] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1274), - [1723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1224), - [1726] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(9), - [1729] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(11), - [1732] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(15), - [1735] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(12), - [1738] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), - [1740] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(14), - [1743] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(283), - [1746] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1299), - [1749] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1106), - [1752] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(11), - [1755] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1111), - [1758] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(30), - [1761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1107), - [1764] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1225), - [1767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1108), - [1770] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1109), - [1773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1110), - [1776] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(800), - [1779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(32), - [1782] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(34), - [1785] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3, .production_id = 57), - [1787] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [1789] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [1791] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [1793] = {.count = 1, .reusable = true}, SHIFT(466), - [1795] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(467), - [1798] = {.count = 1, .reusable = true}, SHIFT(468), - [1800] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [1802] = {.count = 1, .reusable = true}, SHIFT(469), - [1804] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), - [1806] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), - [1808] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1810] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), - [1812] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), - [1814] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(299), - [1817] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5, .production_id = 59), - [1819] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 60), - [1821] = {.count = 1, .reusable = true}, SHIFT(471), - [1823] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [1825] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [1827] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(33), - [1830] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1832] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .production_id = 18), - [1834] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 21), - [1836] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 21), - [1838] = {.count = 1, .reusable = true}, SHIFT(474), - [1840] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 40), - [1842] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 40), - [1844] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 18), - [1846] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 18), - [1848] = {.count = 1, .reusable = true}, SHIFT(475), - [1850] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 36), - [1852] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 36), - [1854] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 45), - [1856] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [1858] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 28), - [1860] = {.count = 1, .reusable = true}, SHIFT(476), - [1862] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [1864] = {.count = 1, .reusable = false}, SHIFT(479), - [1866] = {.count = 1, .reusable = true}, SHIFT(479), - [1868] = {.count = 1, .reusable = true}, SHIFT(477), - [1870] = {.count = 1, .reusable = true}, SHIFT(478), - [1872] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4, .production_id = 29), - [1874] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4, .production_id = 29), - [1876] = {.count = 1, .reusable = true}, SHIFT(480), - [1878] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 49), SHIFT_REPEAT(330), - [1881] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 49), - [1883] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .production_id = 50), - [1885] = {.count = 1, .reusable = true}, SHIFT(481), - [1887] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [1889] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [1891] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .production_id = 61), - [1893] = {.count = 1, .reusable = false}, SHIFT(483), - [1895] = {.count = 1, .reusable = true}, SHIFT(482), - [1897] = {.count = 1, .reusable = true}, SHIFT(483), - [1899] = {.count = 1, .reusable = true}, SHIFT(485), - [1901] = {.count = 1, .reusable = false}, SHIFT(487), - [1903] = {.count = 1, .reusable = true}, SHIFT(487), - [1905] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [1907] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(341), - [1910] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(338), - [1913] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [1915] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), - [1917] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(347), - [1920] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(51), - [1924] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [1927] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 62), - [1929] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 60), - [1931] = {.count = 1, .reusable = true}, SHIFT(489), - [1933] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), - [1935] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 60), - [1937] = {.count = 1, .reusable = true}, SHIFT(490), - [1939] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [1941] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6, .production_id = 63), - [1943] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6, .production_id = 63), - [1945] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [1947] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [1949] = {.count = 1, .reusable = true}, SHIFT(493), - [1951] = {.count = 1, .reusable = true}, SHIFT(495), - [1953] = {.count = 1, .reusable = false}, SHIFT(497), - [1955] = {.count = 1, .reusable = true}, SHIFT(497), - [1957] = {.count = 1, .reusable = true}, SHIFT(496), - [1959] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .production_id = 64), - [1961] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .production_id = 64), - [1963] = {.count = 1, .reusable = true}, SHIFT(501), - [1965] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3, .production_id = 8), - [1967] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3, .production_id = 8), - [1969] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [1971] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [1973] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [1975] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [1977] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [1979] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [1981] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(396), - [1984] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5, .production_id = 65), - [1986] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 18), - [1988] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 36), - [1990] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), - [1992] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), - [1994] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), - [1996] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), - [1998] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 60), - [2000] = {.count = 1, .reusable = true}, SHIFT(505), - [2002] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2004] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5, .production_id = 48), - [2006] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5, .production_id = 48), - [2008] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [2010] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [2012] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [2014] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2016] = {.count = 1, .reusable = true}, SHIFT(506), - [2018] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(507), - [2021] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3, .production_id = 66), - [2023] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 65), - [2025] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5, .production_id = 65), - [2027] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 67), - [2029] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 67), - [2031] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 68), - [2033] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 68), - [2035] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 64), - [2037] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 64), - [2039] = {.count = 1, .reusable = true}, SHIFT(511), - [2041] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 69), - [2043] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 69), - [2045] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 70), - [2047] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 70), - [2049] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4, .production_id = 8), - [2051] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4, .production_id = 8), - [2053] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), - [2056] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3), - [2059] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(39), - [2064] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4), - [2067] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), - [2070] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), - [2073] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6), - [2076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7), - [2079] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9), - [2082] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), - [2085] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(12), - [2088] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(13), - [2091] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2093] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), - [2096] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), - [2099] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(134), - [2102] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(16), - [2105] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), - [2108] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), - [2111] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(20), - [2114] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(22), - [2117] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), - [2120] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), - [2123] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), - [2126] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), - [2129] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), - [2132] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), - [2135] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [2138] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [2141] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), - [2144] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), - [2147] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), - [2150] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), - [2153] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 50), - [2155] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5, .production_id = 65), - [2157] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [2159] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [2161] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 71), - [2163] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 71), - [2165] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 72), - [2167] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 72), - [2169] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 73), - [2171] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 73), - [2173] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 74), - [2175] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 74), - [2177] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9, .production_id = 75), - [2179] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9, .production_id = 75), - [2181] = {.count = 1, .reusable = false}, SHIFT(119), - [2183] = {.count = 1, .reusable = false}, SHIFT(519), - [2185] = {.count = 1, .reusable = true}, SHIFT(518), - [2187] = {.count = 1, .reusable = false}, SHIFT(558), - [2189] = {.count = 1, .reusable = true}, SHIFT(558), - [2191] = {.count = 1, .reusable = false}, SHIFT(559), - [2193] = {.count = 1, .reusable = true}, SHIFT(559), - [2195] = {.count = 1, .reusable = false}, SHIFT(560), - [2197] = {.count = 1, .reusable = true}, SHIFT(560), - [2199] = {.count = 1, .reusable = false}, SHIFT(561), - [2201] = {.count = 1, .reusable = true}, SHIFT(561), - [2203] = {.count = 1, .reusable = false}, SHIFT(562), - [2205] = {.count = 1, .reusable = true}, SHIFT(562), - [2207] = {.count = 1, .reusable = false}, SHIFT(563), - [2209] = {.count = 1, .reusable = true}, SHIFT(563), - [2211] = {.count = 1, .reusable = false}, SHIFT(564), - [2213] = {.count = 1, .reusable = true}, SHIFT(564), - [2215] = {.count = 1, .reusable = false}, SHIFT(565), - [2217] = {.count = 1, .reusable = true}, SHIFT(565), - [2219] = {.count = 1, .reusable = false}, SHIFT(566), - [2221] = {.count = 1, .reusable = true}, SHIFT(566), - [2223] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(868), - [2226] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(881), - [2229] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(869), - [2232] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1239), - [2235] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1163), - [2238] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(870), - [2241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1164), - [2244] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1240), - [2247] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(883), - [2250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1275), - [2253] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(874), - [2256] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1166), - [2259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(875), - [2262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1167), - [2265] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(876), - [2268] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1168), - [2271] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(881), - [2274] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(877), - [2277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(878), - [2280] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(879), - [2283] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(515), - [2286] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1169), - [2289] = {.count = 1, .reusable = false}, SHIFT(529), - [2291] = {.count = 1, .reusable = false}, SHIFT(535), - [2293] = {.count = 1, .reusable = true}, SHIFT(531), - [2295] = {.count = 1, .reusable = false}, SHIFT(534), - [2297] = {.count = 1, .reusable = false}, SHIFT(533), - [2299] = {.count = 1, .reusable = false}, SHIFT(536), - [2301] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3, .production_id = 14), - [2303] = {.count = 1, .reusable = true}, SHIFT(533), - [2305] = {.count = 1, .reusable = true}, SHIFT(530), - [2307] = {.count = 1, .reusable = false}, SHIFT(532), - [2309] = {.count = 1, .reusable = true}, SHIFT(537), - [2311] = {.count = 1, .reusable = false}, SHIFT(539), - [2313] = {.count = 1, .reusable = false}, SHIFT(578), - [2315] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1177), - [2318] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1148), - [2323] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1178), - [2326] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1236), - [2329] = {.count = 1, .reusable = false}, SHIFT(600), - [2331] = {.count = 1, .reusable = true}, SHIFT(600), - [2333] = {.count = 1, .reusable = true}, SHIFT(1176), - [2335] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5, .production_id = 59), - [2337] = {.count = 1, .reusable = false}, SHIFT(726), - [2339] = {.count = 1, .reusable = true}, SHIFT(802), - [2341] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(967), - [2344] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(958), - [2347] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1186), - [2350] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [2352] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1262), - [2355] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1188), - [2358] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(967), - [2361] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1189), - [2364] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(965), - [2367] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(957), - [2370] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1266), - [2373] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1039), - [2376] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1187), - [2379] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(969), - [2382] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1297), - [2385] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(961), - [2388] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(962), - [2391] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(963), - [2394] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1190), - [2397] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(964), - [2400] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(966), - [2403] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(632), - [2406] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1211), - [2409] = {.count = 1, .reusable = false}, SHIFT(672), - [2411] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1197), - [2414] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1157), - [2417] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1198), - [2420] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1238), - [2423] = {.count = 1, .reusable = false}, SHIFT(956), - [2425] = {.count = 1, .reusable = true}, SHIFT(634), - [2427] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1037), - [2430] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1047), - [2433] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1038), - [2436] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1271), - [2439] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1206), - [2442] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1104), - [2445] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1207), - [2448] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1267), - [2451] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1049), - [2454] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1298), - [2457] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1041), - [2460] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1208), - [2463] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1042), - [2466] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1209), - [2469] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1043), - [2472] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1210), - [2475] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1047), - [2478] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1044), - [2481] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1045), - [2484] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1046), - [2487] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(723), - [2490] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1226), - [2493] = {.count = 1, .reusable = false}, SHIFT(761), - [2495] = {.count = 1, .reusable = false}, SHIFT(823), - [2497] = {.count = 1, .reusable = true}, SHIFT(517), - [2499] = {.count = 1, .reusable = false}, SHIFT(520), - [2501] = {.count = 1, .reusable = false}, SHIFT(886), - [2503] = {.count = 1, .reusable = false}, SHIFT(522), - [2505] = {.count = 1, .reusable = true}, SHIFT(891), - [2507] = {.count = 1, .reusable = true}, SHIFT(523), - [2509] = {.count = 1, .reusable = true}, SHIFT(524), - [2511] = {.count = 1, .reusable = true}, SHIFT(960), - [2513] = {.count = 1, .reusable = true}, SHIFT(1195), - [2515] = {.count = 1, .reusable = false}, SHIFT(896), - [2517] = {.count = 1, .reusable = true}, SHIFT(896), - [2519] = {.count = 1, .reusable = true}, SHIFT(526), - [2521] = {.count = 1, .reusable = true}, SHIFT(528), - [2523] = {.count = 1, .reusable = false}, SHIFT(899), - [2525] = {.count = 1, .reusable = true}, SHIFT(1175), - [2527] = {.count = 1, .reusable = true}, SHIFT(899), - [2529] = {.count = 1, .reusable = true}, SHIFT(538), - [2531] = {.count = 1, .reusable = true}, SHIFT(540), - [2533] = {.count = 1, .reusable = true}, SHIFT(542), - [2535] = {.count = 1, .reusable = true}, SHIFT(545), - [2537] = {.count = 1, .reusable = true}, SHIFT(546), - [2539] = {.count = 1, .reusable = false}, SHIFT(547), - [2541] = {.count = 1, .reusable = true}, SHIFT(548), - [2543] = {.count = 1, .reusable = true}, SHIFT(549), - [2545] = {.count = 1, .reusable = false}, SHIFT(550), - [2547] = {.count = 1, .reusable = false}, SHIFT(551), - [2549] = {.count = 1, .reusable = true}, SHIFT(909), - [2551] = {.count = 1, .reusable = true}, SHIFT(910), - [2553] = {.count = 1, .reusable = true}, SHIFT(555), - [2555] = {.count = 1, .reusable = false}, SHIFT(911), - [2557] = {.count = 1, .reusable = false}, SHIFT(557), - [2559] = {.count = 1, .reusable = true}, SHIFT(913), - [2561] = {.count = 1, .reusable = true}, SHIFT(567), - [2563] = {.count = 1, .reusable = true}, SHIFT(570), - [2565] = {.count = 1, .reusable = true}, SHIFT(1196), - [2567] = {.count = 1, .reusable = true}, SHIFT(572), - [2569] = {.count = 1, .reusable = false}, SHIFT(573), - [2571] = {.count = 1, .reusable = true}, SHIFT(574), - [2573] = {.count = 1, .reusable = true}, SHIFT(575), - [2575] = {.count = 1, .reusable = false}, SHIFT(576), - [2577] = {.count = 1, .reusable = true}, SHIFT(577), - [2579] = {.count = 1, .reusable = true}, SHIFT(579), - [2581] = {.count = 1, .reusable = true}, SHIFT(580), - [2583] = {.count = 1, .reusable = false}, SHIFT(581), - [2585] = {.count = 1, .reusable = false}, SHIFT(929), - [2587] = {.count = 1, .reusable = false}, SHIFT(582), - [2589] = {.count = 1, .reusable = true}, SHIFT(583), - [2591] = {.count = 1, .reusable = true}, SHIFT(584), - [2593] = {.count = 1, .reusable = true}, SHIFT(585), - [2595] = {.count = 1, .reusable = false}, SHIFT(586), - [2597] = {.count = 1, .reusable = false}, SHIFT(587), - [2599] = {.count = 1, .reusable = true}, SHIFT(588), - [2601] = {.count = 1, .reusable = true}, SHIFT(589), - [2603] = {.count = 1, .reusable = true}, SHIFT(590), - [2605] = {.count = 1, .reusable = true}, SHIFT(591), - [2607] = {.count = 1, .reusable = true}, SHIFT(592), - [2609] = {.count = 1, .reusable = false}, SHIFT(937), - [2611] = {.count = 1, .reusable = true}, SHIFT(937), - [2613] = {.count = 1, .reusable = true}, SHIFT(593), - [2615] = {.count = 1, .reusable = false}, SHIFT(941), - [2617] = {.count = 1, .reusable = true}, SHIFT(941), - [2619] = {.count = 1, .reusable = true}, SHIFT(594), - [2621] = {.count = 1, .reusable = true}, SHIFT(595), - [2623] = {.count = 1, .reusable = true}, SHIFT(596), - [2625] = {.count = 1, .reusable = true}, SHIFT(598), - [2627] = {.count = 1, .reusable = true}, SHIFT(599), - [2629] = {.count = 1, .reusable = false}, SHIFT(601), - [2631] = {.count = 1, .reusable = true}, SHIFT(602), - [2633] = {.count = 1, .reusable = false}, SHIFT(603), - [2635] = {.count = 1, .reusable = true}, SHIFT(604), - [2637] = {.count = 1, .reusable = true}, SHIFT(605), - [2639] = {.count = 1, .reusable = true}, SHIFT(606), - [2641] = {.count = 1, .reusable = true}, SHIFT(608), - [2643] = {.count = 1, .reusable = false}, SHIFT(947), - [2645] = {.count = 1, .reusable = true}, SHIFT(947), - [2647] = {.count = 1, .reusable = true}, SHIFT(609), - [2649] = {.count = 1, .reusable = false}, SHIFT(949), - [2651] = {.count = 1, .reusable = true}, SHIFT(949), - [2653] = {.count = 1, .reusable = true}, SHIFT(610), - [2655] = {.count = 1, .reusable = true}, SHIFT(612), - [2657] = {.count = 1, .reusable = false}, SHIFT(952), - [2659] = {.count = 1, .reusable = true}, SHIFT(952), - [2661] = {.count = 1, .reusable = true}, SHIFT(613), - [2663] = {.count = 1, .reusable = true}, SHIFT(614), - [2665] = {.count = 1, .reusable = true}, SHIFT(615), - [2667] = {.count = 1, .reusable = true}, SHIFT(616), - [2669] = {.count = 1, .reusable = true}, SHIFT(619), - [2671] = {.count = 1, .reusable = true}, SHIFT(621), - [2673] = {.count = 1, .reusable = false}, SHIFT(954), - [2675] = {.count = 1, .reusable = true}, SHIFT(954), - [2677] = {.count = 1, .reusable = true}, SHIFT(622), - [2679] = {.count = 1, .reusable = true}, SHIFT(625), - [2681] = {.count = 1, .reusable = true}, SHIFT(629), - [2683] = {.count = 1, .reusable = true}, SHIFT(725), - [2685] = {.count = 1, .reusable = true}, SHIFT(633), - [2687] = {.count = 1, .reusable = false}, SHIFT(636), - [2689] = {.count = 1, .reusable = false}, SHIFT(972), - [2691] = {.count = 1, .reusable = false}, SHIFT(637), - [2693] = {.count = 1, .reusable = true}, SHIFT(976), - [2695] = {.count = 1, .reusable = true}, SHIFT(638), - [2697] = {.count = 1, .reusable = true}, SHIFT(639), - [2699] = {.count = 1, .reusable = true}, SHIFT(1040), - [2701] = {.count = 1, .reusable = true}, SHIFT(1215), - [2703] = {.count = 1, .reusable = false}, SHIFT(980), - [2705] = {.count = 1, .reusable = true}, SHIFT(980), - [2707] = {.count = 1, .reusable = true}, SHIFT(641), - [2709] = {.count = 1, .reusable = true}, SHIFT(643), - [2711] = {.count = 1, .reusable = true}, SHIFT(644), - [2713] = {.count = 1, .reusable = true}, SHIFT(645), - [2715] = {.count = 1, .reusable = true}, SHIFT(647), - [2717] = {.count = 1, .reusable = true}, SHIFT(649), - [2719] = {.count = 1, .reusable = true}, SHIFT(650), - [2721] = {.count = 1, .reusable = false}, SHIFT(651), - [2723] = {.count = 1, .reusable = true}, SHIFT(652), - [2725] = {.count = 1, .reusable = false}, SHIFT(653), - [2727] = {.count = 1, .reusable = false}, SHIFT(654), - [2729] = {.count = 1, .reusable = true}, SHIFT(992), - [2731] = {.count = 1, .reusable = true}, SHIFT(993), - [2733] = {.count = 1, .reusable = true}, SHIFT(658), - [2735] = {.count = 1, .reusable = false}, SHIFT(994), - [2737] = {.count = 1, .reusable = false}, SHIFT(660), - [2739] = {.count = 1, .reusable = true}, SHIFT(996), - [2741] = {.count = 1, .reusable = true}, SHIFT(661), - [2743] = {.count = 1, .reusable = true}, SHIFT(664), - [2745] = {.count = 1, .reusable = true}, SHIFT(666), - [2747] = {.count = 1, .reusable = false}, SHIFT(667), - [2749] = {.count = 1, .reusable = true}, SHIFT(668), - [2751] = {.count = 1, .reusable = true}, SHIFT(669), - [2753] = {.count = 1, .reusable = false}, SHIFT(670), - [2755] = {.count = 1, .reusable = true}, SHIFT(671), - [2757] = {.count = 1, .reusable = true}, SHIFT(673), - [2759] = {.count = 1, .reusable = true}, SHIFT(674), - [2761] = {.count = 1, .reusable = false}, SHIFT(675), - [2763] = {.count = 1, .reusable = false}, SHIFT(1010), - [2765] = {.count = 1, .reusable = false}, SHIFT(676), - [2767] = {.count = 1, .reusable = true}, SHIFT(677), - [2769] = {.count = 1, .reusable = false}, SHIFT(678), - [2771] = {.count = 1, .reusable = false}, SHIFT(679), - [2773] = {.count = 1, .reusable = true}, SHIFT(680), - [2775] = {.count = 1, .reusable = true}, SHIFT(681), - [2777] = {.count = 1, .reusable = true}, SHIFT(682), - [2779] = {.count = 1, .reusable = true}, SHIFT(683), - [2781] = {.count = 1, .reusable = true}, SHIFT(684), - [2783] = {.count = 1, .reusable = false}, SHIFT(1018), - [2785] = {.count = 1, .reusable = true}, SHIFT(1018), - [2787] = {.count = 1, .reusable = true}, SHIFT(685), - [2789] = {.count = 1, .reusable = false}, SHIFT(1022), - [2791] = {.count = 1, .reusable = true}, SHIFT(1022), - [2793] = {.count = 1, .reusable = true}, SHIFT(686), - [2795] = {.count = 1, .reusable = true}, SHIFT(687), - [2797] = {.count = 1, .reusable = true}, SHIFT(688), - [2799] = {.count = 1, .reusable = true}, SHIFT(690), - [2801] = {.count = 1, .reusable = true}, SHIFT(691), - [2803] = {.count = 1, .reusable = false}, SHIFT(692), - [2805] = {.count = 1, .reusable = true}, SHIFT(693), - [2807] = {.count = 1, .reusable = false}, SHIFT(694), - [2809] = {.count = 1, .reusable = true}, SHIFT(695), - [2811] = {.count = 1, .reusable = true}, SHIFT(696), - [2813] = {.count = 1, .reusable = true}, SHIFT(697), - [2815] = {.count = 1, .reusable = true}, SHIFT(699), - [2817] = {.count = 1, .reusable = false}, SHIFT(1028), - [2819] = {.count = 1, .reusable = true}, SHIFT(1028), - [2821] = {.count = 1, .reusable = true}, SHIFT(700), - [2823] = {.count = 1, .reusable = false}, SHIFT(1030), - [2825] = {.count = 1, .reusable = true}, SHIFT(1030), - [2827] = {.count = 1, .reusable = true}, SHIFT(701), - [2829] = {.count = 1, .reusable = true}, SHIFT(703), - [2831] = {.count = 1, .reusable = false}, SHIFT(1033), - [2833] = {.count = 1, .reusable = true}, SHIFT(1033), - [2835] = {.count = 1, .reusable = true}, SHIFT(704), - [2837] = {.count = 1, .reusable = true}, SHIFT(705), - [2839] = {.count = 1, .reusable = true}, SHIFT(706), - [2841] = {.count = 1, .reusable = true}, SHIFT(707), - [2843] = {.count = 1, .reusable = true}, SHIFT(710), - [2845] = {.count = 1, .reusable = true}, SHIFT(712), - [2847] = {.count = 1, .reusable = false}, SHIFT(1035), - [2849] = {.count = 1, .reusable = true}, SHIFT(1035), - [2851] = {.count = 1, .reusable = true}, SHIFT(713), - [2853] = {.count = 1, .reusable = true}, SHIFT(716), - [2855] = {.count = 1, .reusable = true}, SHIFT(720), - [2857] = {.count = 1, .reusable = true}, SHIFT(724), - [2859] = {.count = 1, .reusable = false}, SHIFT(727), - [2861] = {.count = 1, .reusable = false}, SHIFT(1052), - [2863] = {.count = 1, .reusable = false}, SHIFT(728), - [2865] = {.count = 1, .reusable = true}, SHIFT(1056), - [2867] = {.count = 1, .reusable = true}, SHIFT(729), - [2869] = {.count = 1, .reusable = true}, SHIFT(730), - [2871] = {.count = 1, .reusable = true}, SHIFT(1105), - [2873] = {.count = 1, .reusable = true}, SHIFT(1228), - [2875] = {.count = 1, .reusable = false}, SHIFT(1060), - [2877] = {.count = 1, .reusable = true}, SHIFT(1060), - [2879] = {.count = 1, .reusable = true}, SHIFT(732), - [2881] = {.count = 1, .reusable = true}, SHIFT(734), - [2883] = {.count = 1, .reusable = true}, SHIFT(735), - [2885] = {.count = 1, .reusable = true}, SHIFT(736), - [2887] = {.count = 1, .reusable = true}, SHIFT(738), - [2889] = {.count = 1, .reusable = true}, SHIFT(740), - [2891] = {.count = 1, .reusable = true}, SHIFT(741), - [2893] = {.count = 1, .reusable = false}, SHIFT(742), - [2895] = {.count = 1, .reusable = true}, SHIFT(743), - [2897] = {.count = 1, .reusable = false}, SHIFT(744), - [2899] = {.count = 1, .reusable = false}, SHIFT(745), - [2901] = {.count = 1, .reusable = true}, SHIFT(1071), - [2903] = {.count = 1, .reusable = true}, SHIFT(1072), - [2905] = {.count = 1, .reusable = true}, SHIFT(749), - [2907] = {.count = 1, .reusable = false}, SHIFT(1073), - [2909] = {.count = 1, .reusable = false}, SHIFT(751), + [1380] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), + [1382] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), + [1384] = {.count = 1, .reusable = true}, SHIFT(380), + [1386] = {.count = 1, .reusable = true}, SHIFT(381), + [1388] = {.count = 1, .reusable = false}, SHIFT(383), + [1390] = {.count = 1, .reusable = true}, SHIFT(383), + [1392] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [1394] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [1396] = {.count = 1, .reusable = true}, SHIFT(384), + [1398] = {.count = 1, .reusable = true}, SHIFT(386), + [1400] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .production_id = 41), + [1402] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .production_id = 41), + [1404] = {.count = 1, .reusable = true}, SHIFT(388), + [1406] = {.count = 1, .reusable = true}, SHIFT(389), + [1408] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [1410] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .production_id = 42), + [1412] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .production_id = 42), + [1414] = {.count = 1, .reusable = true}, SHIFT(391), + [1416] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), + [1418] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), + [1420] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4, .production_id = 43), + [1422] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4, .production_id = 43), + [1424] = {.count = 1, .reusable = false}, SHIFT(8), + [1426] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4, .production_id = 44), + [1428] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4, .production_id = 44), + [1430] = {.count = 1, .reusable = false}, SHIFT(392), + [1432] = {.count = 1, .reusable = true}, SHIFT(392), + [1434] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), + [1436] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), + [1438] = {.count = 1, .reusable = true}, SHIFT(393), + [1440] = {.count = 1, .reusable = false}, SHIFT(395), + [1442] = {.count = 1, .reusable = true}, SHIFT(395), + [1444] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 45), + [1446] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [1448] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3, .production_id = 46), + [1450] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 28), + [1452] = {.count = 1, .reusable = true}, SHIFT(396), + [1454] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [1456] = {.count = 1, .reusable = false}, SHIFT(399), + [1458] = {.count = 1, .reusable = true}, SHIFT(399), + [1460] = {.count = 1, .reusable = true}, SHIFT(397), + [1462] = {.count = 1, .reusable = true}, SHIFT(398), + [1464] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [1466] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4, .production_id = 48), + [1468] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4, .production_id = 48), + [1470] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 49), SHIFT_REPEAT(211), + [1473] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 49), + [1475] = {.count = 1, .reusable = false}, SHIFT(1175), + [1477] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1479] = {.count = 1, .reusable = false}, SHIFT(1137), + [1481] = {.count = 1, .reusable = false}, SHIFT(1176), + [1483] = {.count = 1, .reusable = false}, SHIFT(1214), + [1485] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 21), + [1487] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 21), + [1489] = {.count = 1, .reusable = false}, SHIFT(402), + [1491] = {.count = 1, .reusable = false}, SHIFT(403), + [1493] = {.count = 1, .reusable = true}, SHIFT(405), + [1495] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 16), + [1497] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .production_id = 16), + [1499] = {.count = 1, .reusable = false}, SHIFT(406), + [1501] = {.count = 1, .reusable = true}, SHIFT(408), + [1503] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [1505] = {.count = 1, .reusable = true}, SHIFT(410), + [1507] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), + [1509] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 33), + [1511] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 33), + [1513] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3, .production_id = 29), + [1515] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3, .production_id = 29), + [1517] = {.count = 1, .reusable = false}, SHIFT(414), + [1519] = {.count = 1, .reusable = true}, SHIFT(414), + [1521] = {.count = 1, .reusable = true}, SHIFT(412), + [1523] = {.count = 1, .reusable = true}, SHIFT(413), + [1525] = {.count = 1, .reusable = true}, SHIFT(416), + [1527] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [1529] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [1531] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .production_id = 16), + [1533] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .production_id = 50), + [1535] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .production_id = 50), + [1537] = {.count = 1, .reusable = false}, SHIFT(420), + [1539] = {.count = 1, .reusable = true}, SHIFT(420), + [1541] = {.count = 1, .reusable = true}, SHIFT(421), + [1543] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [1545] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [1547] = {.count = 1, .reusable = true}, SHIFT(422), + [1549] = {.count = 1, .reusable = true}, SHIFT(423), + [1551] = {.count = 1, .reusable = true}, SHIFT(425), + [1553] = {.count = 1, .reusable = true}, SHIFT(333), + [1555] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4, .production_id = 51), + [1557] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 45), + [1559] = {.count = 1, .reusable = true}, SHIFT(427), + [1561] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), + [1563] = {.count = 1, .reusable = true}, SHIFT(428), + [1565] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [1567] = {.count = 1, .reusable = false}, SHIFT(431), + [1569] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2, .production_id = 29), + [1571] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 52), + [1573] = {.count = 1, .reusable = true}, SHIFT(432), + [1575] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [1577] = {.count = 1, .reusable = true}, SHIFT(433), + [1579] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), + [1581] = {.count = 1, .reusable = false}, SHIFT(436), + [1583] = {.count = 1, .reusable = true}, SHIFT(436), + [1585] = {.count = 1, .reusable = true}, SHIFT(434), + [1587] = {.count = 1, .reusable = true}, SHIFT(435), + [1589] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 45), + [1591] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [1593] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 28), + [1595] = {.count = 1, .reusable = true}, SHIFT(437), + [1597] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), + [1599] = {.count = 1, .reusable = false}, SHIFT(440), + [1601] = {.count = 1, .reusable = true}, SHIFT(440), + [1603] = {.count = 1, .reusable = true}, SHIFT(438), + [1605] = {.count = 1, .reusable = true}, SHIFT(439), + [1607] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 53), + [1609] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 53), + [1611] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 49), SHIFT_REPEAT(257), + [1614] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 49), + [1616] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5, .production_id = 54), + [1618] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5, .production_id = 54), + [1620] = {.count = 1, .reusable = true}, SHIFT(441), + [1622] = {.count = 1, .reusable = true}, SHIFT(443), + [1624] = {.count = 1, .reusable = false}, SHIFT(445), + [1626] = {.count = 1, .reusable = true}, SHIFT(445), + [1628] = {.count = 1, .reusable = true}, SHIFT(444), + [1630] = {.count = 1, .reusable = false}, SHIFT(448), + [1632] = {.count = 1, .reusable = true}, SHIFT(448), + [1634] = {.count = 1, .reusable = true}, SHIFT(447), + [1636] = {.count = 1, .reusable = true}, SHIFT(450), + [1638] = {.count = 1, .reusable = true}, SHIFT(452), + [1640] = {.count = 1, .reusable = false}, SHIFT(454), + [1642] = {.count = 1, .reusable = true}, SHIFT(454), + [1644] = {.count = 1, .reusable = true}, SHIFT(453), + [1646] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), + [1648] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .production_id = 55), + [1650] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [1652] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [1654] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1656] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1658] = {.count = 1, .reusable = true}, SHIFT(456), + [1660] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), + [1662] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), + [1664] = {.count = 1, .reusable = false}, SHIFT(506), + [1666] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), + [1668] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), + [1670] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1084), + [1673] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(275), + [1676] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1092), + [1679] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1249), + [1682] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1201), + [1685] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(8), + [1688] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(10), + [1691] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(14), + [1694] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(11), + [1697] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), + [1699] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(13), + [1702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(277), + [1705] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(954), + [1708] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1275), + [1711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1087), + [1714] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(10), + [1717] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1092), + [1720] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(26), + [1723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1088), + [1726] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1202), + [1729] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1089), + [1732] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1090), + [1735] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1091), + [1738] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(786), + [1741] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(33), + [1744] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3, .production_id = 57), + [1746] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [1748] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [1750] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [1752] = {.count = 1, .reusable = true}, SHIFT(458), + [1754] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(459), + [1757] = {.count = 1, .reusable = true}, SHIFT(460), + [1759] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [1761] = {.count = 1, .reusable = true}, SHIFT(461), + [1763] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), + [1765] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), + [1767] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1769] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), + [1771] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), + [1773] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(291), + [1776] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5, .production_id = 59), + [1778] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 60), + [1780] = {.count = 1, .reusable = true}, SHIFT(463), + [1782] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [1784] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [1786] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(32), + [1789] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1791] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .production_id = 16), + [1793] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 21), + [1795] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 21), + [1797] = {.count = 1, .reusable = true}, SHIFT(466), + [1799] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 40), + [1801] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 40), + [1803] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 16), + [1805] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 16), + [1807] = {.count = 1, .reusable = true}, SHIFT(467), + [1809] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [1811] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [1813] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 45), + [1815] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [1817] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 28), + [1819] = {.count = 1, .reusable = true}, SHIFT(468), + [1821] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [1823] = {.count = 1, .reusable = false}, SHIFT(471), + [1825] = {.count = 1, .reusable = true}, SHIFT(471), + [1827] = {.count = 1, .reusable = true}, SHIFT(469), + [1829] = {.count = 1, .reusable = true}, SHIFT(470), + [1831] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4, .production_id = 29), + [1833] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4, .production_id = 29), + [1835] = {.count = 1, .reusable = true}, SHIFT(472), + [1837] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 49), SHIFT_REPEAT(322), + [1840] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 49), + [1842] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .production_id = 50), + [1844] = {.count = 1, .reusable = true}, SHIFT(473), + [1846] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [1848] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [1850] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .production_id = 61), + [1852] = {.count = 1, .reusable = false}, SHIFT(475), + [1854] = {.count = 1, .reusable = true}, SHIFT(474), + [1856] = {.count = 1, .reusable = true}, SHIFT(475), + [1858] = {.count = 1, .reusable = true}, SHIFT(477), + [1860] = {.count = 1, .reusable = false}, SHIFT(479), + [1862] = {.count = 1, .reusable = true}, SHIFT(479), + [1864] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [1866] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(333), + [1869] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(330), + [1872] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [1874] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), + [1876] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(339), + [1879] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(70), + [1883] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [1886] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 62), + [1888] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 60), + [1890] = {.count = 1, .reusable = true}, SHIFT(481), + [1892] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), + [1894] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 60), + [1896] = {.count = 1, .reusable = true}, SHIFT(482), + [1898] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), + [1900] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6, .production_id = 63), + [1902] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6, .production_id = 63), + [1904] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [1906] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [1908] = {.count = 1, .reusable = true}, SHIFT(485), + [1910] = {.count = 1, .reusable = true}, SHIFT(487), + [1912] = {.count = 1, .reusable = false}, SHIFT(489), + [1914] = {.count = 1, .reusable = true}, SHIFT(489), + [1916] = {.count = 1, .reusable = true}, SHIFT(488), + [1918] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6, .production_id = 64), + [1920] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6, .production_id = 64), + [1922] = {.count = 1, .reusable = true}, SHIFT(493), + [1924] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3, .production_id = 8), + [1926] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3, .production_id = 8), + [1928] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [1930] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [1932] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [1934] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [1936] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [1938] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [1940] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(388), + [1943] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5, .production_id = 65), + [1945] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 16), + [1947] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1949] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), + [1951] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 55), + [1953] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), + [1955] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), + [1957] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 60), + [1959] = {.count = 1, .reusable = true}, SHIFT(497), + [1961] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), + [1963] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5, .production_id = 48), + [1965] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5, .production_id = 48), + [1967] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [1969] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [1971] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [1973] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [1975] = {.count = 1, .reusable = true}, SHIFT(498), + [1977] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(499), + [1980] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3, .production_id = 66), + [1982] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 65), + [1984] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5, .production_id = 65), + [1986] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 67), + [1988] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 67), + [1990] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 68), + [1992] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 68), + [1994] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 64), + [1996] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 64), + [1998] = {.count = 1, .reusable = true}, SHIFT(503), + [2000] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 69), + [2002] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 69), + [2004] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7, .production_id = 70), + [2006] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7, .production_id = 70), + [2008] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4, .production_id = 8), + [2010] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4, .production_id = 8), + [2012] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), + [2015] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3), + [2018] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2020] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), + [2023] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4), + [2026] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), + [2029] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5), + [2032] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6), + [2035] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8), + [2038] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(10), + [2041] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), + [2044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(12), + [2047] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [2049] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(13), + [2052] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), + [2055] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(130), + [2058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(506), + [2061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(16), + [2064] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), + [2067] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(10), + [2070] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(20), + [2073] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(22), + [2076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), + [2079] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), + [2082] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), + [2085] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), + [2088] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), + [2091] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [2094] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [2097] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [2100] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [2103] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), + [2106] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), + [2109] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 50), + [2111] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5, .production_id = 65), + [2113] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [2115] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [2117] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 71), + [2119] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 71), + [2121] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 72), + [2123] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 72), + [2125] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 73), + [2127] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 73), + [2129] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8, .production_id = 74), + [2131] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8, .production_id = 74), + [2133] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9, .production_id = 75), + [2135] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9, .production_id = 75), + [2137] = {.count = 1, .reusable = false}, SHIFT(114), + [2139] = {.count = 1, .reusable = false}, SHIFT(870), + [2141] = {.count = 1, .reusable = false}, SHIFT(549), + [2143] = {.count = 1, .reusable = true}, SHIFT(549), + [2145] = {.count = 1, .reusable = false}, SHIFT(550), + [2147] = {.count = 1, .reusable = true}, SHIFT(550), + [2149] = {.count = 1, .reusable = false}, SHIFT(551), + [2151] = {.count = 1, .reusable = true}, SHIFT(551), + [2153] = {.count = 1, .reusable = false}, SHIFT(552), + [2155] = {.count = 1, .reusable = true}, SHIFT(552), + [2157] = {.count = 1, .reusable = false}, SHIFT(553), + [2159] = {.count = 1, .reusable = true}, SHIFT(553), + [2161] = {.count = 1, .reusable = false}, SHIFT(554), + [2163] = {.count = 1, .reusable = true}, SHIFT(554), + [2165] = {.count = 1, .reusable = false}, SHIFT(555), + [2167] = {.count = 1, .reusable = true}, SHIFT(555), + [2169] = {.count = 1, .reusable = false}, SHIFT(556), + [2171] = {.count = 1, .reusable = true}, SHIFT(556), + [2173] = {.count = 1, .reusable = false}, SHIFT(557), + [2175] = {.count = 1, .reusable = true}, SHIFT(557), + [2177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(866), + [2180] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1143), + [2183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1216), + [2186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(858), + [2189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1146), + [2192] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(866), + [2195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1147), + [2198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(863), + [2201] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(853), + [2204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1215), + [2207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(854), + [2210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1144), + [2213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(868), + [2216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1250), + [2219] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(859), + [2222] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(860), + [2225] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(861), + [2228] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1148), + [2231] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(862), + [2234] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(864), + [2237] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(507), + [2240] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1149), + [2243] = {.count = 1, .reusable = false}, SHIFT(520), + [2245] = {.count = 1, .reusable = false}, SHIFT(526), + [2247] = {.count = 1, .reusable = true}, SHIFT(522), + [2249] = {.count = 1, .reusable = false}, SHIFT(525), + [2251] = {.count = 1, .reusable = false}, SHIFT(524), + [2253] = {.count = 1, .reusable = false}, SHIFT(527), + [2255] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3, .production_id = 19), + [2257] = {.count = 1, .reusable = true}, SHIFT(524), + [2259] = {.count = 1, .reusable = true}, SHIFT(521), + [2261] = {.count = 1, .reusable = false}, SHIFT(523), + [2263] = {.count = 1, .reusable = true}, SHIFT(528), + [2265] = {.count = 1, .reusable = false}, SHIFT(530), + [2267] = {.count = 1, .reusable = false}, SHIFT(569), + [2269] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1156), + [2272] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2274] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1128), + [2277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1157), + [2280] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1212), + [2283] = {.count = 1, .reusable = false}, SHIFT(590), + [2285] = {.count = 1, .reusable = true}, SHIFT(590), + [2287] = {.count = 1, .reusable = true}, SHIFT(1155), + [2289] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5, .production_id = 59), + [2291] = {.count = 1, .reusable = false}, SHIFT(1033), + [2293] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(950), + [2296] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1165), + [2299] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [2301] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1237), + [2304] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(943), + [2307] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1167), + [2310] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(950), + [2313] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1168), + [2316] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(948), + [2319] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(940), + [2322] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1241), + [2325] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1020), + [2328] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1166), + [2331] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(952), + [2334] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1273), + [2337] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(944), + [2340] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(945), + [2343] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(946), + [2346] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1169), + [2349] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(947), + [2352] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(949), + [2355] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(622), + [2358] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1189), + [2361] = {.count = 1, .reusable = false}, SHIFT(661), + [2363] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1175), + [2366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1137), + [2369] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1176), + [2372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1214), + [2375] = {.count = 1, .reusable = false}, SHIFT(1095), + [2377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1029), + [2380] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1184), + [2383] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1242), + [2386] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1022), + [2389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1186), + [2392] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1029), + [2395] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1187), + [2398] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1027), + [2401] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1019), + [2404] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1246), + [2407] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1085), + [2410] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1185), + [2413] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1031), + [2416] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1274), + [2419] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1023), + [2422] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1024), + [2425] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1025), + [2428] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1188), + [2431] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1026), + [2434] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1028), + [2437] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(711), + [2440] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1203), + [2443] = {.count = 1, .reusable = false}, SHIFT(748), + [2445] = {.count = 1, .reusable = false}, SHIFT(809), + [2447] = {.count = 1, .reusable = true}, SHIFT(509), + [2449] = {.count = 1, .reusable = false}, SHIFT(510), + [2451] = {.count = 1, .reusable = false}, SHIFT(872), + [2453] = {.count = 1, .reusable = true}, SHIFT(877), + [2455] = {.count = 1, .reusable = false}, SHIFT(512), + [2457] = {.count = 1, .reusable = true}, SHIFT(513), + [2459] = {.count = 1, .reusable = true}, SHIFT(514), + [2461] = {.count = 1, .reusable = true}, SHIFT(942), + [2463] = {.count = 1, .reusable = true}, SHIFT(515), + [2465] = {.count = 1, .reusable = false}, SHIFT(882), + [2467] = {.count = 1, .reusable = true}, SHIFT(882), + [2469] = {.count = 1, .reusable = true}, SHIFT(517), + [2471] = {.count = 1, .reusable = true}, SHIFT(519), + [2473] = {.count = 1, .reusable = false}, SHIFT(884), + [2475] = {.count = 1, .reusable = true}, SHIFT(1154), + [2477] = {.count = 1, .reusable = true}, SHIFT(884), + [2479] = {.count = 1, .reusable = true}, SHIFT(529), + [2481] = {.count = 1, .reusable = true}, SHIFT(531), + [2483] = {.count = 1, .reusable = true}, SHIFT(533), + [2485] = {.count = 1, .reusable = true}, SHIFT(534), + [2487] = {.count = 1, .reusable = true}, SHIFT(535), + [2489] = {.count = 1, .reusable = false}, SHIFT(536), + [2491] = {.count = 1, .reusable = true}, SHIFT(537), + [2493] = {.count = 1, .reusable = true}, SHIFT(538), + [2495] = {.count = 1, .reusable = false}, SHIFT(539), + [2497] = {.count = 1, .reusable = false}, SHIFT(542), + [2499] = {.count = 1, .reusable = true}, SHIFT(894), + [2501] = {.count = 1, .reusable = true}, SHIFT(895), + [2503] = {.count = 1, .reusable = true}, SHIFT(546), + [2505] = {.count = 1, .reusable = false}, SHIFT(896), + [2507] = {.count = 1, .reusable = false}, SHIFT(548), + [2509] = {.count = 1, .reusable = true}, SHIFT(558), + [2511] = {.count = 1, .reusable = true}, SHIFT(561), + [2513] = {.count = 1, .reusable = true}, SHIFT(1174), + [2515] = {.count = 1, .reusable = true}, SHIFT(563), + [2517] = {.count = 1, .reusable = false}, SHIFT(564), + [2519] = {.count = 1, .reusable = true}, SHIFT(565), + [2521] = {.count = 1, .reusable = true}, SHIFT(566), + [2523] = {.count = 1, .reusable = false}, SHIFT(567), + [2525] = {.count = 1, .reusable = true}, SHIFT(568), + [2527] = {.count = 1, .reusable = true}, SHIFT(570), + [2529] = {.count = 1, .reusable = true}, SHIFT(571), + [2531] = {.count = 1, .reusable = false}, SHIFT(572), + [2533] = {.count = 1, .reusable = false}, SHIFT(913), + [2535] = {.count = 1, .reusable = true}, SHIFT(573), + [2537] = {.count = 1, .reusable = true}, SHIFT(574), + [2539] = {.count = 1, .reusable = true}, SHIFT(575), + [2541] = {.count = 1, .reusable = false}, SHIFT(576), + [2543] = {.count = 1, .reusable = false}, SHIFT(577), + [2545] = {.count = 1, .reusable = true}, SHIFT(578), + [2547] = {.count = 1, .reusable = true}, SHIFT(579), + [2549] = {.count = 1, .reusable = true}, SHIFT(580), + [2551] = {.count = 1, .reusable = true}, SHIFT(581), + [2553] = {.count = 1, .reusable = true}, SHIFT(582), + [2555] = {.count = 1, .reusable = false}, SHIFT(921), + [2557] = {.count = 1, .reusable = true}, SHIFT(921), + [2559] = {.count = 1, .reusable = true}, SHIFT(583), + [2561] = {.count = 1, .reusable = false}, SHIFT(925), + [2563] = {.count = 1, .reusable = true}, SHIFT(925), + [2565] = {.count = 1, .reusable = true}, SHIFT(584), + [2567] = {.count = 1, .reusable = true}, SHIFT(585), + [2569] = {.count = 1, .reusable = true}, SHIFT(586), + [2571] = {.count = 1, .reusable = true}, SHIFT(588), + [2573] = {.count = 1, .reusable = true}, SHIFT(589), + [2575] = {.count = 1, .reusable = false}, SHIFT(591), + [2577] = {.count = 1, .reusable = true}, SHIFT(592), + [2579] = {.count = 1, .reusable = false}, SHIFT(593), + [2581] = {.count = 1, .reusable = true}, SHIFT(594), + [2583] = {.count = 1, .reusable = true}, SHIFT(595), + [2585] = {.count = 1, .reusable = true}, SHIFT(596), + [2587] = {.count = 1, .reusable = true}, SHIFT(598), + [2589] = {.count = 1, .reusable = false}, SHIFT(931), + [2591] = {.count = 1, .reusable = true}, SHIFT(931), + [2593] = {.count = 1, .reusable = true}, SHIFT(599), + [2595] = {.count = 1, .reusable = false}, SHIFT(933), + [2597] = {.count = 1, .reusable = true}, SHIFT(933), + [2599] = {.count = 1, .reusable = true}, SHIFT(600), + [2601] = {.count = 1, .reusable = true}, SHIFT(602), + [2603] = {.count = 1, .reusable = false}, SHIFT(936), + [2605] = {.count = 1, .reusable = true}, SHIFT(936), + [2607] = {.count = 1, .reusable = true}, SHIFT(603), + [2609] = {.count = 1, .reusable = true}, SHIFT(604), + [2611] = {.count = 1, .reusable = true}, SHIFT(605), + [2613] = {.count = 1, .reusable = true}, SHIFT(606), + [2615] = {.count = 1, .reusable = true}, SHIFT(609), + [2617] = {.count = 1, .reusable = true}, SHIFT(611), + [2619] = {.count = 1, .reusable = false}, SHIFT(938), + [2621] = {.count = 1, .reusable = true}, SHIFT(938), + [2623] = {.count = 1, .reusable = true}, SHIFT(612), + [2625] = {.count = 1, .reusable = true}, SHIFT(615), + [2627] = {.count = 1, .reusable = true}, SHIFT(619), + [2629] = {.count = 1, .reusable = true}, SHIFT(623), + [2631] = {.count = 1, .reusable = false}, SHIFT(624), + [2633] = {.count = 1, .reusable = false}, SHIFT(956), + [2635] = {.count = 1, .reusable = true}, SHIFT(960), + [2637] = {.count = 1, .reusable = false}, SHIFT(625), + [2639] = {.count = 1, .reusable = true}, SHIFT(626), + [2641] = {.count = 1, .reusable = true}, SHIFT(627), + [2643] = {.count = 1, .reusable = true}, SHIFT(1021), + [2645] = {.count = 1, .reusable = true}, SHIFT(628), + [2647] = {.count = 1, .reusable = false}, SHIFT(964), + [2649] = {.count = 1, .reusable = true}, SHIFT(964), + [2651] = {.count = 1, .reusable = true}, SHIFT(630), + [2653] = {.count = 1, .reusable = true}, SHIFT(632), + [2655] = {.count = 1, .reusable = true}, SHIFT(633), + [2657] = {.count = 1, .reusable = true}, SHIFT(634), + [2659] = {.count = 1, .reusable = true}, SHIFT(636), + [2661] = {.count = 1, .reusable = true}, SHIFT(790), + [2663] = {.count = 1, .reusable = true}, SHIFT(637), + [2665] = {.count = 1, .reusable = true}, SHIFT(638), + [2667] = {.count = 1, .reusable = false}, SHIFT(639), + [2669] = {.count = 1, .reusable = true}, SHIFT(640), + [2671] = {.count = 1, .reusable = false}, SHIFT(641), + [2673] = {.count = 1, .reusable = false}, SHIFT(643), + [2675] = {.count = 1, .reusable = true}, SHIFT(975), + [2677] = {.count = 1, .reusable = true}, SHIFT(976), + [2679] = {.count = 1, .reusable = true}, SHIFT(647), + [2681] = {.count = 1, .reusable = false}, SHIFT(977), + [2683] = {.count = 1, .reusable = false}, SHIFT(649), + [2685] = {.count = 1, .reusable = true}, SHIFT(650), + [2687] = {.count = 1, .reusable = true}, SHIFT(653), + [2689] = {.count = 1, .reusable = true}, SHIFT(655), + [2691] = {.count = 1, .reusable = false}, SHIFT(656), + [2693] = {.count = 1, .reusable = true}, SHIFT(657), + [2695] = {.count = 1, .reusable = true}, SHIFT(658), + [2697] = {.count = 1, .reusable = false}, SHIFT(659), + [2699] = {.count = 1, .reusable = true}, SHIFT(660), + [2701] = {.count = 1, .reusable = true}, SHIFT(662), + [2703] = {.count = 1, .reusable = true}, SHIFT(663), + [2705] = {.count = 1, .reusable = false}, SHIFT(664), + [2707] = {.count = 1, .reusable = false}, SHIFT(992), + [2709] = {.count = 1, .reusable = true}, SHIFT(665), + [2711] = {.count = 1, .reusable = false}, SHIFT(666), + [2713] = {.count = 1, .reusable = false}, SHIFT(667), + [2715] = {.count = 1, .reusable = true}, SHIFT(668), + [2717] = {.count = 1, .reusable = true}, SHIFT(669), + [2719] = {.count = 1, .reusable = true}, SHIFT(670), + [2721] = {.count = 1, .reusable = true}, SHIFT(671), + [2723] = {.count = 1, .reusable = true}, SHIFT(672), + [2725] = {.count = 1, .reusable = false}, SHIFT(1000), + [2727] = {.count = 1, .reusable = true}, SHIFT(1000), + [2729] = {.count = 1, .reusable = true}, SHIFT(673), + [2731] = {.count = 1, .reusable = false}, SHIFT(1004), + [2733] = {.count = 1, .reusable = true}, SHIFT(1004), + [2735] = {.count = 1, .reusable = true}, SHIFT(674), + [2737] = {.count = 1, .reusable = true}, SHIFT(675), + [2739] = {.count = 1, .reusable = true}, SHIFT(676), + [2741] = {.count = 1, .reusable = true}, SHIFT(678), + [2743] = {.count = 1, .reusable = true}, SHIFT(679), + [2745] = {.count = 1, .reusable = false}, SHIFT(680), + [2747] = {.count = 1, .reusable = true}, SHIFT(681), + [2749] = {.count = 1, .reusable = false}, SHIFT(682), + [2751] = {.count = 1, .reusable = true}, SHIFT(683), + [2753] = {.count = 1, .reusable = true}, SHIFT(684), + [2755] = {.count = 1, .reusable = true}, SHIFT(685), + [2757] = {.count = 1, .reusable = true}, SHIFT(687), + [2759] = {.count = 1, .reusable = false}, SHIFT(1010), + [2761] = {.count = 1, .reusable = true}, SHIFT(1010), + [2763] = {.count = 1, .reusable = true}, SHIFT(688), + [2765] = {.count = 1, .reusable = false}, SHIFT(1012), + [2767] = {.count = 1, .reusable = true}, SHIFT(1012), + [2769] = {.count = 1, .reusable = true}, SHIFT(689), + [2771] = {.count = 1, .reusable = true}, SHIFT(691), + [2773] = {.count = 1, .reusable = false}, SHIFT(1015), + [2775] = {.count = 1, .reusable = true}, SHIFT(1015), + [2777] = {.count = 1, .reusable = true}, SHIFT(692), + [2779] = {.count = 1, .reusable = true}, SHIFT(693), + [2781] = {.count = 1, .reusable = true}, SHIFT(694), + [2783] = {.count = 1, .reusable = true}, SHIFT(695), + [2785] = {.count = 1, .reusable = true}, SHIFT(698), + [2787] = {.count = 1, .reusable = true}, SHIFT(700), + [2789] = {.count = 1, .reusable = false}, SHIFT(1017), + [2791] = {.count = 1, .reusable = true}, SHIFT(1017), + [2793] = {.count = 1, .reusable = true}, SHIFT(701), + [2795] = {.count = 1, .reusable = true}, SHIFT(704), + [2797] = {.count = 1, .reusable = true}, SHIFT(708), + [2799] = {.count = 1, .reusable = true}, SHIFT(712), + [2801] = {.count = 1, .reusable = false}, SHIFT(713), + [2803] = {.count = 1, .reusable = false}, SHIFT(1035), + [2805] = {.count = 1, .reusable = true}, SHIFT(1039), + [2807] = {.count = 1, .reusable = false}, SHIFT(714), + [2809] = {.count = 1, .reusable = true}, SHIFT(715), + [2811] = {.count = 1, .reusable = true}, SHIFT(716), + [2813] = {.count = 1, .reusable = true}, SHIFT(1086), + [2815] = {.count = 1, .reusable = true}, SHIFT(717), + [2817] = {.count = 1, .reusable = false}, SHIFT(1043), + [2819] = {.count = 1, .reusable = true}, SHIFT(1043), + [2821] = {.count = 1, .reusable = true}, SHIFT(719), + [2823] = {.count = 1, .reusable = true}, SHIFT(721), + [2825] = {.count = 1, .reusable = true}, SHIFT(722), + [2827] = {.count = 1, .reusable = true}, SHIFT(723), + [2829] = {.count = 1, .reusable = true}, SHIFT(725), + [2831] = {.count = 1, .reusable = true}, SHIFT(726), + [2833] = {.count = 1, .reusable = true}, SHIFT(727), + [2835] = {.count = 1, .reusable = false}, SHIFT(728), + [2837] = {.count = 1, .reusable = true}, SHIFT(729), + [2839] = {.count = 1, .reusable = false}, SHIFT(730), + [2841] = {.count = 1, .reusable = false}, SHIFT(732), + [2843] = {.count = 1, .reusable = true}, SHIFT(1053), + [2845] = {.count = 1, .reusable = true}, SHIFT(1054), + [2847] = {.count = 1, .reusable = true}, SHIFT(736), + [2849] = {.count = 1, .reusable = false}, SHIFT(1055), + [2851] = {.count = 1, .reusable = false}, SHIFT(738), + [2853] = {.count = 1, .reusable = true}, SHIFT(739), + [2855] = {.count = 1, .reusable = true}, SHIFT(1193), + [2857] = {.count = 1, .reusable = true}, SHIFT(742), + [2859] = {.count = 1, .reusable = false}, SHIFT(743), + [2861] = {.count = 1, .reusable = true}, SHIFT(744), + [2863] = {.count = 1, .reusable = true}, SHIFT(745), + [2865] = {.count = 1, .reusable = false}, SHIFT(746), + [2867] = {.count = 1, .reusable = true}, SHIFT(747), + [2869] = {.count = 1, .reusable = true}, SHIFT(749), + [2871] = {.count = 1, .reusable = true}, SHIFT(750), + [2873] = {.count = 1, .reusable = false}, SHIFT(751), + [2875] = {.count = 1, .reusable = false}, SHIFT(1066), + [2877] = {.count = 1, .reusable = true}, SHIFT(752), + [2879] = {.count = 1, .reusable = true}, SHIFT(753), + [2881] = {.count = 1, .reusable = true}, SHIFT(754), + [2883] = {.count = 1, .reusable = true}, SHIFT(755), + [2885] = {.count = 1, .reusable = false}, SHIFT(1068), + [2887] = {.count = 1, .reusable = true}, SHIFT(1068), + [2889] = {.count = 1, .reusable = true}, SHIFT(756), + [2891] = {.count = 1, .reusable = false}, SHIFT(1072), + [2893] = {.count = 1, .reusable = true}, SHIFT(1072), + [2895] = {.count = 1, .reusable = true}, SHIFT(757), + [2897] = {.count = 1, .reusable = true}, SHIFT(758), + [2899] = {.count = 1, .reusable = true}, SHIFT(759), + [2901] = {.count = 1, .reusable = true}, SHIFT(761), + [2903] = {.count = 1, .reusable = true}, SHIFT(762), + [2905] = {.count = 1, .reusable = true}, SHIFT(763), + [2907] = {.count = 1, .reusable = true}, SHIFT(765), + [2909] = {.count = 1, .reusable = false}, SHIFT(1075), [2911] = {.count = 1, .reusable = true}, SHIFT(1075), - [2913] = {.count = 1, .reusable = true}, SHIFT(752), - [2915] = {.count = 1, .reusable = true}, SHIFT(1216), - [2917] = {.count = 1, .reusable = true}, SHIFT(755), - [2919] = {.count = 1, .reusable = false}, SHIFT(756), - [2921] = {.count = 1, .reusable = true}, SHIFT(757), - [2923] = {.count = 1, .reusable = true}, SHIFT(758), - [2925] = {.count = 1, .reusable = false}, SHIFT(759), - [2927] = {.count = 1, .reusable = true}, SHIFT(760), - [2929] = {.count = 1, .reusable = true}, SHIFT(762), - [2931] = {.count = 1, .reusable = true}, SHIFT(763), - [2933] = {.count = 1, .reusable = false}, SHIFT(764), - [2935] = {.count = 1, .reusable = false}, SHIFT(1085), - [2937] = {.count = 1, .reusable = false}, SHIFT(765), - [2939] = {.count = 1, .reusable = true}, SHIFT(766), - [2941] = {.count = 1, .reusable = true}, SHIFT(767), - [2943] = {.count = 1, .reusable = true}, SHIFT(768), - [2945] = {.count = 1, .reusable = true}, SHIFT(769), - [2947] = {.count = 1, .reusable = false}, SHIFT(1087), - [2949] = {.count = 1, .reusable = true}, SHIFT(1087), - [2951] = {.count = 1, .reusable = true}, SHIFT(770), - [2953] = {.count = 1, .reusable = false}, SHIFT(1091), - [2955] = {.count = 1, .reusable = true}, SHIFT(1091), - [2957] = {.count = 1, .reusable = true}, SHIFT(771), - [2959] = {.count = 1, .reusable = true}, SHIFT(772), - [2961] = {.count = 1, .reusable = true}, SHIFT(773), - [2963] = {.count = 1, .reusable = true}, SHIFT(775), - [2965] = {.count = 1, .reusable = true}, SHIFT(776), - [2967] = {.count = 1, .reusable = true}, SHIFT(777), - [2969] = {.count = 1, .reusable = true}, SHIFT(779), - [2971] = {.count = 1, .reusable = false}, SHIFT(1094), - [2973] = {.count = 1, .reusable = true}, SHIFT(1094), - [2975] = {.count = 1, .reusable = true}, SHIFT(780), - [2977] = {.count = 1, .reusable = false}, SHIFT(1096), - [2979] = {.count = 1, .reusable = true}, SHIFT(1096), - [2981] = {.count = 1, .reusable = true}, SHIFT(781), - [2983] = {.count = 1, .reusable = true}, SHIFT(783), - [2985] = {.count = 1, .reusable = false}, SHIFT(1099), - [2987] = {.count = 1, .reusable = true}, SHIFT(1099), - [2989] = {.count = 1, .reusable = true}, SHIFT(784), - [2991] = {.count = 1, .reusable = true}, SHIFT(787), - [2993] = {.count = 1, .reusable = true}, SHIFT(789), - [2995] = {.count = 1, .reusable = false}, SHIFT(1101), - [2997] = {.count = 1, .reusable = true}, SHIFT(1101), - [2999] = {.count = 1, .reusable = true}, SHIFT(790), - [3001] = {.count = 1, .reusable = true}, SHIFT(793), - [3003] = {.count = 1, .reusable = true}, SHIFT(797), - [3005] = {.count = 1, .reusable = true}, SHIFT(801), - [3007] = {.count = 1, .reusable = false}, SHIFT(803), - [3009] = {.count = 1, .reusable = false}, SHIFT(1115), - [3011] = {.count = 1, .reusable = false}, SHIFT(804), - [3013] = {.count = 1, .reusable = true}, SHIFT(1118), - [3015] = {.count = 1, .reusable = true}, SHIFT(805), - [3017] = {.count = 1, .reusable = false}, SHIFT(1120), - [3019] = {.count = 1, .reusable = true}, SHIFT(1120), - [3021] = {.count = 1, .reusable = true}, SHIFT(807), - [3023] = {.count = 1, .reusable = true}, SHIFT(809), - [3025] = {.count = 1, .reusable = true}, SHIFT(810), - [3027] = {.count = 1, .reusable = true}, SHIFT(811), - [3029] = {.count = 1, .reusable = true}, SHIFT(813), - [3031] = {.count = 1, .reusable = true}, SHIFT(814), - [3033] = {.count = 1, .reusable = true}, SHIFT(815), - [3035] = {.count = 1, .reusable = false}, SHIFT(816), - [3037] = {.count = 1, .reusable = true}, SHIFT(1124), - [3039] = {.count = 1, .reusable = true}, SHIFT(819), - [3041] = {.count = 1, .reusable = false}, SHIFT(1125), - [3043] = {.count = 1, .reusable = false}, SHIFT(821), - [3045] = {.count = 1, .reusable = true}, SHIFT(1127), - [3047] = {.count = 1, .reusable = true}, SHIFT(1229), - [3049] = {.count = 1, .reusable = true}, SHIFT(824), - [3051] = {.count = 1, .reusable = true}, SHIFT(825), - [3053] = {.count = 1, .reusable = false}, SHIFT(826), - [3055] = {.count = 1, .reusable = false}, SHIFT(1131), - [3057] = {.count = 1, .reusable = false}, SHIFT(827), - [3059] = {.count = 1, .reusable = false}, SHIFT(1132), - [3061] = {.count = 1, .reusable = true}, SHIFT(1132), - [3063] = {.count = 1, .reusable = true}, SHIFT(828), - [3065] = {.count = 1, .reusable = false}, SHIFT(1136), - [3067] = {.count = 1, .reusable = true}, SHIFT(1136), - [3069] = {.count = 1, .reusable = true}, SHIFT(829), - [3071] = {.count = 1, .reusable = true}, SHIFT(831), - [3073] = {.count = 1, .reusable = true}, SHIFT(832), - [3075] = {.count = 1, .reusable = true}, SHIFT(834), - [3077] = {.count = 1, .reusable = false}, SHIFT(1139), - [3079] = {.count = 1, .reusable = true}, SHIFT(1139), - [3081] = {.count = 1, .reusable = true}, SHIFT(835), - [3083] = {.count = 1, .reusable = false}, SHIFT(1141), - [3085] = {.count = 1, .reusable = true}, SHIFT(1141), - [3087] = {.count = 1, .reusable = true}, SHIFT(836), - [3089] = {.count = 1, .reusable = true}, SHIFT(838), - [3091] = {.count = 1, .reusable = false}, SHIFT(1144), - [3093] = {.count = 1, .reusable = true}, SHIFT(1144), - [3095] = {.count = 1, .reusable = true}, SHIFT(839), - [3097] = {.count = 1, .reusable = true}, SHIFT(842), - [3099] = {.count = 1, .reusable = true}, SHIFT(844), - [3101] = {.count = 1, .reusable = false}, SHIFT(1146), - [3103] = {.count = 1, .reusable = true}, SHIFT(1146), - [3105] = {.count = 1, .reusable = true}, SHIFT(845), - [3107] = {.count = 1, .reusable = true}, SHIFT(848), - [3109] = {.count = 1, .reusable = true}, SHIFT(852), - [3111] = {.count = 1, .reusable = false}, SHIFT(855), - [3113] = {.count = 1, .reusable = false}, SHIFT(1149), - [3115] = {.count = 1, .reusable = true}, SHIFT(856), - [3117] = {.count = 1, .reusable = true}, SHIFT(857), - [3119] = {.count = 1, .reusable = false}, SHIFT(1154), - [3121] = {.count = 1, .reusable = false}, SHIFT(858), - [3123] = {.count = 1, .reusable = true}, SHIFT(859), - [3125] = {.count = 1, .reusable = false}, SHIFT(860), - [3127] = {.count = 1, .reusable = false}, SHIFT(1156), - [3129] = {.count = 1, .reusable = true}, SHIFT(861), - [3131] = {.count = 1, .reusable = false}, SHIFT(862), - [3133] = {.count = 1, .reusable = false}, SHIFT(1158), - [3135] = {.count = 1, .reusable = true}, SHIFT(863), - [3137] = {.count = 1, .reusable = false}, SHIFT(1160), - [3139] = {.count = 1, .reusable = false}, SHIFT(864), - [3141] = {.count = 1, .reusable = true}, SHIFT(865), - [3143] = {.count = 1, .reusable = false}, SHIFT(866), - [3145] = {.count = 1, .reusable = false}, SHIFT(1162), - [3147] = {.count = 1, .reusable = true}, SHIFT(867), - [3149] = {.count = 1, .reusable = true}, SHIFT(885), - [3151] = {.count = 1, .reusable = false}, SHIFT(887), - [3153] = {.count = 1, .reusable = true}, SHIFT(892), - [3155] = {.count = 1, .reusable = true}, SHIFT(897), - [3157] = {.count = 1, .reusable = true}, SHIFT(900), - [3159] = {.count = 1, .reusable = true}, SHIFT(903), - [3161] = {.count = 1, .reusable = false}, SHIFT(974), - [3163] = {.count = 1, .reusable = true}, SHIFT(974), - [3165] = {.count = 1, .reusable = false}, SHIFT(915), - [3167] = {.count = 1, .reusable = true}, SHIFT(915), - [3169] = {.count = 1, .reusable = true}, SHIFT(917), - [3171] = {.count = 1, .reusable = false}, SHIFT(918), - [3173] = {.count = 1, .reusable = false}, SHIFT(1182), - [3175] = {.count = 1, .reusable = true}, SHIFT(1182), - [3177] = {.count = 1, .reusable = true}, SHIFT(924), - [3179] = {.count = 1, .reusable = false}, SHIFT(1184), - [3181] = {.count = 1, .reusable = true}, SHIFT(1184), - [3183] = {.count = 1, .reusable = true}, SHIFT(925), - [3185] = {.count = 1, .reusable = true}, SHIFT(939), - [3187] = {.count = 1, .reusable = false}, SHIFT(1185), - [3189] = {.count = 1, .reusable = true}, SHIFT(1185), - [3191] = {.count = 1, .reusable = true}, SHIFT(940), - [3193] = {.count = 1, .reusable = true}, SHIFT(943), - [3195] = {.count = 1, .reusable = true}, SHIFT(951), - [3197] = {.count = 1, .reusable = true}, SHIFT(971), - [3199] = {.count = 1, .reusable = false}, SHIFT(973), - [3201] = {.count = 1, .reusable = true}, SHIFT(977), - [3203] = {.count = 1, .reusable = true}, SHIFT(981), - [3205] = {.count = 1, .reusable = true}, SHIFT(983), - [3207] = {.count = 1, .reusable = true}, SHIFT(986), - [3209] = {.count = 1, .reusable = true}, SHIFT(982), - [3211] = {.count = 1, .reusable = false}, SHIFT(1054), - [3213] = {.count = 1, .reusable = true}, SHIFT(1054), - [3215] = {.count = 1, .reusable = true}, SHIFT(998), - [3217] = {.count = 1, .reusable = false}, SHIFT(999), - [3219] = {.count = 1, .reusable = false}, SHIFT(1202), - [3221] = {.count = 1, .reusable = true}, SHIFT(1202), - [3223] = {.count = 1, .reusable = true}, SHIFT(1005), - [3225] = {.count = 1, .reusable = false}, SHIFT(1204), - [3227] = {.count = 1, .reusable = true}, SHIFT(1204), - [3229] = {.count = 1, .reusable = true}, SHIFT(1006), - [3231] = {.count = 1, .reusable = true}, SHIFT(1020), - [3233] = {.count = 1, .reusable = false}, SHIFT(1205), - [3235] = {.count = 1, .reusable = true}, SHIFT(1205), - [3237] = {.count = 1, .reusable = true}, SHIFT(1021), - [3239] = {.count = 1, .reusable = true}, SHIFT(1024), - [3241] = {.count = 1, .reusable = true}, SHIFT(1032), - [3243] = {.count = 1, .reusable = true}, SHIFT(1051), - [3245] = {.count = 1, .reusable = false}, SHIFT(1053), - [3247] = {.count = 1, .reusable = true}, SHIFT(1057), - [3249] = {.count = 1, .reusable = true}, SHIFT(1061), - [3251] = {.count = 1, .reusable = true}, SHIFT(1063), - [3253] = {.count = 1, .reusable = true}, SHIFT(1065), - [3255] = {.count = 1, .reusable = true}, SHIFT(1062), - [3257] = {.count = 1, .reusable = false}, SHIFT(1116), - [3259] = {.count = 1, .reusable = true}, SHIFT(1116), - [3261] = {.count = 1, .reusable = false}, SHIFT(1220), - [3263] = {.count = 1, .reusable = true}, SHIFT(1220), - [3265] = {.count = 1, .reusable = true}, SHIFT(1080), - [3267] = {.count = 1, .reusable = false}, SHIFT(1222), - [3269] = {.count = 1, .reusable = true}, SHIFT(1222), - [3271] = {.count = 1, .reusable = true}, SHIFT(1081), - [3273] = {.count = 1, .reusable = true}, SHIFT(1089), - [3275] = {.count = 1, .reusable = false}, SHIFT(1223), - [3277] = {.count = 1, .reusable = true}, SHIFT(1223), - [3279] = {.count = 1, .reusable = true}, SHIFT(1090), - [3281] = {.count = 1, .reusable = true}, SHIFT(1093), - [3283] = {.count = 1, .reusable = true}, SHIFT(1098), - [3285] = {.count = 1, .reusable = true}, SHIFT(1114), - [3287] = {.count = 1, .reusable = true}, SHIFT(1121), - [3289] = {.count = 1, .reusable = true}, SHIFT(1123), - [3291] = {.count = 1, .reusable = true}, SHIFT(1122), - [3293] = {.count = 1, .reusable = false}, SHIFT(1150), - [3295] = {.count = 1, .reusable = true}, SHIFT(1150), - [3297] = {.count = 1, .reusable = false}, SHIFT(1232), - [3299] = {.count = 1, .reusable = true}, SHIFT(1232), - [3301] = {.count = 1, .reusable = true}, SHIFT(1128), - [3303] = {.count = 1, .reusable = false}, SHIFT(1234), - [3305] = {.count = 1, .reusable = true}, SHIFT(1234), - [3307] = {.count = 1, .reusable = true}, SHIFT(1129), - [3309] = {.count = 1, .reusable = true}, SHIFT(1134), - [3311] = {.count = 1, .reusable = false}, SHIFT(1235), - [3313] = {.count = 1, .reusable = true}, SHIFT(1235), - [3315] = {.count = 1, .reusable = true}, SHIFT(1135), - [3317] = {.count = 1, .reusable = true}, SHIFT(1138), - [3319] = {.count = 1, .reusable = true}, SHIFT(1143), - [3321] = {.count = 1, .reusable = true}, SHIFT(1152), - [3323] = {.count = 1, .reusable = true}, SHIFT(1153), - [3325] = {.count = 1, .reusable = true}, SHIFT(1159), - [3327] = {.count = 1, .reusable = false}, SHIFT(1172), - [3329] = {.count = 1, .reusable = false}, SHIFT(1179), - [3331] = {.count = 1, .reusable = false}, SHIFT(1247), - [3333] = {.count = 1, .reusable = true}, SHIFT(1247), - [3335] = {.count = 1, .reusable = true}, SHIFT(1180), - [3337] = {.count = 1, .reusable = true}, SHIFT(1183), - [3339] = {.count = 1, .reusable = false}, SHIFT(1194), - [3341] = {.count = 1, .reusable = false}, SHIFT(1199), - [3343] = {.count = 1, .reusable = false}, SHIFT(1265), - [3345] = {.count = 1, .reusable = true}, SHIFT(1265), - [3347] = {.count = 1, .reusable = true}, SHIFT(1200), - [3349] = {.count = 1, .reusable = true}, SHIFT(1203), - [3351] = {.count = 1, .reusable = false}, SHIFT(1214), - [3353] = {.count = 1, .reusable = false}, SHIFT(1217), - [3355] = {.count = 1, .reusable = false}, SHIFT(1270), - [3357] = {.count = 1, .reusable = true}, SHIFT(1270), - [3359] = {.count = 1, .reusable = true}, SHIFT(1218), - [3361] = {.count = 1, .reusable = true}, SHIFT(1221), - [3363] = {.count = 1, .reusable = false}, SHIFT(1273), - [3365] = {.count = 1, .reusable = true}, SHIFT(1273), - [3367] = {.count = 1, .reusable = true}, SHIFT(1230), - [3369] = {.count = 1, .reusable = true}, SHIFT(1233), - [3371] = {.count = 1, .reusable = true}, SHIFT(1244), - [3373] = {.count = 1, .reusable = true}, SHIFT(1248), - [3375] = {.count = 1, .reusable = false}, SHIFT(1281), - [3377] = {.count = 1, .reusable = true}, SHIFT(1281), - [3379] = {.count = 1, .reusable = true}, SHIFT(1249), - [3381] = {.count = 1, .reusable = false}, SHIFT(1285), - [3383] = {.count = 1, .reusable = true}, SHIFT(1285), - [3385] = {.count = 1, .reusable = true}, SHIFT(1250), - [3387] = {.count = 1, .reusable = true}, SHIFT(1251), - [3389] = {.count = 1, .reusable = false}, SHIFT(1288), - [3391] = {.count = 1, .reusable = true}, SHIFT(1288), - [3393] = {.count = 1, .reusable = true}, SHIFT(1252), - [3395] = {.count = 1, .reusable = false}, SHIFT(1290), - [3397] = {.count = 1, .reusable = true}, SHIFT(1290), - [3399] = {.count = 1, .reusable = true}, SHIFT(1253), - [3401] = {.count = 1, .reusable = true}, SHIFT(1254), - [3403] = {.count = 1, .reusable = false}, SHIFT(1293), - [3405] = {.count = 1, .reusable = true}, SHIFT(1293), - [3407] = {.count = 1, .reusable = true}, SHIFT(1255), - [3409] = {.count = 1, .reusable = true}, SHIFT(1256), - [3411] = {.count = 1, .reusable = true}, SHIFT(1257), - [3413] = {.count = 1, .reusable = false}, SHIFT(1295), - [3415] = {.count = 1, .reusable = true}, SHIFT(1295), - [3417] = {.count = 1, .reusable = true}, SHIFT(1258), - [3419] = {.count = 1, .reusable = true}, SHIFT(1259), - [3421] = {.count = 1, .reusable = true}, SHIFT(1260), - [3423] = {.count = 1, .reusable = true}, SHIFT(1264), - [3425] = {.count = 1, .reusable = true}, SHIFT(1269), - [3427] = {.count = 1, .reusable = true}, SHIFT(1272), - [3429] = {.count = 1, .reusable = false}, SHIFT(1302), - [3431] = {.count = 1, .reusable = true}, SHIFT(1302), - [3433] = {.count = 1, .reusable = true}, SHIFT(1279), - [3435] = {.count = 1, .reusable = false}, SHIFT(1304), - [3437] = {.count = 1, .reusable = true}, SHIFT(1304), - [3439] = {.count = 1, .reusable = true}, SHIFT(1280), - [3441] = {.count = 1, .reusable = true}, SHIFT(1283), - [3443] = {.count = 1, .reusable = false}, SHIFT(1305), - [3445] = {.count = 1, .reusable = true}, SHIFT(1305), - [3447] = {.count = 1, .reusable = true}, SHIFT(1284), - [3449] = {.count = 1, .reusable = true}, SHIFT(1287), - [3451] = {.count = 1, .reusable = true}, SHIFT(1292), - [3453] = {.count = 1, .reusable = false}, SHIFT(1307), - [3455] = {.count = 1, .reusable = true}, SHIFT(1307), - [3457] = {.count = 1, .reusable = true}, SHIFT(1300), - [3459] = {.count = 1, .reusable = true}, SHIFT(1303), - [3461] = {.count = 1, .reusable = true}, SHIFT(1306), + [2913] = {.count = 1, .reusable = true}, SHIFT(766), + [2915] = {.count = 1, .reusable = false}, SHIFT(1077), + [2917] = {.count = 1, .reusable = true}, SHIFT(1077), + [2919] = {.count = 1, .reusable = true}, SHIFT(767), + [2921] = {.count = 1, .reusable = true}, SHIFT(769), + [2923] = {.count = 1, .reusable = false}, SHIFT(1080), + [2925] = {.count = 1, .reusable = true}, SHIFT(1080), + [2927] = {.count = 1, .reusable = true}, SHIFT(770), + [2929] = {.count = 1, .reusable = true}, SHIFT(773), + [2931] = {.count = 1, .reusable = true}, SHIFT(775), + [2933] = {.count = 1, .reusable = false}, SHIFT(1082), + [2935] = {.count = 1, .reusable = true}, SHIFT(1082), + [2937] = {.count = 1, .reusable = true}, SHIFT(776), + [2939] = {.count = 1, .reusable = true}, SHIFT(779), + [2941] = {.count = 1, .reusable = true}, SHIFT(783), + [2943] = {.count = 1, .reusable = true}, SHIFT(787), + [2945] = {.count = 1, .reusable = false}, SHIFT(788), + [2947] = {.count = 1, .reusable = false}, SHIFT(1097), + [2949] = {.count = 1, .reusable = true}, SHIFT(1100), + [2951] = {.count = 1, .reusable = false}, SHIFT(789), + [2953] = {.count = 1, .reusable = true}, SHIFT(791), + [2955] = {.count = 1, .reusable = false}, SHIFT(1102), + [2957] = {.count = 1, .reusable = true}, SHIFT(1102), + [2959] = {.count = 1, .reusable = true}, SHIFT(793), + [2961] = {.count = 1, .reusable = true}, SHIFT(795), + [2963] = {.count = 1, .reusable = true}, SHIFT(796), + [2965] = {.count = 1, .reusable = true}, SHIFT(797), + [2967] = {.count = 1, .reusable = true}, SHIFT(798), + [2969] = {.count = 1, .reusable = true}, SHIFT(799), + [2971] = {.count = 1, .reusable = true}, SHIFT(800), + [2973] = {.count = 1, .reusable = false}, SHIFT(801), + [2975] = {.count = 1, .reusable = true}, SHIFT(1105), + [2977] = {.count = 1, .reusable = true}, SHIFT(805), + [2979] = {.count = 1, .reusable = false}, SHIFT(1106), + [2981] = {.count = 1, .reusable = false}, SHIFT(807), + [2983] = {.count = 1, .reusable = true}, SHIFT(1205), + [2985] = {.count = 1, .reusable = true}, SHIFT(810), + [2987] = {.count = 1, .reusable = true}, SHIFT(811), + [2989] = {.count = 1, .reusable = false}, SHIFT(812), + [2991] = {.count = 1, .reusable = false}, SHIFT(1111), + [2993] = {.count = 1, .reusable = false}, SHIFT(1112), + [2995] = {.count = 1, .reusable = true}, SHIFT(1112), + [2997] = {.count = 1, .reusable = true}, SHIFT(813), + [2999] = {.count = 1, .reusable = false}, SHIFT(1116), + [3001] = {.count = 1, .reusable = true}, SHIFT(1116), + [3003] = {.count = 1, .reusable = true}, SHIFT(814), + [3005] = {.count = 1, .reusable = true}, SHIFT(816), + [3007] = {.count = 1, .reusable = true}, SHIFT(817), + [3009] = {.count = 1, .reusable = true}, SHIFT(819), + [3011] = {.count = 1, .reusable = false}, SHIFT(1119), + [3013] = {.count = 1, .reusable = true}, SHIFT(1119), + [3015] = {.count = 1, .reusable = true}, SHIFT(820), + [3017] = {.count = 1, .reusable = false}, SHIFT(1121), + [3019] = {.count = 1, .reusable = true}, SHIFT(1121), + [3021] = {.count = 1, .reusable = true}, SHIFT(821), + [3023] = {.count = 1, .reusable = true}, SHIFT(823), + [3025] = {.count = 1, .reusable = false}, SHIFT(1124), + [3027] = {.count = 1, .reusable = true}, SHIFT(1124), + [3029] = {.count = 1, .reusable = true}, SHIFT(824), + [3031] = {.count = 1, .reusable = true}, SHIFT(827), + [3033] = {.count = 1, .reusable = true}, SHIFT(829), + [3035] = {.count = 1, .reusable = false}, SHIFT(1126), + [3037] = {.count = 1, .reusable = true}, SHIFT(1126), + [3039] = {.count = 1, .reusable = true}, SHIFT(830), + [3041] = {.count = 1, .reusable = true}, SHIFT(833), + [3043] = {.count = 1, .reusable = true}, SHIFT(837), + [3045] = {.count = 1, .reusable = false}, SHIFT(840), + [3047] = {.count = 1, .reusable = false}, SHIFT(1129), + [3049] = {.count = 1, .reusable = true}, SHIFT(841), + [3051] = {.count = 1, .reusable = true}, SHIFT(842), + [3053] = {.count = 1, .reusable = false}, SHIFT(1134), + [3055] = {.count = 1, .reusable = false}, SHIFT(843), + [3057] = {.count = 1, .reusable = true}, SHIFT(844), + [3059] = {.count = 1, .reusable = false}, SHIFT(845), + [3061] = {.count = 1, .reusable = false}, SHIFT(1136), + [3063] = {.count = 1, .reusable = true}, SHIFT(846), + [3065] = {.count = 1, .reusable = false}, SHIFT(847), + [3067] = {.count = 1, .reusable = false}, SHIFT(1138), + [3069] = {.count = 1, .reusable = true}, SHIFT(848), + [3071] = {.count = 1, .reusable = false}, SHIFT(1140), + [3073] = {.count = 1, .reusable = false}, SHIFT(849), + [3075] = {.count = 1, .reusable = true}, SHIFT(850), + [3077] = {.count = 1, .reusable = false}, SHIFT(851), + [3079] = {.count = 1, .reusable = false}, SHIFT(1142), + [3081] = {.count = 1, .reusable = true}, SHIFT(852), + [3083] = {.count = 1, .reusable = true}, SHIFT(871), + [3085] = {.count = 1, .reusable = false}, SHIFT(873), + [3087] = {.count = 1, .reusable = true}, SHIFT(878), + [3089] = {.count = 1, .reusable = true}, SHIFT(883), + [3091] = {.count = 1, .reusable = true}, SHIFT(885), + [3093] = {.count = 1, .reusable = true}, SHIFT(888), + [3095] = {.count = 1, .reusable = false}, SHIFT(958), + [3097] = {.count = 1, .reusable = true}, SHIFT(958), + [3099] = {.count = 1, .reusable = false}, SHIFT(899), + [3101] = {.count = 1, .reusable = true}, SHIFT(899), + [3103] = {.count = 1, .reusable = true}, SHIFT(901), + [3105] = {.count = 1, .reusable = false}, SHIFT(902), + [3107] = {.count = 1, .reusable = false}, SHIFT(1161), + [3109] = {.count = 1, .reusable = true}, SHIFT(1161), + [3111] = {.count = 1, .reusable = true}, SHIFT(908), + [3113] = {.count = 1, .reusable = false}, SHIFT(1163), + [3115] = {.count = 1, .reusable = true}, SHIFT(1163), + [3117] = {.count = 1, .reusable = true}, SHIFT(909), + [3119] = {.count = 1, .reusable = true}, SHIFT(923), + [3121] = {.count = 1, .reusable = false}, SHIFT(1164), + [3123] = {.count = 1, .reusable = true}, SHIFT(1164), + [3125] = {.count = 1, .reusable = true}, SHIFT(924), + [3127] = {.count = 1, .reusable = true}, SHIFT(927), + [3129] = {.count = 1, .reusable = true}, SHIFT(935), + [3131] = {.count = 1, .reusable = true}, SHIFT(955), + [3133] = {.count = 1, .reusable = false}, SHIFT(957), + [3135] = {.count = 1, .reusable = true}, SHIFT(961), + [3137] = {.count = 1, .reusable = true}, SHIFT(965), + [3139] = {.count = 1, .reusable = true}, SHIFT(966), + [3141] = {.count = 1, .reusable = true}, SHIFT(969), + [3143] = {.count = 1, .reusable = false}, SHIFT(1037), + [3145] = {.count = 1, .reusable = true}, SHIFT(1037), + [3147] = {.count = 1, .reusable = true}, SHIFT(980), + [3149] = {.count = 1, .reusable = false}, SHIFT(981), + [3151] = {.count = 1, .reusable = false}, SHIFT(1180), + [3153] = {.count = 1, .reusable = true}, SHIFT(1180), + [3155] = {.count = 1, .reusable = true}, SHIFT(987), + [3157] = {.count = 1, .reusable = false}, SHIFT(1182), + [3159] = {.count = 1, .reusable = true}, SHIFT(1182), + [3161] = {.count = 1, .reusable = true}, SHIFT(988), + [3163] = {.count = 1, .reusable = true}, SHIFT(1002), + [3165] = {.count = 1, .reusable = false}, SHIFT(1183), + [3167] = {.count = 1, .reusable = true}, SHIFT(1183), + [3169] = {.count = 1, .reusable = true}, SHIFT(1003), + [3171] = {.count = 1, .reusable = true}, SHIFT(1006), + [3173] = {.count = 1, .reusable = true}, SHIFT(1014), + [3175] = {.count = 1, .reusable = true}, SHIFT(1034), + [3177] = {.count = 1, .reusable = false}, SHIFT(1036), + [3179] = {.count = 1, .reusable = true}, SHIFT(1040), + [3181] = {.count = 1, .reusable = true}, SHIFT(1044), + [3183] = {.count = 1, .reusable = true}, SHIFT(1045), + [3185] = {.count = 1, .reusable = true}, SHIFT(1047), + [3187] = {.count = 1, .reusable = false}, SHIFT(1098), + [3189] = {.count = 1, .reusable = true}, SHIFT(1098), + [3191] = {.count = 1, .reusable = false}, SHIFT(1197), + [3193] = {.count = 1, .reusable = true}, SHIFT(1197), + [3195] = {.count = 1, .reusable = true}, SHIFT(1061), + [3197] = {.count = 1, .reusable = false}, SHIFT(1199), + [3199] = {.count = 1, .reusable = true}, SHIFT(1199), + [3201] = {.count = 1, .reusable = true}, SHIFT(1062), + [3203] = {.count = 1, .reusable = true}, SHIFT(1070), + [3205] = {.count = 1, .reusable = false}, SHIFT(1200), + [3207] = {.count = 1, .reusable = true}, SHIFT(1200), + [3209] = {.count = 1, .reusable = true}, SHIFT(1071), + [3211] = {.count = 1, .reusable = true}, SHIFT(1074), + [3213] = {.count = 1, .reusable = true}, SHIFT(1079), + [3215] = {.count = 1, .reusable = true}, SHIFT(1096), + [3217] = {.count = 1, .reusable = true}, SHIFT(1103), + [3219] = {.count = 1, .reusable = true}, SHIFT(1104), + [3221] = {.count = 1, .reusable = false}, SHIFT(1130), + [3223] = {.count = 1, .reusable = true}, SHIFT(1130), + [3225] = {.count = 1, .reusable = false}, SHIFT(1208), + [3227] = {.count = 1, .reusable = true}, SHIFT(1208), + [3229] = {.count = 1, .reusable = true}, SHIFT(1108), + [3231] = {.count = 1, .reusable = false}, SHIFT(1210), + [3233] = {.count = 1, .reusable = true}, SHIFT(1210), + [3235] = {.count = 1, .reusable = true}, SHIFT(1109), + [3237] = {.count = 1, .reusable = true}, SHIFT(1114), + [3239] = {.count = 1, .reusable = false}, SHIFT(1211), + [3241] = {.count = 1, .reusable = true}, SHIFT(1211), + [3243] = {.count = 1, .reusable = true}, SHIFT(1115), + [3245] = {.count = 1, .reusable = true}, SHIFT(1118), + [3247] = {.count = 1, .reusable = true}, SHIFT(1123), + [3249] = {.count = 1, .reusable = true}, SHIFT(1132), + [3251] = {.count = 1, .reusable = true}, SHIFT(1133), + [3253] = {.count = 1, .reusable = true}, SHIFT(1139), + [3255] = {.count = 1, .reusable = false}, SHIFT(1152), + [3257] = {.count = 1, .reusable = false}, SHIFT(1158), + [3259] = {.count = 1, .reusable = false}, SHIFT(1222), + [3261] = {.count = 1, .reusable = true}, SHIFT(1222), + [3263] = {.count = 1, .reusable = true}, SHIFT(1159), + [3265] = {.count = 1, .reusable = true}, SHIFT(1162), + [3267] = {.count = 1, .reusable = false}, SHIFT(1173), + [3269] = {.count = 1, .reusable = false}, SHIFT(1177), + [3271] = {.count = 1, .reusable = false}, SHIFT(1240), + [3273] = {.count = 1, .reusable = true}, SHIFT(1240), + [3275] = {.count = 1, .reusable = true}, SHIFT(1178), + [3277] = {.count = 1, .reusable = true}, SHIFT(1181), + [3279] = {.count = 1, .reusable = false}, SHIFT(1192), + [3281] = {.count = 1, .reusable = false}, SHIFT(1194), + [3283] = {.count = 1, .reusable = false}, SHIFT(1245), + [3285] = {.count = 1, .reusable = true}, SHIFT(1245), + [3287] = {.count = 1, .reusable = true}, SHIFT(1195), + [3289] = {.count = 1, .reusable = true}, SHIFT(1198), + [3291] = {.count = 1, .reusable = false}, SHIFT(1248), + [3293] = {.count = 1, .reusable = true}, SHIFT(1248), + [3295] = {.count = 1, .reusable = true}, SHIFT(1206), + [3297] = {.count = 1, .reusable = true}, SHIFT(1209), + [3299] = {.count = 1, .reusable = true}, SHIFT(1219), + [3301] = {.count = 1, .reusable = true}, SHIFT(1223), + [3303] = {.count = 1, .reusable = false}, SHIFT(1257), + [3305] = {.count = 1, .reusable = true}, SHIFT(1257), + [3307] = {.count = 1, .reusable = true}, SHIFT(1224), + [3309] = {.count = 1, .reusable = false}, SHIFT(1261), + [3311] = {.count = 1, .reusable = true}, SHIFT(1261), + [3313] = {.count = 1, .reusable = true}, SHIFT(1225), + [3315] = {.count = 1, .reusable = true}, SHIFT(1226), + [3317] = {.count = 1, .reusable = false}, SHIFT(1264), + [3319] = {.count = 1, .reusable = true}, SHIFT(1264), + [3321] = {.count = 1, .reusable = true}, SHIFT(1227), + [3323] = {.count = 1, .reusable = false}, SHIFT(1266), + [3325] = {.count = 1, .reusable = true}, SHIFT(1266), + [3327] = {.count = 1, .reusable = true}, SHIFT(1228), + [3329] = {.count = 1, .reusable = true}, SHIFT(1229), + [3331] = {.count = 1, .reusable = false}, SHIFT(1269), + [3333] = {.count = 1, .reusable = true}, SHIFT(1269), + [3335] = {.count = 1, .reusable = true}, SHIFT(1230), + [3337] = {.count = 1, .reusable = true}, SHIFT(1231), + [3339] = {.count = 1, .reusable = true}, SHIFT(1232), + [3341] = {.count = 1, .reusable = false}, SHIFT(1271), + [3343] = {.count = 1, .reusable = true}, SHIFT(1271), + [3345] = {.count = 1, .reusable = true}, SHIFT(1233), + [3347] = {.count = 1, .reusable = true}, SHIFT(1234), + [3349] = {.count = 1, .reusable = true}, SHIFT(1235), + [3351] = {.count = 1, .reusable = true}, SHIFT(1239), + [3353] = {.count = 1, .reusable = true}, SHIFT(1244), + [3355] = {.count = 1, .reusable = true}, SHIFT(1247), + [3357] = {.count = 1, .reusable = false}, SHIFT(1278), + [3359] = {.count = 1, .reusable = true}, SHIFT(1278), + [3361] = {.count = 1, .reusable = true}, SHIFT(1255), + [3363] = {.count = 1, .reusable = false}, SHIFT(1280), + [3365] = {.count = 1, .reusable = true}, SHIFT(1280), + [3367] = {.count = 1, .reusable = true}, SHIFT(1256), + [3369] = {.count = 1, .reusable = true}, SHIFT(1259), + [3371] = {.count = 1, .reusable = false}, SHIFT(1281), + [3373] = {.count = 1, .reusable = true}, SHIFT(1281), + [3375] = {.count = 1, .reusable = true}, SHIFT(1260), + [3377] = {.count = 1, .reusable = true}, SHIFT(1263), + [3379] = {.count = 1, .reusable = true}, SHIFT(1268), + [3381] = {.count = 1, .reusable = false}, SHIFT(1283), + [3383] = {.count = 1, .reusable = true}, SHIFT(1283), + [3385] = {.count = 1, .reusable = true}, SHIFT(1276), + [3387] = {.count = 1, .reusable = true}, SHIFT(1279), + [3389] = {.count = 1, .reusable = true}, SHIFT(1282), }; #ifdef _WIN32