diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 38cd503..4aca97e 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -117,6 +117,7 @@ int main() { "a"; "b" "c" "d"; "\"hi\""; + L"bonjour"; } --- @@ -128,7 +129,8 @@ int main() { (compound_statement (expression_statement (string_literal)) (expression_statement (concatenated_string (string_literal) (string_literal) (string_literal))) - (expression_statement (string_literal (escape_sequence) (escape_sequence)))))) + (expression_statement (string_literal (escape_sequence) (escape_sequence))) + (expression_statement (string_literal))))) ============================================ Character literals @@ -139,6 +141,7 @@ int main() { '\0'; '\t'; '\''; + L'b'; } --- @@ -151,7 +154,8 @@ int main() { (expression_statement (char_literal)) (expression_statement (char_literal (escape_sequence))) (expression_statement (char_literal (escape_sequence))) - (expression_statement (char_literal (escape_sequence)))))) + (expression_statement (char_literal (escape_sequence))) + (expression_statement (char_literal))))) ============================================ Field access diff --git a/grammar.js b/grammar.js index 1313522..e95ca41 100644 --- a/grammar.js +++ b/grammar.js @@ -711,6 +711,7 @@ module.exports = grammar({ }, char_literal: $ => seq( + optional('L'), '\'', choice( $.escape_sequence, @@ -725,6 +726,7 @@ module.exports = grammar({ ), string_literal: $ => seq( + optional('L'), '"', repeat(choice( token.immediate(prec(1, /[^\\"\n]+/)), diff --git a/src/grammar.json b/src/grammar.json index 1c0a2b7..7993ece 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4214,6 +4214,18 @@ "char_literal": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "L" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "'" @@ -4259,6 +4271,18 @@ "string_literal": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "L" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "\"" diff --git a/src/node-types.json b/src/node-types.json index daa3eb4..28542be 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -711,6 +711,10 @@ "type": "number_literal", "named": true }, + { + "type": "L", + "named": false + }, { "type": "'", "named": false diff --git a/src/parser.c b/src/parser.c index c2ae777..474c622 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,10 +6,10 @@ #endif #define LANGUAGE_VERSION 10 -#define STATE_COUNT 1114 -#define SYMBOL_COUNT 218 +#define STATE_COUNT 1138 +#define SYMBOL_COUNT 219 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 103 +#define TOKEN_COUNT 104 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -107,134 +107,135 @@ enum { anon_sym_DOT = 90, anon_sym_DASH_GT = 91, sym_number_literal = 92, - anon_sym_SQUOTE = 93, - aux_sym_char_literal_token1 = 94, - anon_sym_DQUOTE = 95, - aux_sym_string_literal_token1 = 96, - sym_escape_sequence = 97, - sym_system_lib_string = 98, - sym_true = 99, - sym_false = 100, - sym_null = 101, - sym_comment = 102, - sym_translation_unit = 103, - sym_preproc_include = 104, - sym_preproc_def = 105, - sym_preproc_function_def = 106, - sym_preproc_params = 107, - sym_preproc_call = 108, - sym_preproc_if = 109, - sym_preproc_ifdef = 110, - sym_preproc_else = 111, - sym_preproc_elif = 112, - sym_preproc_if_in_field_declaration_list = 113, - sym_preproc_ifdef_in_field_declaration_list = 114, - sym_preproc_else_in_field_declaration_list = 115, - sym_preproc_elif_in_field_declaration_list = 116, - sym_function_definition = 117, - sym_declaration = 118, - sym_type_definition = 119, - sym__declaration_specifiers = 120, - sym_linkage_specification = 121, - sym_attribute_specifier = 122, - sym_declaration_list = 123, - sym__declarator = 124, - sym__field_declarator = 125, - sym__type_declarator = 126, - sym__abstract_declarator = 127, - sym_pointer_declarator = 128, - sym_pointer_field_declarator = 129, - sym_pointer_type_declarator = 130, - sym_abstract_pointer_declarator = 131, - sym_function_declarator = 132, - sym_function_field_declarator = 133, - sym_function_type_declarator = 134, - sym_abstract_function_declarator = 135, - sym_array_declarator = 136, - sym_array_field_declarator = 137, - sym_array_type_declarator = 138, - sym_abstract_array_declarator = 139, - sym_init_declarator = 140, - sym_compound_statement = 141, - sym_storage_class_specifier = 142, - sym_type_qualifier = 143, - sym__type_specifier = 144, - sym_sized_type_specifier = 145, - sym_enum_specifier = 146, - sym_enumerator_list = 147, - sym_struct_specifier = 148, - sym_union_specifier = 149, - sym_field_declaration_list = 150, - sym__field_declaration_list_item = 151, - sym_field_declaration = 152, - sym_bitfield_clause = 153, - sym_enumerator = 154, - sym_parameter_list = 155, - sym_parameter_declaration = 156, - sym_labeled_statement = 157, - sym_expression_statement = 158, - sym_if_statement = 159, - sym_switch_statement = 160, - sym_switch_body = 161, - sym_case_statement = 162, - sym_while_statement = 163, - sym_do_statement = 164, - sym_for_statement = 165, - sym_return_statement = 166, - sym_break_statement = 167, - sym_continue_statement = 168, - sym_goto_statement = 169, - sym__expression = 170, - sym_comma_expression = 171, - sym_conditional_expression = 172, - sym_assignment_expression = 173, - sym_pointer_expression = 174, - sym_logical_expression = 175, - sym_bitwise_expression = 176, - sym_equality_expression = 177, - sym_relational_expression = 178, - sym_shift_expression = 179, - sym_math_expression = 180, - sym_cast_expression = 181, - sym_type_descriptor = 182, - sym_sizeof_expression = 183, - sym_subscript_expression = 184, - sym_call_expression = 185, - sym_argument_list = 186, - sym_field_expression = 187, - sym_compound_literal_expression = 188, - sym_parenthesized_expression = 189, - sym_initializer_list = 190, - sym_initializer_pair = 191, - sym_subscript_designator = 192, - sym_field_designator = 193, - sym_char_literal = 194, - sym_concatenated_string = 195, - sym_string_literal = 196, - sym__empty_declaration = 197, - sym_macro_type_specifier = 198, - aux_sym_translation_unit_repeat1 = 199, - aux_sym_preproc_params_repeat1 = 200, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 201, - aux_sym_declaration_repeat1 = 202, - aux_sym_type_definition_repeat1 = 203, - aux_sym_type_definition_repeat2 = 204, - aux_sym__declaration_specifiers_repeat1 = 205, - aux_sym_function_declarator_repeat1 = 206, - aux_sym_sized_type_specifier_repeat1 = 207, - aux_sym_enumerator_list_repeat1 = 208, - aux_sym_field_declaration_repeat1 = 209, - aux_sym_parameter_list_repeat1 = 210, - aux_sym_switch_body_repeat1 = 211, - aux_sym_case_statement_repeat1 = 212, - aux_sym_for_statement_repeat1 = 213, - aux_sym_initializer_list_repeat1 = 214, - aux_sym_initializer_pair_repeat1 = 215, - aux_sym_concatenated_string_repeat1 = 216, - aux_sym_string_literal_repeat1 = 217, - alias_sym_statement_identifier = 218, - alias_sym_field_identifier = 219, - alias_sym_type_identifier = 220, + anon_sym_L = 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_pointer_declarator = 129, + sym_pointer_field_declarator = 130, + sym_pointer_type_declarator = 131, + sym_abstract_pointer_declarator = 132, + sym_function_declarator = 133, + sym_function_field_declarator = 134, + sym_function_type_declarator = 135, + sym_abstract_function_declarator = 136, + sym_array_declarator = 137, + sym_array_field_declarator = 138, + sym_array_type_declarator = 139, + sym_abstract_array_declarator = 140, + sym_init_declarator = 141, + sym_compound_statement = 142, + sym_storage_class_specifier = 143, + sym_type_qualifier = 144, + sym__type_specifier = 145, + sym_sized_type_specifier = 146, + sym_enum_specifier = 147, + sym_enumerator_list = 148, + sym_struct_specifier = 149, + sym_union_specifier = 150, + sym_field_declaration_list = 151, + sym__field_declaration_list_item = 152, + sym_field_declaration = 153, + sym_bitfield_clause = 154, + sym_enumerator = 155, + sym_parameter_list = 156, + sym_parameter_declaration = 157, + sym_labeled_statement = 158, + sym_expression_statement = 159, + sym_if_statement = 160, + sym_switch_statement = 161, + sym_switch_body = 162, + sym_case_statement = 163, + sym_while_statement = 164, + sym_do_statement = 165, + sym_for_statement = 166, + sym_return_statement = 167, + sym_break_statement = 168, + sym_continue_statement = 169, + sym_goto_statement = 170, + sym__expression = 171, + sym_comma_expression = 172, + sym_conditional_expression = 173, + sym_assignment_expression = 174, + sym_pointer_expression = 175, + sym_logical_expression = 176, + sym_bitwise_expression = 177, + sym_equality_expression = 178, + sym_relational_expression = 179, + sym_shift_expression = 180, + sym_math_expression = 181, + sym_cast_expression = 182, + sym_type_descriptor = 183, + sym_sizeof_expression = 184, + sym_subscript_expression = 185, + sym_call_expression = 186, + sym_argument_list = 187, + sym_field_expression = 188, + sym_compound_literal_expression = 189, + sym_parenthesized_expression = 190, + sym_initializer_list = 191, + sym_initializer_pair = 192, + sym_subscript_designator = 193, + sym_field_designator = 194, + sym_char_literal = 195, + sym_concatenated_string = 196, + sym_string_literal = 197, + sym__empty_declaration = 198, + sym_macro_type_specifier = 199, + aux_sym_translation_unit_repeat1 = 200, + aux_sym_preproc_params_repeat1 = 201, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 202, + aux_sym_declaration_repeat1 = 203, + aux_sym_type_definition_repeat1 = 204, + aux_sym_type_definition_repeat2 = 205, + aux_sym__declaration_specifiers_repeat1 = 206, + aux_sym_function_declarator_repeat1 = 207, + aux_sym_sized_type_specifier_repeat1 = 208, + aux_sym_enumerator_list_repeat1 = 209, + aux_sym_field_declaration_repeat1 = 210, + aux_sym_parameter_list_repeat1 = 211, + aux_sym_switch_body_repeat1 = 212, + aux_sym_case_statement_repeat1 = 213, + aux_sym_for_statement_repeat1 = 214, + aux_sym_initializer_list_repeat1 = 215, + aux_sym_initializer_pair_repeat1 = 216, + aux_sym_concatenated_string_repeat1 = 217, + aux_sym_string_literal_repeat1 = 218, + alias_sym_statement_identifier = 219, + alias_sym_field_identifier = 220, + alias_sym_type_identifier = 221, }; static const char *ts_symbol_names[] = { @@ -331,6 +332,7 @@ static const char *ts_symbol_names[] = { [anon_sym_DOT] = ".", [anon_sym_DASH_GT] = "->", [sym_number_literal] = "number_literal", + [anon_sym_L] = "L", [anon_sym_SQUOTE] = "'", [aux_sym_char_literal_token1] = "char_literal_token1", [anon_sym_DQUOTE] = "\"", @@ -834,6 +836,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_L] = { + .visible = true, + .named = false, + }, [anon_sym_SQUOTE] = { .visible = true, .named = false, @@ -1356,10 +1362,10 @@ static TSSymbol ts_alias_sequences[8][MAX_ALIAS_SEQUENCE_LENGTH] = { [1] = alias_sym_type_identifier, }, [3] = { - [1] = alias_sym_statement_identifier, + [0] = alias_sym_statement_identifier, }, [4] = { - [0] = alias_sym_statement_identifier, + [1] = alias_sym_statement_identifier, }, [5] = { [2] = alias_sym_field_identifier, @@ -3281,389 +3287,405 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 165: - if (lookahead == '\n') - SKIP(166); - if (lookahead == '"') - ADVANCE(3); - if (lookahead == '/') + if (lookahead == '!') + ADVANCE(166); + if (lookahead == '%') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(6); + if (lookahead == '(') + ADVANCE(73); + if (lookahead == '*') + ADVANCE(10); + if (lookahead == '+') ADVANCE(167); - if (lookahead == '\\') - ADVANCE(24); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') + if (lookahead == ',') + ADVANCE(12); + if (lookahead == '-') ADVANCE(168); - if (lookahead != 0) + if (lookahead == '.') ADVANCE(169); - END_STATE(); - case 166: - if (lookahead == '"') - ADVANCE(3); if (lookahead == '/') - ADVANCE(161); + ADVANCE(15); + if (lookahead == ':') + ADVANCE(17); + if (lookahead == ';') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(19); + if (lookahead == '=') + ADVANCE(20); + if (lookahead == '>') + ADVANCE(21); + if (lookahead == '?') + ADVANCE(22); + if (lookahead == '[') + ADVANCE(23); + if (lookahead == '^') + ADVANCE(26); + if (lookahead == '{') + ADVANCE(27); + if (lookahead == '|') + ADVANCE(28); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(166); + SKIP(165); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(33); + END_STATE(); + case 166: + if (lookahead == '=') + ADVANCE(34); END_STATE(); case 167: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') - ADVANCE(170); - if (lookahead == '/') - ADVANCE(169); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(169); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') + ADVANCE(43); + if (lookahead == '=') + ADVANCE(45); END_STATE(); case 168: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') - ADVANCE(167); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(168); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(169); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') + ADVANCE(46); + if (lookahead == '=') + ADVANCE(47); + if (lookahead == '>') + ADVANCE(48); END_STATE(); case 169: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(169); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 170: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') - ADVANCE(171); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(170); - END_STATE(); - case 171: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') + if (lookahead == '\n') ADVANCE(171); if (lookahead == '/') ADVANCE(172); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(170); - END_STATE(); - case 172: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') - ADVANCE(169); - END_STATE(); - case 173: - if (lookahead == '\n') - ADVANCE(174); - if (lookahead == '/') - ADVANCE(175); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(173); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(177); + ADVANCE(174); if (lookahead != 0) - ADVANCE(178); + ADVANCE(175); END_STATE(); - case 174: + case 171: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') - ADVANCE(174); + ADVANCE(171); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(177); + ADVANCE(174); END_STATE(); - case 175: + case 172: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '*') - ADVANCE(179); + ADVANCE(176); if (lookahead == '/') - ADVANCE(180); + ADVANCE(177); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(173); if (lookahead != 0 && lookahead != '\n') - ADVANCE(178); + ADVANCE(175); END_STATE(); - case 176: + case 173: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && lookahead != '\\') - ADVANCE(178); + ADVANCE(175); if (lookahead == '\r') - ADVANCE(181); + ADVANCE(178); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(173); END_STATE(); - case 177: + case 174: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(174); + ADVANCE(171); if (lookahead == '/') - ADVANCE(175); + ADVANCE(172); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(173); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(177); + ADVANCE(174); if (lookahead != 0) - ADVANCE(178); + ADVANCE(175); END_STATE(); - case 178: + case 175: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(173); if (lookahead != 0 && lookahead != '\n') - ADVANCE(178); + ADVANCE(175); END_STATE(); - case 179: + case 176: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(51); if (lookahead == '*') - ADVANCE(182); + ADVANCE(179); if (lookahead == '\\') - ADVANCE(183); + ADVANCE(180); if (lookahead != 0) - ADVANCE(179); + ADVANCE(176); END_STATE(); - case 180: + case 177: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') - ADVANCE(184); + ADVANCE(181); if (lookahead != 0 && lookahead != '\n') - ADVANCE(180); + ADVANCE(177); END_STATE(); - case 181: + case 178: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\\') - ADVANCE(178); + ADVANCE(175); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(173); END_STATE(); - case 182: + case 179: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(51); if (lookahead == '*') - ADVANCE(182); + ADVANCE(179); if (lookahead == '/') ADVANCE(104); if (lookahead == '\\') - ADVANCE(185); + ADVANCE(182); if (lookahead != 0) - ADVANCE(186); + ADVANCE(183); END_STATE(); - case 183: + case 180: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && lookahead != '*' && lookahead != '\\') - ADVANCE(179); + ADVANCE(176); if (lookahead == '\r') - ADVANCE(187); + ADVANCE(184); if (lookahead == '*') - ADVANCE(182); + ADVANCE(179); if (lookahead == '\\') - ADVANCE(183); + ADVANCE(180); END_STATE(); - case 184: + case 181: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && lookahead != '\\') - ADVANCE(180); + ADVANCE(177); if (lookahead == '\r') - ADVANCE(188); + ADVANCE(185); if (lookahead == '\\') - ADVANCE(189); + ADVANCE(186); END_STATE(); - case 185: + case 182: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && lookahead != '*' && lookahead != '\\') - ADVANCE(186); + ADVANCE(183); if (lookahead == '\r') - ADVANCE(190); + ADVANCE(187); if (lookahead == '*') - ADVANCE(182); + ADVANCE(179); if (lookahead == '\\') - ADVANCE(185); + ADVANCE(182); END_STATE(); - case 186: + case 183: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(51); if (lookahead == '*') - ADVANCE(182); + ADVANCE(179); if (lookahead == '\\') - ADVANCE(185); + ADVANCE(182); if (lookahead != 0) - ADVANCE(186); + ADVANCE(183); END_STATE(); - case 187: + case 184: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '*' && lookahead != '\\') - ADVANCE(179); + ADVANCE(176); if (lookahead == '*') - ADVANCE(182); + ADVANCE(179); if (lookahead == '\\') - ADVANCE(183); + ADVANCE(180); END_STATE(); - case 188: + case 185: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') - ADVANCE(184); + ADVANCE(181); if (lookahead != 0 && lookahead != '\n') - ADVANCE(180); + ADVANCE(177); END_STATE(); - case 189: + case 186: ACCEPT_TOKEN(sym_comment); if (lookahead == '\r') - ADVANCE(188); + ADVANCE(185); if (lookahead == '\\') - ADVANCE(184); + ADVANCE(181); if (lookahead != 0 && lookahead != '\n') - ADVANCE(180); + ADVANCE(177); END_STATE(); - case 190: + case 187: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '*' && lookahead != '\\') - ADVANCE(186); + ADVANCE(183); if (lookahead == '*') - ADVANCE(182); + ADVANCE(179); if (lookahead == '\\') - ADVANCE(185); + ADVANCE(182); END_STATE(); - case 191: + case 188: if (lookahead == '\n') - SKIP(191); + SKIP(188); if (lookahead == '/') - ADVANCE(175); + ADVANCE(172); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(173); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(192); + ADVANCE(189); if (lookahead != 0) - ADVANCE(178); + ADVANCE(175); END_STATE(); - case 192: + case 189: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - SKIP(191); + SKIP(188); if (lookahead == '/') - ADVANCE(175); + ADVANCE(172); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(173); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') + ADVANCE(189); + if (lookahead != 0) + ADVANCE(175); + END_STATE(); + case 190: + if (lookahead == '\n') + SKIP(191); + if (lookahead == '"') + ADVANCE(3); + if (lookahead == '/') ADVANCE(192); + if (lookahead == '\\') + ADVANCE(24); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(193); if (lookahead != 0) - ADVANCE(178); + ADVANCE(194); END_STATE(); - case 193: + case 191: if (lookahead == '"') ADVANCE(3); if (lookahead == '/') ADVANCE(161); - if (lookahead == '<') - ADVANCE(194); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(193); + SKIP(191); END_STATE(); - case 194: - if (lookahead == '>') + case 192: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(195); - if (lookahead == '\\') - ADVANCE(196); + if (lookahead == '/') + ADVANCE(194); if (lookahead != 0 && - lookahead != '\n') + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') + ADVANCE(194); + END_STATE(); + case 193: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') + ADVANCE(192); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(193); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') + ADVANCE(194); + END_STATE(); + case 194: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(194); END_STATE(); case 195: - ACCEPT_TOKEN(sym_system_lib_string); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') + ADVANCE(196); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') + ADVANCE(195); END_STATE(); case 196: - if (lookahead == '>') - ADVANCE(197); - if (lookahead == '\\') + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(196); + if (lookahead == '/') + ADVANCE(197); if (lookahead != 0 && - lookahead != '\n') - ADVANCE(194); + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') + ADVANCE(195); END_STATE(); case 197: - ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') - ADVANCE(195); - if (lookahead == '\\') - ADVANCE(196); + ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && - lookahead != '\n') + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(194); END_STATE(); case 198: - if (lookahead == '(') - ADVANCE(73); - if (lookahead == ')') - ADVANCE(9); - if (lookahead == '*') - ADVANCE(158); - if (lookahead == ',') - ADVANCE(12); + if (lookahead == '"') + ADVANCE(3); if (lookahead == '/') ADVANCE(161); - if (lookahead == ':') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(18); - if (lookahead == '=') - ADVANCE(164); - if (lookahead == '[') - ADVANCE(23); - if (lookahead == '{') - ADVANCE(27); + if (lookahead == '<') + ADVANCE(199); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3675,79 +3697,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(33); END_STATE(); case 199: - if (lookahead == '!') + if (lookahead == '>') ADVANCE(200); - if (lookahead == '%') - ADVANCE(5); - if (lookahead == '&') - ADVANCE(6); + if (lookahead == '\\') + ADVANCE(201); + if (lookahead != 0 && + lookahead != '\n') + ADVANCE(199); + END_STATE(); + case 200: + ACCEPT_TOKEN(sym_system_lib_string); + END_STATE(); + case 201: + if (lookahead == '>') + ADVANCE(202); + if (lookahead == '\\') + ADVANCE(201); + if (lookahead != 0 && + lookahead != '\n') + ADVANCE(199); + END_STATE(); + case 202: + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') + ADVANCE(200); + if (lookahead == '\\') + ADVANCE(201); + if (lookahead != 0 && + lookahead != '\n') + ADVANCE(199); + END_STATE(); + case 203: if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') + ADVANCE(9); if (lookahead == '*') - ADVANCE(10); - if (lookahead == '+') - ADVANCE(201); + ADVANCE(158); if (lookahead == ',') ADVANCE(12); - if (lookahead == '-') - ADVANCE(202); - if (lookahead == '.') - ADVANCE(203); if (lookahead == '/') - ADVANCE(15); + ADVANCE(161); if (lookahead == ':') ADVANCE(17); if (lookahead == ';') ADVANCE(18); - if (lookahead == '<') - ADVANCE(19); if (lookahead == '=') - ADVANCE(20); - if (lookahead == '>') - ADVANCE(21); - if (lookahead == '?') - ADVANCE(22); + ADVANCE(164); if (lookahead == '[') ADVANCE(23); - if (lookahead == '^') - ADVANCE(26); if (lookahead == '{') ADVANCE(27); - if (lookahead == '|') - ADVANCE(28); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(199); + SKIP(203); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); - case 200: - if (lookahead == '=') - ADVANCE(34); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') - ADVANCE(43); - if (lookahead == '=') - ADVANCE(45); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') - ADVANCE(46); - if (lookahead == '=') - ADVANCE(47); - if (lookahead == '>') - ADVANCE(48); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); case 204: if (lookahead == '\n') SKIP(205); @@ -3797,7 +3807,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 209: if (lookahead == '!') - ADVANCE(200); + ADVANCE(166); if (lookahead == '"') ADVANCE(3); if (lookahead == '%') @@ -3811,13 +3821,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(10); if (lookahead == '+') - ADVANCE(201); + ADVANCE(167); if (lookahead == ',') ADVANCE(12); if (lookahead == '-') - ADVANCE(202); + ADVANCE(168); if (lookahead == '.') - ADVANCE(203); + ADVANCE(169); if (lookahead == '/') ADVANCE(15); if (lookahead == ':') @@ -3953,7 +3963,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 216: if (lookahead == '!') - ADVANCE(200); + ADVANCE(166); if (lookahead == '%') ADVANCE(5); if (lookahead == '&') @@ -3965,13 +3975,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(10); if (lookahead == '+') - ADVANCE(201); + ADVANCE(167); if (lookahead == ',') ADVANCE(12); if (lookahead == '-') - ADVANCE(202); + ADVANCE(168); if (lookahead == '.') - ADVANCE(203); + ADVANCE(169); if (lookahead == '/') ADVANCE(15); if (lookahead == '<') @@ -4047,19 +4057,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 218: if (lookahead == '\n') - ADVANCE(174); + ADVANCE(171); if (lookahead == '(') ADVANCE(8); if (lookahead == '/') - ADVANCE(175); + ADVANCE(172); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(173); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(177); + ADVANCE(174); if (lookahead != 0) - ADVANCE(178); + ADVANCE(175); END_STATE(); case 219: if (lookahead == '!') @@ -4317,7 +4327,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 234: if (lookahead == '!') - ADVANCE(200); + ADVANCE(166); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') @@ -4335,7 +4345,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(238); if (lookahead == '.') - ADVANCE(203); + ADVANCE(169); if (lookahead == '/') ADVANCE(239); if (lookahead == ';') @@ -4423,7 +4433,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 246: if (lookahead == '!') - ADVANCE(200); + ADVANCE(166); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') @@ -4437,7 +4447,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(238); if (lookahead == '.') - ADVANCE(203); + ADVANCE(169); if (lookahead == '/') ADVANCE(239); if (lookahead == '<') @@ -4593,7 +4603,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 253: if (lookahead == '!') - ADVANCE(200); + ADVANCE(166); if (lookahead == '%') ADVANCE(235); if (lookahead == '&') @@ -4609,7 +4619,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(238); if (lookahead == '.') - ADVANCE(203); + ADVANCE(169); if (lookahead == '/') ADVANCE(239); if (lookahead == '<') @@ -4645,42 +4655,44 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { case 0: if (lookahead == 'F') ADVANCE(1); - if (lookahead == 'N') + if (lookahead == 'L') ADVANCE(2); - if (lookahead == 'T') + if (lookahead == 'N') ADVANCE(3); - if (lookahead == '_') + if (lookahead == 'T') ADVANCE(4); - if (lookahead == 'a') + if (lookahead == '_') ADVANCE(5); - if (lookahead == 'b') + if (lookahead == 'a') ADVANCE(6); - if (lookahead == 'c') + if (lookahead == 'b') ADVANCE(7); - if (lookahead == 'd') + if (lookahead == 'c') ADVANCE(8); - if (lookahead == 'e') + if (lookahead == 'd') ADVANCE(9); - if (lookahead == 'f') + if (lookahead == 'e') ADVANCE(10); - if (lookahead == 'g') + if (lookahead == 'f') ADVANCE(11); - if (lookahead == 'i') + if (lookahead == 'g') ADVANCE(12); - if (lookahead == 'l') + if (lookahead == 'i') ADVANCE(13); - if (lookahead == 'r') + if (lookahead == 'l') ADVANCE(14); - if (lookahead == 's') + if (lookahead == 'r') ADVANCE(15); - if (lookahead == 't') + if (lookahead == 's') ADVANCE(16); - if (lookahead == 'u') + if (lookahead == 't') ADVANCE(17); - if (lookahead == 'v') + if (lookahead == 'u') ADVANCE(18); - if (lookahead == 'w') + if (lookahead == 'v') ADVANCE(19); + if (lookahead == 'w') + ADVANCE(20); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4689,114 +4701,113 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 1: if (lookahead == 'A') - ADVANCE(20); + ADVANCE(21); END_STATE(); case 2: - if (lookahead == 'U') - ADVANCE(21); + ACCEPT_TOKEN(anon_sym_L); END_STATE(); case 3: - if (lookahead == 'R') + if (lookahead == 'U') ADVANCE(22); END_STATE(); case 4: - if (lookahead == 'A') + if (lookahead == 'R') ADVANCE(23); - if (lookahead == '_') - ADVANCE(24); END_STATE(); case 5: - if (lookahead == 'u') + if (lookahead == 'A') + ADVANCE(24); + if (lookahead == '_') ADVANCE(25); END_STATE(); case 6: - if (lookahead == 'o') + if (lookahead == 'u') ADVANCE(26); - if (lookahead == 'r') - ADVANCE(27); END_STATE(); case 7: - if (lookahead == 'a') + if (lookahead == 'o') + ADVANCE(27); + if (lookahead == 'r') ADVANCE(28); - if (lookahead == 'h') + END_STATE(); + case 8: + if (lookahead == 'a') ADVANCE(29); - if (lookahead == 'o') + if (lookahead == 'h') ADVANCE(30); + if (lookahead == 'o') + ADVANCE(31); END_STATE(); - case 8: + case 9: if (lookahead == 'e') - ADVANCE(31); - if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'o') + ADVANCE(33); END_STATE(); - case 9: + case 10: if (lookahead == 'l') - ADVANCE(33); - if (lookahead == 'n') ADVANCE(34); - if (lookahead == 'x') + if (lookahead == 'n') ADVANCE(35); + if (lookahead == 'x') + ADVANCE(36); END_STATE(); - case 10: + case 11: if (lookahead == 'a') - ADVANCE(36); - if (lookahead == 'l') ADVANCE(37); - if (lookahead == 'o') + if (lookahead == 'l') ADVANCE(38); - END_STATE(); - case 11: if (lookahead == 'o') ADVANCE(39); END_STATE(); case 12: - if (lookahead == 'f') + if (lookahead == 'o') ADVANCE(40); - if (lookahead == 'n') - ADVANCE(41); END_STATE(); case 13: - if (lookahead == 'o') + if (lookahead == 'f') + ADVANCE(41); + if (lookahead == 'n') ADVANCE(42); END_STATE(); case 14: - if (lookahead == 'e') + if (lookahead == 'o') ADVANCE(43); END_STATE(); case 15: - if (lookahead == 'h') + if (lookahead == 'e') ADVANCE(44); - if (lookahead == 'i') + END_STATE(); + case 16: + if (lookahead == 'h') ADVANCE(45); - if (lookahead == 's') + if (lookahead == 'i') ADVANCE(46); - if (lookahead == 't') + if (lookahead == 's') ADVANCE(47); - if (lookahead == 'w') + if (lookahead == 't') ADVANCE(48); - END_STATE(); - case 16: - if (lookahead == 'r') + if (lookahead == 'w') ADVANCE(49); - if (lookahead == 'y') - ADVANCE(50); END_STATE(); case 17: - if (lookahead == 'i') + if (lookahead == 'r') + ADVANCE(50); + if (lookahead == 'y') ADVANCE(51); - if (lookahead == 'n') - ADVANCE(52); END_STATE(); case 18: - if (lookahead == 'o') + if (lookahead == 'i') + ADVANCE(52); + if (lookahead == 'n') ADVANCE(53); END_STATE(); case 19: - if (lookahead == 'h') + if (lookahead == 'o') ADVANCE(54); END_STATE(); case 20: - if (lookahead == 'L') + if (lookahead == 'h') ADVANCE(55); END_STATE(); case 21: @@ -4804,439 +4815,439 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ADVANCE(56); END_STATE(); case 22: - if (lookahead == 'U') + if (lookahead == 'L') ADVANCE(57); END_STATE(); case 23: - if (lookahead == 't') + if (lookahead == 'U') ADVANCE(58); END_STATE(); case 24: - if (lookahead == 'a') + if (lookahead == 't') ADVANCE(59); END_STATE(); case 25: - if (lookahead == 't') + if (lookahead == 'a') ADVANCE(60); END_STATE(); case 26: - if (lookahead == 'o') + if (lookahead == 't') ADVANCE(61); END_STATE(); case 27: - if (lookahead == 'e') + if (lookahead == 'o') ADVANCE(62); END_STATE(); case 28: - if (lookahead == 's') + if (lookahead == 'e') ADVANCE(63); END_STATE(); case 29: - if (lookahead == 'a') + if (lookahead == 's') ADVANCE(64); END_STATE(); case 30: - if (lookahead == 'n') + if (lookahead == 'a') ADVANCE(65); END_STATE(); case 31: - if (lookahead == 'f') + if (lookahead == 'n') ADVANCE(66); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') + if (lookahead == 'f') ADVANCE(67); END_STATE(); case 33: - if (lookahead == 's') + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'u') ADVANCE(68); END_STATE(); case 34: - if (lookahead == 'u') + if (lookahead == 's') ADVANCE(69); END_STATE(); case 35: - if (lookahead == 't') + if (lookahead == 'u') ADVANCE(70); END_STATE(); case 36: - if (lookahead == 'l') + if (lookahead == 't') ADVANCE(71); END_STATE(); case 37: - if (lookahead == 'o') + if (lookahead == 'l') ADVANCE(72); END_STATE(); case 38: - if (lookahead == 'r') + if (lookahead == 'o') ADVANCE(73); END_STATE(); case 39: - if (lookahead == 't') + if (lookahead == 'r') ADVANCE(74); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 't') + ADVANCE(75); END_STATE(); case 41: - if (lookahead == 'l') - ADVANCE(75); - if (lookahead == 't') - ADVANCE(76); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 42: - if (lookahead == 'n') + if (lookahead == 'l') + ADVANCE(76); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 43: - if (lookahead == 'g') + if (lookahead == 'n') ADVANCE(78); - if (lookahead == 's') - ADVANCE(79); - if (lookahead == 't') - ADVANCE(80); END_STATE(); case 44: - if (lookahead == 'o') + if (lookahead == 'g') + ADVANCE(79); + if (lookahead == 's') + ADVANCE(80); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 45: - if (lookahead == 'g') + if (lookahead == 'o') ADVANCE(82); - if (lookahead == 'z') - ADVANCE(83); END_STATE(); case 46: - if (lookahead == 'i') + if (lookahead == 'g') + ADVANCE(83); + if (lookahead == 'z') ADVANCE(84); END_STATE(); case 47: - if (lookahead == 'a') + if (lookahead == 'i') ADVANCE(85); - if (lookahead == 'r') - ADVANCE(86); END_STATE(); case 48: - if (lookahead == 'i') + if (lookahead == 'a') + ADVANCE(86); + if (lookahead == 'r') ADVANCE(87); END_STATE(); case 49: - if (lookahead == 'u') + if (lookahead == 'i') ADVANCE(88); END_STATE(); case 50: - if (lookahead == 'p') + if (lookahead == 'u') ADVANCE(89); END_STATE(); case 51: - if (lookahead == 'n') + if (lookahead == 'p') ADVANCE(90); END_STATE(); case 52: - if (lookahead == 'i') + if (lookahead == 'n') ADVANCE(91); - if (lookahead == 's') - ADVANCE(92); END_STATE(); case 53: if (lookahead == 'i') + ADVANCE(92); + if (lookahead == 's') ADVANCE(93); - if (lookahead == 'l') - ADVANCE(94); END_STATE(); case 54: if (lookahead == 'i') + ADVANCE(94); + if (lookahead == 'l') ADVANCE(95); END_STATE(); case 55: - if (lookahead == 'S') + if (lookahead == 'i') ADVANCE(96); END_STATE(); case 56: - if (lookahead == 'L') + if (lookahead == 'S') ADVANCE(97); END_STATE(); case 57: - if (lookahead == 'E') + if (lookahead == 'L') ADVANCE(98); END_STATE(); case 58: - if (lookahead == 'o') + if (lookahead == 'E') ADVANCE(99); END_STATE(); case 59: - if (lookahead == 't') + if (lookahead == 'o') ADVANCE(100); END_STATE(); case 60: - if (lookahead == 'o') + if (lookahead == 't') ADVANCE(101); END_STATE(); case 61: - if (lookahead == 'l') + if (lookahead == 'o') ADVANCE(102); END_STATE(); case 62: - if (lookahead == 'a') + if (lookahead == 'l') ADVANCE(103); END_STATE(); case 63: - if (lookahead == 'e') + if (lookahead == 'a') ADVANCE(104); END_STATE(); case 64: - if (lookahead == 'r') + if (lookahead == 'e') ADVANCE(105); END_STATE(); case 65: - if (lookahead == 's') + if (lookahead == 'r') ADVANCE(106); - if (lookahead == 't') - ADVANCE(107); END_STATE(); case 66: - if (lookahead == 'a') + if (lookahead == 's') + ADVANCE(107); + if (lookahead == 't') ADVANCE(108); END_STATE(); case 67: - if (lookahead == 'b') + if (lookahead == 'a') ADVANCE(109); END_STATE(); case 68: - if (lookahead == 'e') + if (lookahead == 'b') ADVANCE(110); END_STATE(); case 69: - if (lookahead == 'm') + if (lookahead == 'e') ADVANCE(111); END_STATE(); case 70: - if (lookahead == 'e') + if (lookahead == 'm') ADVANCE(112); END_STATE(); case 71: - if (lookahead == 's') + if (lookahead == 'e') ADVANCE(113); END_STATE(); case 72: - if (lookahead == 'a') + if (lookahead == 's') ADVANCE(114); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') + ADVANCE(115); END_STATE(); case 74: - if (lookahead == 'o') - ADVANCE(115); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 75: - if (lookahead == 'i') + if (lookahead == 'o') ADVANCE(116); END_STATE(); case 76: + if (lookahead == 'i') + ADVANCE(117); + END_STATE(); + case 77: ACCEPT_TOKEN(sym_primitive_type); if (lookahead == '1') - ADVANCE(117); - if (lookahead == '3') ADVANCE(118); - if (lookahead == '6') + if (lookahead == '3') ADVANCE(119); - if (lookahead == '8') + if (lookahead == '6') ADVANCE(120); - if (lookahead == 'p') + if (lookahead == '8') ADVANCE(121); - END_STATE(); - case 77: - if (lookahead == 'g') + if (lookahead == 'p') ADVANCE(122); END_STATE(); case 78: - if (lookahead == 'i') + if (lookahead == 'g') ADVANCE(123); END_STATE(); case 79: - if (lookahead == 't') + if (lookahead == 'i') ADVANCE(124); END_STATE(); case 80: - if (lookahead == 'u') + if (lookahead == 't') ADVANCE(125); END_STATE(); case 81: - if (lookahead == 'r') + if (lookahead == 'u') ADVANCE(126); END_STATE(); case 82: - if (lookahead == 'n') + if (lookahead == 'r') ADVANCE(127); END_STATE(); case 83: - if (lookahead == 'e') + if (lookahead == 'n') ADVANCE(128); END_STATE(); case 84: - if (lookahead == 'z') + if (lookahead == 'e') ADVANCE(129); END_STATE(); case 85: - if (lookahead == 't') + if (lookahead == 'z') ADVANCE(130); END_STATE(); case 86: - if (lookahead == 'u') + if (lookahead == 't') ADVANCE(131); END_STATE(); case 87: - if (lookahead == 't') + if (lookahead == 'u') ADVANCE(132); END_STATE(); case 88: - if (lookahead == 'e') - ADVANCE(98); + if (lookahead == 't') + ADVANCE(133); END_STATE(); case 89: if (lookahead == 'e') - ADVANCE(133); + ADVANCE(99); END_STATE(); case 90: - if (lookahead == 't') + if (lookahead == 'e') ADVANCE(134); END_STATE(); case 91: - if (lookahead == 'o') + if (lookahead == 't') ADVANCE(135); END_STATE(); case 92: - if (lookahead == 'i') + if (lookahead == 'o') ADVANCE(136); END_STATE(); case 93: - if (lookahead == 'd') - ADVANCE(102); + if (lookahead == 'i') + ADVANCE(137); END_STATE(); case 94: - if (lookahead == 'a') - ADVANCE(137); + if (lookahead == 'd') + ADVANCE(103); END_STATE(); case 95: - if (lookahead == 'l') + if (lookahead == 'a') ADVANCE(138); END_STATE(); case 96: - if (lookahead == 'E') + if (lookahead == 'l') ADVANCE(139); END_STATE(); case 97: - ACCEPT_TOKEN(sym_null); + if (lookahead == 'E') + ADVANCE(140); END_STATE(); case 98: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(sym_null); END_STATE(); case 99: - if (lookahead == 'm') - ADVANCE(140); + ACCEPT_TOKEN(sym_true); END_STATE(); case 100: - if (lookahead == 't') + if (lookahead == 'm') ADVANCE(141); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_auto); + if (lookahead == 't') + ADVANCE(142); END_STATE(); case 102: - ACCEPT_TOKEN(sym_primitive_type); + ACCEPT_TOKEN(anon_sym_auto); END_STATE(); case 103: - if (lookahead == 'k') - ADVANCE(142); + ACCEPT_TOKEN(sym_primitive_type); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'k') + ADVANCE(143); END_STATE(); case 105: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 106: ACCEPT_TOKEN(sym_primitive_type); if (lookahead == '1') - ADVANCE(143); - if (lookahead == '3') ADVANCE(144); - if (lookahead == '6') + if (lookahead == '3') ADVANCE(145); - if (lookahead == '8') + if (lookahead == '6') ADVANCE(146); - if (lookahead == 'p') + if (lookahead == '8') ADVANCE(147); - END_STATE(); - case 106: - if (lookahead == 't') + if (lookahead == 'p') ADVANCE(148); END_STATE(); case 107: - if (lookahead == 'i') + if (lookahead == 't') ADVANCE(149); END_STATE(); case 108: - if (lookahead == 'u') + if (lookahead == 'i') ADVANCE(150); END_STATE(); case 109: - if (lookahead == 'l') + if (lookahead == 'u') ADVANCE(151); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'l') + ADVANCE(152); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_enum); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 112: - if (lookahead == 'r') - ADVANCE(152); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 113: - if (lookahead == 'e') - ADVANCE(139); + if (lookahead == 'r') + ADVANCE(153); END_STATE(); case 114: - if (lookahead == 't') - ADVANCE(102); + if (lookahead == 'e') + ADVANCE(140); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 116: - if (lookahead == 'n') - ADVANCE(153); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 117: - if (lookahead == '6') + if (lookahead == 'n') ADVANCE(154); END_STATE(); case 118: - if (lookahead == '2') + if (lookahead == '6') ADVANCE(155); END_STATE(); case 119: - if (lookahead == '4') + if (lookahead == '2') ADVANCE(156); END_STATE(); case 120: - if (lookahead == '_') + if (lookahead == '4') ADVANCE(157); END_STATE(); case 121: - if (lookahead == 't') + if (lookahead == '_') ADVANCE(158); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 't') + ADVANCE(159); END_STATE(); case 123: - if (lookahead == 's') - ADVANCE(159); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 124: - if (lookahead == 'r') + if (lookahead == 's') ADVANCE(160); END_STATE(); case 125: @@ -5244,29 +5255,29 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ADVANCE(161); END_STATE(); case 126: - if (lookahead == 't') + if (lookahead == 'r') ADVANCE(162); END_STATE(); case 127: - if (lookahead == 'e') + if (lookahead == 't') ADVANCE(163); END_STATE(); case 128: - if (lookahead == '_') + if (lookahead == 'e') ADVANCE(164); - if (lookahead == 'o') - ADVANCE(165); END_STATE(); case 129: - if (lookahead == 'e') + if (lookahead == '_') + ADVANCE(165); + if (lookahead == 'o') ADVANCE(166); END_STATE(); case 130: - if (lookahead == 'i') + if (lookahead == 'e') ADVANCE(167); END_STATE(); case 131: - if (lookahead == 'c') + if (lookahead == 'i') ADVANCE(168); END_STATE(); case 132: @@ -5274,96 +5285,96 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ADVANCE(169); END_STATE(); case 133: - if (lookahead == 'd') + if (lookahead == 'c') ADVANCE(170); END_STATE(); case 134: - if (lookahead == '1') + if (lookahead == 'd') ADVANCE(171); - if (lookahead == '3') + END_STATE(); + case 135: + if (lookahead == '1') ADVANCE(172); - if (lookahead == '6') + if (lookahead == '3') ADVANCE(173); - if (lookahead == '8') + if (lookahead == '6') ADVANCE(174); - if (lookahead == 'p') + if (lookahead == '8') ADVANCE(175); - END_STATE(); - case 135: - if (lookahead == 'n') + if (lookahead == 'p') ADVANCE(176); END_STATE(); case 136: - if (lookahead == 'g') + if (lookahead == 'n') ADVANCE(177); END_STATE(); case 137: - if (lookahead == 't') + if (lookahead == 'g') ADVANCE(178); END_STATE(); case 138: - if (lookahead == 'e') + if (lookahead == 't') ADVANCE(179); END_STATE(); case 139: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'e') + ADVANCE(180); END_STATE(); case 140: - if (lookahead == 'i') - ADVANCE(180); + ACCEPT_TOKEN(sym_false); END_STATE(); case 141: - if (lookahead == 'r') + if (lookahead == 'i') ADVANCE(181); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'r') + ADVANCE(182); END_STATE(); case 143: - if (lookahead == '6') - ADVANCE(182); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 144: - if (lookahead == '2') + if (lookahead == '6') ADVANCE(183); END_STATE(); case 145: - if (lookahead == '4') + if (lookahead == '2') ADVANCE(184); END_STATE(); case 146: - if (lookahead == '_') + if (lookahead == '4') ADVANCE(185); END_STATE(); case 147: - if (lookahead == 't') + if (lookahead == '_') ADVANCE(186); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 't') + ADVANCE(187); END_STATE(); case 149: - if (lookahead == 'n') - ADVANCE(187); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 150: - if (lookahead == 'l') + if (lookahead == 'n') ADVANCE(188); END_STATE(); case 151: - if (lookahead == 'e') - ADVANCE(102); - END_STATE(); - case 152: - if (lookahead == 'n') + if (lookahead == 'l') ADVANCE(189); END_STATE(); - case 153: + case 152: if (lookahead == 'e') + ADVANCE(103); + END_STATE(); + case 153: + if (lookahead == 'n') ADVANCE(190); END_STATE(); case 154: - if (lookahead == '_') + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 155: @@ -5375,104 +5386,104 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ADVANCE(193); END_STATE(); case 157: - if (lookahead == 't') - ADVANCE(102); + if (lookahead == '_') + ADVANCE(194); END_STATE(); case 158: - if (lookahead == 'r') - ADVANCE(194); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 159: - if (lookahead == 't') + if (lookahead == 'r') ADVANCE(195); END_STATE(); case 160: - if (lookahead == 'i') + if (lookahead == 't') ADVANCE(196); END_STATE(); case 161: - if (lookahead == 'n') + if (lookahead == 'i') ADVANCE(197); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'n') + ADVANCE(198); END_STATE(); case 163: - if (lookahead == 'd') - ADVANCE(198); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 164: - if (lookahead == 't') - ADVANCE(102); + if (lookahead == 'd') + ADVANCE(199); END_STATE(); case 165: - if (lookahead == 'f') - ADVANCE(199); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 166: - if (lookahead == '_') + if (lookahead == 'f') ADVANCE(200); END_STATE(); case 167: - if (lookahead == 'c') + if (lookahead == '_') ADVANCE(201); END_STATE(); case 168: - if (lookahead == 't') + if (lookahead == 'c') ADVANCE(202); END_STATE(); case 169: - if (lookahead == 'h') + if (lookahead == 't') ADVANCE(203); END_STATE(); case 170: - if (lookahead == 'e') + if (lookahead == 'h') ADVANCE(204); END_STATE(); case 171: - if (lookahead == '6') + if (lookahead == 'e') ADVANCE(205); END_STATE(); case 172: - if (lookahead == '2') + if (lookahead == '6') ADVANCE(206); END_STATE(); case 173: - if (lookahead == '4') + if (lookahead == '2') ADVANCE(207); END_STATE(); case 174: - if (lookahead == '_') + if (lookahead == '4') ADVANCE(208); END_STATE(); case 175: - if (lookahead == 't') + if (lookahead == '_') ADVANCE(209); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 't') + ADVANCE(210); END_STATE(); case 177: - if (lookahead == 'n') - ADVANCE(210); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 178: - if (lookahead == 'i') + if (lookahead == 'n') ADVANCE(211); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'i') + ADVANCE(212); END_STATE(); case 180: - if (lookahead == 'c') - ADVANCE(212); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 181: - if (lookahead == 'i') + if (lookahead == 'c') ADVANCE(213); END_STATE(); case 182: - if (lookahead == '_') + if (lookahead == 'i') ADVANCE(214); END_STATE(); case 183: @@ -5484,79 +5495,79 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ADVANCE(216); END_STATE(); case 185: - if (lookahead == 't') - ADVANCE(102); + if (lookahead == '_') + ADVANCE(217); END_STATE(); case 186: - if (lookahead == 'r') - ADVANCE(217); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 187: - if (lookahead == 'u') + if (lookahead == 'r') ADVANCE(218); END_STATE(); case 188: - if (lookahead == 't') + if (lookahead == 'u') ADVANCE(219); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 't') + ADVANCE(220); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_inline); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 191: - if (lookahead == 't') - ADVANCE(102); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 192: if (lookahead == 't') - ADVANCE(102); + ADVANCE(103); END_STATE(); case 193: if (lookahead == 't') - ADVANCE(102); + ADVANCE(103); END_STATE(); case 194: - if (lookahead == '_') - ADVANCE(220); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 195: - if (lookahead == 'e') + if (lookahead == '_') ADVANCE(221); END_STATE(); case 196: - if (lookahead == 'c') + if (lookahead == 'e') ADVANCE(222); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'c') + ADVANCE(223); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_signed); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_sizeof); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 200: - if (lookahead == 't') - ADVANCE(102); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 204: - if (lookahead == 'f') - ADVANCE(223); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 205: - if (lookahead == '_') + if (lookahead == 'f') ADVANCE(224); END_STATE(); case 206: @@ -5568,127 +5579,127 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ADVANCE(226); END_STATE(); case 208: - if (lookahead == 't') - ADVANCE(102); + if (lookahead == '_') + ADVANCE(227); END_STATE(); case 209: - if (lookahead == 'r') - ADVANCE(227); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 210: - if (lookahead == 'e') + if (lookahead == 'r') ADVANCE(228); END_STATE(); case 211: - if (lookahead == 'l') + if (lookahead == 'e') ADVANCE(229); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == 'l') + ADVANCE(230); END_STATE(); case 213: - if (lookahead == 'b') - ADVANCE(230); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 214: - if (lookahead == 't') - ADVANCE(102); + if (lookahead == 'b') + ADVANCE(231); END_STATE(); case 215: if (lookahead == 't') - ADVANCE(102); + ADVANCE(103); END_STATE(); case 216: if (lookahead == 't') - ADVANCE(102); + ADVANCE(103); END_STATE(); case 217: - if (lookahead == '_') - ADVANCE(231); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 218: - if (lookahead == 'e') + if (lookahead == '_') ADVANCE(232); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'e') + ADVANCE(233); END_STATE(); case 220: - if (lookahead == 't') - ADVANCE(102); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 221: - if (lookahead == 'r') - ADVANCE(233); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 222: - if (lookahead == 't') + if (lookahead == 'r') ADVANCE(234); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 't') + ADVANCE(235); END_STATE(); case 224: - if (lookahead == 't') - ADVANCE(102); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 225: if (lookahead == 't') - ADVANCE(102); + ADVANCE(103); END_STATE(); case 226: if (lookahead == 't') - ADVANCE(102); + ADVANCE(103); END_STATE(); case 227: - if (lookahead == '_') - ADVANCE(235); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 228: - if (lookahead == 'd') + if (lookahead == '_') ADVANCE(236); END_STATE(); case 229: - if (lookahead == 'e') + if (lookahead == 'd') ADVANCE(237); END_STATE(); case 230: - if (lookahead == 'u') + if (lookahead == 'e') ADVANCE(238); END_STATE(); case 231: - if (lookahead == 't') - ADVANCE(102); + if (lookahead == 'u') + ADVANCE(239); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_register); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_restrict); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 235: - if (lookahead == 't') - ADVANCE(102); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 't') + ADVANCE(103); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_volatile); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 238: - if (lookahead == 't') - ADVANCE(239); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 239: - if (lookahead == 'e') + if (lookahead == 't') ADVANCE(240); END_STATE(); case 240: - if (lookahead == '_') + if (lookahead == 'e') ADVANCE(241); END_STATE(); case 241: @@ -5696,6 +5707,10 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ADVANCE(242); END_STATE(); case 242: + if (lookahead == '_') + ADVANCE(243); + END_STATE(); + case 243: ACCEPT_TOKEN(anon_sym___attribute__); END_STATE(); default: @@ -5714,24 +5729,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [7] = {.lex_state = 154}, [8] = {.lex_state = 154}, [9] = {.lex_state = 154}, - [10] = {.lex_state = 173}, + [10] = {.lex_state = 170}, [11] = {.lex_state = 154}, - [12] = {.lex_state = 191}, + [12] = {.lex_state = 188}, [13] = {.lex_state = 154}, [14] = {.lex_state = 154}, [15] = {.lex_state = 154}, - [16] = {.lex_state = 154}, + [16] = {.lex_state = 190}, [17] = {.lex_state = 154}, [18] = {.lex_state = 154}, - [19] = {.lex_state = 193}, - [20] = {.lex_state = 154}, - [21] = {.lex_state = 198}, - [22] = {.lex_state = 154}, + [19] = {.lex_state = 154}, + [20] = {.lex_state = 198}, + [21] = {.lex_state = 154}, + [22] = {.lex_state = 203}, [23] = {.lex_state = 154}, [24] = {.lex_state = 154}, [25] = {.lex_state = 154}, [26] = {.lex_state = 154}, - [27] = {.lex_state = 199}, + [27] = {.lex_state = 154}, [28] = {.lex_state = 154}, [29] = {.lex_state = 154}, [30] = {.lex_state = 154}, @@ -5739,454 +5754,454 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [32] = {.lex_state = 154}, [33] = {.lex_state = 204}, [34] = {.lex_state = 154}, - [35] = {.lex_state = 209}, - [36] = {.lex_state = 198}, - [37] = {.lex_state = 154}, - [38] = {.lex_state = 209}, - [39] = {.lex_state = 154}, + [35] = {.lex_state = 154}, + [36] = {.lex_state = 209}, + [37] = {.lex_state = 203}, + [38] = {.lex_state = 154}, + [39] = {.lex_state = 209}, [40] = {.lex_state = 154}, - [41] = {.lex_state = 0}, - [42] = {.lex_state = 199}, - [43] = {.lex_state = 154}, - [44] = {.lex_state = 198}, - [45] = {.lex_state = 154}, + [41] = {.lex_state = 154}, + [42] = {.lex_state = 0}, + [43] = {.lex_state = 165}, + [44] = {.lex_state = 154}, + [45] = {.lex_state = 203}, [46] = {.lex_state = 154}, - [47] = {.lex_state = 210}, - [48] = {.lex_state = 198}, - [49] = {.lex_state = 198}, - [50] = {.lex_state = 154}, - [51] = {.lex_state = 209}, + [47] = {.lex_state = 154}, + [48] = {.lex_state = 210}, + [49] = {.lex_state = 203}, + [50] = {.lex_state = 203}, + [51] = {.lex_state = 154}, [52] = {.lex_state = 209}, - [53] = {.lex_state = 165}, - [54] = {.lex_state = 199}, + [53] = {.lex_state = 154}, + [54] = {.lex_state = 154}, [55] = {.lex_state = 154}, - [56] = {.lex_state = 154}, - [57] = {.lex_state = 209}, + [56] = {.lex_state = 165}, + [57] = {.lex_state = 154}, [58] = {.lex_state = 154}, - [59] = {.lex_state = 213}, - [60] = {.lex_state = 209}, - [61] = {.lex_state = 215}, - [62] = {.lex_state = 216}, - [63] = {.lex_state = 216}, + [59] = {.lex_state = 209}, + [60] = {.lex_state = 154}, + [61] = {.lex_state = 213}, + [62] = {.lex_state = 209}, + [63] = {.lex_state = 215}, [64] = {.lex_state = 216}, [65] = {.lex_state = 216}, - [66] = {.lex_state = 154}, + [66] = {.lex_state = 216}, [67] = {.lex_state = 216}, - [68] = {.lex_state = 198}, - [69] = {.lex_state = 154}, - [70] = {.lex_state = 154}, - [71] = {.lex_state = 209}, + [68] = {.lex_state = 154}, + [69] = {.lex_state = 216}, + [70] = {.lex_state = 203}, + [71] = {.lex_state = 154}, [72] = {.lex_state = 154}, - [73] = {.lex_state = 154}, - [74] = {.lex_state = 215}, - [75] = {.lex_state = 154}, - [76] = {.lex_state = 209}, + [73] = {.lex_state = 209}, + [74] = {.lex_state = 209}, + [75] = {.lex_state = 190}, + [76] = {.lex_state = 154}, [77] = {.lex_state = 154}, - [78] = {.lex_state = 154}, + [78] = {.lex_state = 215}, [79] = {.lex_state = 154}, - [80] = {.lex_state = 198}, - [81] = {.lex_state = 198}, + [80] = {.lex_state = 154}, + [81] = {.lex_state = 209}, [82] = {.lex_state = 154}, - [83] = {.lex_state = 217}, - [84] = {.lex_state = 198}, - [85] = {.lex_state = 198}, - [86] = {.lex_state = 154}, + [83] = {.lex_state = 154}, + [84] = {.lex_state = 154}, + [85] = {.lex_state = 203}, + [86] = {.lex_state = 203}, [87] = {.lex_state = 154}, - [88] = {.lex_state = 154}, - [89] = {.lex_state = 154}, - [90] = {.lex_state = 199}, + [88] = {.lex_state = 217}, + [89] = {.lex_state = 203}, + [90] = {.lex_state = 203}, [91] = {.lex_state = 154}, - [92] = {.lex_state = 154}, - [93] = {.lex_state = 218}, + [92] = {.lex_state = 165}, + [93] = {.lex_state = 154}, [94] = {.lex_state = 154}, - [95] = {.lex_state = 154}, - [96] = {.lex_state = 198}, - [97] = {.lex_state = 198}, - [98] = {.lex_state = 198}, + [95] = {.lex_state = 218}, + [96] = {.lex_state = 154}, + [97] = {.lex_state = 204}, + [98] = {.lex_state = 190}, [99] = {.lex_state = 154}, - [100] = {.lex_state = 209}, - [101] = {.lex_state = 154}, - [102] = {.lex_state = 198}, - [103] = {.lex_state = 198}, - [104] = {.lex_state = 154}, + [100] = {.lex_state = 203}, + [101] = {.lex_state = 203}, + [102] = {.lex_state = 203}, + [103] = {.lex_state = 154}, + [104] = {.lex_state = 209}, [105] = {.lex_state = 154}, - [106] = {.lex_state = 154}, - [107] = {.lex_state = 154}, + [106] = {.lex_state = 203}, + [107] = {.lex_state = 203}, [108] = {.lex_state = 154}, [109] = {.lex_state = 154}, [110] = {.lex_state = 154}, - [111] = {.lex_state = 209}, + [111] = {.lex_state = 154}, [112] = {.lex_state = 154}, [113] = {.lex_state = 154}, [114] = {.lex_state = 154}, - [115] = {.lex_state = 154}, - [116] = {.lex_state = 219}, + [115] = {.lex_state = 209}, + [116] = {.lex_state = 154}, [117] = {.lex_state = 154}, [118] = {.lex_state = 154}, [119] = {.lex_state = 154}, - [120] = {.lex_state = 209}, + [120] = {.lex_state = 219}, [121] = {.lex_state = 154}, [122] = {.lex_state = 154}, [123] = {.lex_state = 154}, - [124] = {.lex_state = 199}, - [125] = {.lex_state = 199}, - [126] = {.lex_state = 198}, + [124] = {.lex_state = 209}, + [125] = {.lex_state = 154}, + [126] = {.lex_state = 154}, [127] = {.lex_state = 154}, - [128] = {.lex_state = 154}, - [129] = {.lex_state = 191}, - [130] = {.lex_state = 198}, - [131] = {.lex_state = 210}, - [132] = {.lex_state = 199}, - [133] = {.lex_state = 198}, - [134] = {.lex_state = 216}, - [135] = {.lex_state = 209}, + [128] = {.lex_state = 165}, + [129] = {.lex_state = 165}, + [130] = {.lex_state = 203}, + [131] = {.lex_state = 154}, + [132] = {.lex_state = 154}, + [133] = {.lex_state = 188}, + [134] = {.lex_state = 203}, + [135] = {.lex_state = 210}, [136] = {.lex_state = 165}, - [137] = {.lex_state = 154}, - [138] = {.lex_state = 154}, - [139] = {.lex_state = 154}, - [140] = {.lex_state = 220}, + [137] = {.lex_state = 203}, + [138] = {.lex_state = 216}, + [139] = {.lex_state = 209}, + [140] = {.lex_state = 216}, [141] = {.lex_state = 154}, - [142] = {.lex_state = 191}, - [143] = {.lex_state = 223}, - [144] = {.lex_state = 215}, - [145] = {.lex_state = 209}, - [146] = {.lex_state = 154}, - [147] = {.lex_state = 230}, - [148] = {.lex_state = 216}, - [149] = {.lex_state = 216}, - [150] = {.lex_state = 231}, - [151] = {.lex_state = 233}, - [152] = {.lex_state = 216}, + [142] = {.lex_state = 154}, + [143] = {.lex_state = 154}, + [144] = {.lex_state = 154}, + [145] = {.lex_state = 154}, + [146] = {.lex_state = 188}, + [147] = {.lex_state = 220}, + [148] = {.lex_state = 223}, + [149] = {.lex_state = 215}, + [150] = {.lex_state = 209}, + [151] = {.lex_state = 154}, + [152] = {.lex_state = 230}, [153] = {.lex_state = 216}, [154] = {.lex_state = 216}, - [155] = {.lex_state = 154}, - [156] = {.lex_state = 234}, - [157] = {.lex_state = 154}, - [158] = {.lex_state = 154}, - [159] = {.lex_state = 199}, + [155] = {.lex_state = 231}, + [156] = {.lex_state = 233}, + [157] = {.lex_state = 216}, + [158] = {.lex_state = 216}, + [159] = {.lex_state = 216}, [160] = {.lex_state = 154}, - [161] = {.lex_state = 199}, + [161] = {.lex_state = 234}, [162] = {.lex_state = 154}, [163] = {.lex_state = 154}, - [164] = {.lex_state = 223}, - [165] = {.lex_state = 215}, - [166] = {.lex_state = 154}, + [164] = {.lex_state = 165}, + [165] = {.lex_state = 209}, + [166] = {.lex_state = 190}, [167] = {.lex_state = 154}, - [168] = {.lex_state = 154}, + [168] = {.lex_state = 165}, [169] = {.lex_state = 154}, - [170] = {.lex_state = 198}, - [171] = {.lex_state = 154}, - [172] = {.lex_state = 154}, - [173] = {.lex_state = 217}, - [174] = {.lex_state = 198}, + [170] = {.lex_state = 154}, + [171] = {.lex_state = 223}, + [172] = {.lex_state = 215}, + [173] = {.lex_state = 154}, + [174] = {.lex_state = 154}, [175] = {.lex_state = 154}, - [176] = {.lex_state = 217}, - [177] = {.lex_state = 198}, - [178] = {.lex_state = 209}, - [179] = {.lex_state = 216}, - [180] = {.lex_state = 154}, - [181] = {.lex_state = 154}, + [176] = {.lex_state = 154}, + [177] = {.lex_state = 203}, + [178] = {.lex_state = 154}, + [179] = {.lex_state = 154}, + [180] = {.lex_state = 217}, + [181] = {.lex_state = 203}, [182] = {.lex_state = 154}, - [183] = {.lex_state = 213}, - [184] = {.lex_state = 154}, - [185] = {.lex_state = 231}, - [186] = {.lex_state = 173}, - [187] = {.lex_state = 209}, - [188] = {.lex_state = 216}, - [189] = {.lex_state = 209}, - [190] = {.lex_state = 198}, + [183] = {.lex_state = 217}, + [184] = {.lex_state = 203}, + [185] = {.lex_state = 154}, + [186] = {.lex_state = 154}, + [187] = {.lex_state = 213}, + [188] = {.lex_state = 154}, + [189] = {.lex_state = 231}, + [190] = {.lex_state = 170}, [191] = {.lex_state = 209}, - [192] = {.lex_state = 209}, - [193] = {.lex_state = 209}, - [194] = {.lex_state = 209}, - [195] = {.lex_state = 246}, - [196] = {.lex_state = 234}, - [197] = {.lex_state = 234}, + [192] = {.lex_state = 154}, + [193] = {.lex_state = 190}, + [194] = {.lex_state = 216}, + [195] = {.lex_state = 209}, + [196] = {.lex_state = 203}, + [197] = {.lex_state = 209}, [198] = {.lex_state = 209}, [199] = {.lex_state = 209}, [200] = {.lex_state = 209}, - [201] = {.lex_state = 209}, - [202] = {.lex_state = 209}, - [203] = {.lex_state = 209}, - [204] = {.lex_state = 216}, + [201] = {.lex_state = 246}, + [202] = {.lex_state = 234}, + [203] = {.lex_state = 234}, + [204] = {.lex_state = 209}, [205] = {.lex_state = 209}, [206] = {.lex_state = 209}, - [207] = {.lex_state = 199}, - [208] = {.lex_state = 234}, - [209] = {.lex_state = 154}, + [207] = {.lex_state = 209}, + [208] = {.lex_state = 209}, + [209] = {.lex_state = 209}, [210] = {.lex_state = 216}, - [211] = {.lex_state = 154}, - [212] = {.lex_state = 154}, - [213] = {.lex_state = 231}, - [214] = {.lex_state = 154}, - [215] = {.lex_state = 233}, - [216] = {.lex_state = 154}, - [217] = {.lex_state = 199}, - [218] = {.lex_state = 234}, - [219] = {.lex_state = 248}, - [220] = {.lex_state = 248}, - [221] = {.lex_state = 198}, - [222] = {.lex_state = 210}, - [223] = {.lex_state = 198}, - [224] = {.lex_state = 154}, - [225] = {.lex_state = 154}, - [226] = {.lex_state = 154}, - [227] = {.lex_state = 210}, - [228] = {.lex_state = 154}, - [229] = {.lex_state = 199}, - [230] = {.lex_state = 250}, - [231] = {.lex_state = 154}, - [232] = {.lex_state = 220}, - [233] = {.lex_state = 215}, + [211] = {.lex_state = 209}, + [212] = {.lex_state = 209}, + [213] = {.lex_state = 165}, + [214] = {.lex_state = 234}, + [215] = {.lex_state = 154}, + [216] = {.lex_state = 216}, + [217] = {.lex_state = 154}, + [218] = {.lex_state = 154}, + [219] = {.lex_state = 231}, + [220] = {.lex_state = 154}, + [221] = {.lex_state = 233}, + [222] = {.lex_state = 154}, + [223] = {.lex_state = 165}, + [224] = {.lex_state = 234}, + [225] = {.lex_state = 248}, + [226] = {.lex_state = 248}, + [227] = {.lex_state = 203}, + [228] = {.lex_state = 210}, + [229] = {.lex_state = 154}, + [230] = {.lex_state = 154}, + [231] = {.lex_state = 203}, + [232] = {.lex_state = 154}, + [233] = {.lex_state = 210}, [234] = {.lex_state = 154}, - [235] = {.lex_state = 223}, - [236] = {.lex_state = 217}, - [237] = {.lex_state = 209}, - [238] = {.lex_state = 209}, - [239] = {.lex_state = 216}, - [240] = {.lex_state = 216}, - [241] = {.lex_state = 216}, - [242] = {.lex_state = 216}, - [243] = {.lex_state = 216}, - [244] = {.lex_state = 198}, - [245] = {.lex_state = 216}, + [235] = {.lex_state = 165}, + [236] = {.lex_state = 250}, + [237] = {.lex_state = 203}, + [238] = {.lex_state = 154}, + [239] = {.lex_state = 215}, + [240] = {.lex_state = 220}, + [241] = {.lex_state = 154}, + [242] = {.lex_state = 223}, + [243] = {.lex_state = 217}, + [244] = {.lex_state = 209}, + [245] = {.lex_state = 209}, [246] = {.lex_state = 216}, - [247] = {.lex_state = 233}, + [247] = {.lex_state = 216}, [248] = {.lex_state = 216}, - [249] = {.lex_state = 233}, - [250] = {.lex_state = 246}, - [251] = {.lex_state = 233}, + [249] = {.lex_state = 216}, + [250] = {.lex_state = 216}, + [251] = {.lex_state = 203}, [252] = {.lex_state = 216}, - [253] = {.lex_state = 199}, - [254] = {.lex_state = 154}, - [255] = {.lex_state = 234}, - [256] = {.lex_state = 216}, - [257] = {.lex_state = 154}, - [258] = {.lex_state = 154}, - [259] = {.lex_state = 233}, - [260] = {.lex_state = 199}, - [261] = {.lex_state = 234}, - [262] = {.lex_state = 219}, - [263] = {.lex_state = 199}, + [253] = {.lex_state = 216}, + [254] = {.lex_state = 233}, + [255] = {.lex_state = 216}, + [256] = {.lex_state = 233}, + [257] = {.lex_state = 246}, + [258] = {.lex_state = 233}, + [259] = {.lex_state = 216}, + [260] = {.lex_state = 165}, + [261] = {.lex_state = 154}, + [262] = {.lex_state = 234}, + [263] = {.lex_state = 216}, [264] = {.lex_state = 154}, - [265] = {.lex_state = 199}, - [266] = {.lex_state = 154}, - [267] = {.lex_state = 223}, - [268] = {.lex_state = 154}, - [269] = {.lex_state = 154}, - [270] = {.lex_state = 154}, + [265] = {.lex_state = 154}, + [266] = {.lex_state = 233}, + [267] = {.lex_state = 165}, + [268] = {.lex_state = 234}, + [269] = {.lex_state = 219}, + [270] = {.lex_state = 165}, [271] = {.lex_state = 154}, - [272] = {.lex_state = 154}, - [273] = {.lex_state = 199}, - [274] = {.lex_state = 154}, + [272] = {.lex_state = 165}, + [273] = {.lex_state = 154}, + [274] = {.lex_state = 223}, [275] = {.lex_state = 154}, - [276] = {.lex_state = 198}, + [276] = {.lex_state = 154}, [277] = {.lex_state = 154}, - [278] = {.lex_state = 217}, - [279] = {.lex_state = 198}, - [280] = {.lex_state = 154}, - [281] = {.lex_state = 216}, - [282] = {.lex_state = 173}, - [283] = {.lex_state = 154}, - [284] = {.lex_state = 213}, - [285] = {.lex_state = 198}, - [286] = {.lex_state = 209}, - [287] = {.lex_state = 154}, - [288] = {.lex_state = 209}, - [289] = {.lex_state = 216}, - [290] = {.lex_state = 154}, - [291] = {.lex_state = 234}, - [292] = {.lex_state = 234}, - [293] = {.lex_state = 199}, - [294] = {.lex_state = 199}, - [295] = {.lex_state = 199}, - [296] = {.lex_state = 199}, - [297] = {.lex_state = 233}, - [298] = {.lex_state = 234}, - [299] = {.lex_state = 233}, - [300] = {.lex_state = 246}, - [301] = {.lex_state = 154}, - [302] = {.lex_state = 199}, - [303] = {.lex_state = 234}, - [304] = {.lex_state = 251}, - [305] = {.lex_state = 210}, - [306] = {.lex_state = 191}, - [307] = {.lex_state = 248}, - [308] = {.lex_state = 223}, - [309] = {.lex_state = 210}, - [310] = {.lex_state = 248}, - [311] = {.lex_state = 223}, - [312] = {.lex_state = 154}, - [313] = {.lex_state = 198}, - [314] = {.lex_state = 216}, - [315] = {.lex_state = 199}, - [316] = {.lex_state = 210}, - [317] = {.lex_state = 154}, - [318] = {.lex_state = 233}, - [319] = {.lex_state = 199}, + [278] = {.lex_state = 154}, + [279] = {.lex_state = 154}, + [280] = {.lex_state = 165}, + [281] = {.lex_state = 154}, + [282] = {.lex_state = 154}, + [283] = {.lex_state = 203}, + [284] = {.lex_state = 154}, + [285] = {.lex_state = 217}, + [286] = {.lex_state = 154}, + [287] = {.lex_state = 216}, + [288] = {.lex_state = 170}, + [289] = {.lex_state = 154}, + [290] = {.lex_state = 213}, + [291] = {.lex_state = 209}, + [292] = {.lex_state = 209}, + [293] = {.lex_state = 203}, + [294] = {.lex_state = 209}, + [295] = {.lex_state = 154}, + [296] = {.lex_state = 209}, + [297] = {.lex_state = 216}, + [298] = {.lex_state = 154}, + [299] = {.lex_state = 234}, + [300] = {.lex_state = 234}, + [301] = {.lex_state = 165}, + [302] = {.lex_state = 165}, + [303] = {.lex_state = 165}, + [304] = {.lex_state = 165}, + [305] = {.lex_state = 233}, + [306] = {.lex_state = 234}, + [307] = {.lex_state = 233}, + [308] = {.lex_state = 246}, + [309] = {.lex_state = 154}, + [310] = {.lex_state = 165}, + [311] = {.lex_state = 234}, + [312] = {.lex_state = 251}, + [313] = {.lex_state = 210}, + [314] = {.lex_state = 188}, + [315] = {.lex_state = 248}, + [316] = {.lex_state = 223}, + [317] = {.lex_state = 210}, + [318] = {.lex_state = 248}, + [319] = {.lex_state = 223}, [320] = {.lex_state = 154}, - [321] = {.lex_state = 198}, - [322] = {.lex_state = 223}, - [323] = {.lex_state = 215}, - [324] = {.lex_state = 154}, + [321] = {.lex_state = 203}, + [322] = {.lex_state = 216}, + [323] = {.lex_state = 165}, + [324] = {.lex_state = 210}, [325] = {.lex_state = 154}, - [326] = {.lex_state = 154}, - [327] = {.lex_state = 209}, + [326] = {.lex_state = 233}, + [327] = {.lex_state = 165}, [328] = {.lex_state = 154}, - [329] = {.lex_state = 162}, - [330] = {.lex_state = 217}, - [331] = {.lex_state = 253}, - [332] = {.lex_state = 216}, - [333] = {.lex_state = 216}, - [334] = {.lex_state = 231}, - [335] = {.lex_state = 198}, - [336] = {.lex_state = 216}, - [337] = {.lex_state = 216}, - [338] = {.lex_state = 216}, - [339] = {.lex_state = 231}, + [329] = {.lex_state = 203}, + [330] = {.lex_state = 223}, + [331] = {.lex_state = 215}, + [332] = {.lex_state = 154}, + [333] = {.lex_state = 154}, + [334] = {.lex_state = 154}, + [335] = {.lex_state = 209}, + [336] = {.lex_state = 154}, + [337] = {.lex_state = 162}, + [338] = {.lex_state = 217}, + [339] = {.lex_state = 253}, [340] = {.lex_state = 216}, [341] = {.lex_state = 216}, - [342] = {.lex_state = 216}, - [343] = {.lex_state = 233}, - [344] = {.lex_state = 246}, - [345] = {.lex_state = 233}, - [346] = {.lex_state = 154}, - [347] = {.lex_state = 199}, - [348] = {.lex_state = 234}, - [349] = {.lex_state = 234}, - [350] = {.lex_state = 199}, + [342] = {.lex_state = 231}, + [343] = {.lex_state = 203}, + [344] = {.lex_state = 216}, + [345] = {.lex_state = 216}, + [346] = {.lex_state = 216}, + [347] = {.lex_state = 231}, + [348] = {.lex_state = 216}, + [349] = {.lex_state = 216}, + [350] = {.lex_state = 216}, [351] = {.lex_state = 233}, - [352] = {.lex_state = 234}, + [352] = {.lex_state = 246}, [353] = {.lex_state = 233}, - [354] = {.lex_state = 246}, - [355] = {.lex_state = 199}, - [356] = {.lex_state = 154}, - [357] = {.lex_state = 216}, - [358] = {.lex_state = 219}, - [359] = {.lex_state = 199}, - [360] = {.lex_state = 154}, - [361] = {.lex_state = 154}, - [362] = {.lex_state = 154}, - [363] = {.lex_state = 199}, + [354] = {.lex_state = 154}, + [355] = {.lex_state = 165}, + [356] = {.lex_state = 234}, + [357] = {.lex_state = 234}, + [358] = {.lex_state = 165}, + [359] = {.lex_state = 233}, + [360] = {.lex_state = 234}, + [361] = {.lex_state = 233}, + [362] = {.lex_state = 246}, + [363] = {.lex_state = 165}, [364] = {.lex_state = 154}, - [365] = {.lex_state = 154}, - [366] = {.lex_state = 154}, - [367] = {.lex_state = 253}, - [368] = {.lex_state = 198}, - [369] = {.lex_state = 217}, + [365] = {.lex_state = 216}, + [366] = {.lex_state = 219}, + [367] = {.lex_state = 165}, + [368] = {.lex_state = 154}, + [369] = {.lex_state = 154}, [370] = {.lex_state = 154}, - [371] = {.lex_state = 217}, - [372] = {.lex_state = 231}, - [373] = {.lex_state = 173}, - [374] = {.lex_state = 216}, - [375] = {.lex_state = 154}, - [376] = {.lex_state = 216}, - [377] = {.lex_state = 209}, - [378] = {.lex_state = 216}, - [379] = {.lex_state = 209}, - [380] = {.lex_state = 234}, - [381] = {.lex_state = 233}, - [382] = {.lex_state = 246}, - [383] = {.lex_state = 234}, - [384] = {.lex_state = 251}, - [385] = {.lex_state = 248}, - [386] = {.lex_state = 210}, - [387] = {.lex_state = 223}, - [388] = {.lex_state = 210}, - [389] = {.lex_state = 223}, - [390] = {.lex_state = 198}, - [391] = {.lex_state = 198}, - [392] = {.lex_state = 199}, - [393] = {.lex_state = 233}, - [394] = {.lex_state = 198}, - [395] = {.lex_state = 233}, - [396] = {.lex_state = 246}, - [397] = {.lex_state = 210}, - [398] = {.lex_state = 199}, - [399] = {.lex_state = 154}, - [400] = {.lex_state = 223}, - [401] = {.lex_state = 246}, - [402] = {.lex_state = 209}, - [403] = {.lex_state = 162}, - [404] = {.lex_state = 154}, - [405] = {.lex_state = 162}, - [406] = {.lex_state = 217}, - [407] = {.lex_state = 217}, - [408] = {.lex_state = 216}, - [409] = {.lex_state = 198}, - [410] = {.lex_state = 216}, - [411] = {.lex_state = 216}, - [412] = {.lex_state = 216}, - [413] = {.lex_state = 216}, - [414] = {.lex_state = 233}, - [415] = {.lex_state = 246}, - [416] = {.lex_state = 154}, - [417] = {.lex_state = 234}, - [418] = {.lex_state = 233}, - [419] = {.lex_state = 246}, - [420] = {.lex_state = 154}, - [421] = {.lex_state = 154}, - [422] = {.lex_state = 216}, - [423] = {.lex_state = 216}, - [424] = {.lex_state = 219}, - [425] = {.lex_state = 154}, - [426] = {.lex_state = 154}, - [427] = {.lex_state = 198}, + [371] = {.lex_state = 165}, + [372] = {.lex_state = 154}, + [373] = {.lex_state = 154}, + [374] = {.lex_state = 154}, + [375] = {.lex_state = 253}, + [376] = {.lex_state = 203}, + [377] = {.lex_state = 217}, + [378] = {.lex_state = 154}, + [379] = {.lex_state = 217}, + [380] = {.lex_state = 231}, + [381] = {.lex_state = 170}, + [382] = {.lex_state = 216}, + [383] = {.lex_state = 154}, + [384] = {.lex_state = 216}, + [385] = {.lex_state = 209}, + [386] = {.lex_state = 216}, + [387] = {.lex_state = 209}, + [388] = {.lex_state = 234}, + [389] = {.lex_state = 233}, + [390] = {.lex_state = 246}, + [391] = {.lex_state = 234}, + [392] = {.lex_state = 251}, + [393] = {.lex_state = 248}, + [394] = {.lex_state = 210}, + [395] = {.lex_state = 223}, + [396] = {.lex_state = 210}, + [397] = {.lex_state = 223}, + [398] = {.lex_state = 203}, + [399] = {.lex_state = 203}, + [400] = {.lex_state = 165}, + [401] = {.lex_state = 233}, + [402] = {.lex_state = 203}, + [403] = {.lex_state = 233}, + [404] = {.lex_state = 246}, + [405] = {.lex_state = 210}, + [406] = {.lex_state = 165}, + [407] = {.lex_state = 154}, + [408] = {.lex_state = 223}, + [409] = {.lex_state = 246}, + [410] = {.lex_state = 209}, + [411] = {.lex_state = 162}, + [412] = {.lex_state = 154}, + [413] = {.lex_state = 162}, + [414] = {.lex_state = 217}, + [415] = {.lex_state = 217}, + [416] = {.lex_state = 216}, + [417] = {.lex_state = 203}, + [418] = {.lex_state = 216}, + [419] = {.lex_state = 216}, + [420] = {.lex_state = 216}, + [421] = {.lex_state = 216}, + [422] = {.lex_state = 233}, + [423] = {.lex_state = 246}, + [424] = {.lex_state = 154}, + [425] = {.lex_state = 234}, + [426] = {.lex_state = 233}, + [427] = {.lex_state = 246}, [428] = {.lex_state = 154}, - [429] = {.lex_state = 216}, - [430] = {.lex_state = 173}, + [429] = {.lex_state = 154}, + [430] = {.lex_state = 216}, [431] = {.lex_state = 216}, - [432] = {.lex_state = 234}, - [433] = {.lex_state = 248}, - [434] = {.lex_state = 223}, - [435] = {.lex_state = 210}, - [436] = {.lex_state = 210}, - [437] = {.lex_state = 198}, - [438] = {.lex_state = 233}, - [439] = {.lex_state = 246}, - [440] = {.lex_state = 210}, - [441] = {.lex_state = 162}, - [442] = {.lex_state = 217}, - [443] = {.lex_state = 253}, - [444] = {.lex_state = 209}, - [445] = {.lex_state = 217}, - [446] = {.lex_state = 253}, - [447] = {.lex_state = 217}, - [448] = {.lex_state = 217}, - [449] = {.lex_state = 216}, - [450] = {.lex_state = 234}, - [451] = {.lex_state = 154}, - [452] = {.lex_state = 154}, - [453] = {.lex_state = 216}, - [454] = {.lex_state = 216}, - [455] = {.lex_state = 154}, - [456] = {.lex_state = 154}, - [457] = {.lex_state = 223}, - [458] = {.lex_state = 198}, - [459] = {.lex_state = 209}, - [460] = {.lex_state = 162}, - [461] = {.lex_state = 154}, - [462] = {.lex_state = 154}, - [463] = {.lex_state = 216}, + [432] = {.lex_state = 219}, + [433] = {.lex_state = 154}, + [434] = {.lex_state = 154}, + [435] = {.lex_state = 203}, + [436] = {.lex_state = 154}, + [437] = {.lex_state = 216}, + [438] = {.lex_state = 170}, + [439] = {.lex_state = 216}, + [440] = {.lex_state = 234}, + [441] = {.lex_state = 248}, + [442] = {.lex_state = 223}, + [443] = {.lex_state = 210}, + [444] = {.lex_state = 210}, + [445] = {.lex_state = 203}, + [446] = {.lex_state = 233}, + [447] = {.lex_state = 246}, + [448] = {.lex_state = 210}, + [449] = {.lex_state = 162}, + [450] = {.lex_state = 217}, + [451] = {.lex_state = 253}, + [452] = {.lex_state = 209}, + [453] = {.lex_state = 217}, + [454] = {.lex_state = 253}, + [455] = {.lex_state = 217}, + [456] = {.lex_state = 217}, + [457] = {.lex_state = 216}, + [458] = {.lex_state = 234}, + [459] = {.lex_state = 154}, + [460] = {.lex_state = 154}, + [461] = {.lex_state = 216}, + [462] = {.lex_state = 216}, + [463] = {.lex_state = 154}, [464] = {.lex_state = 154}, - [465] = {.lex_state = 154}, - [466] = {.lex_state = 154}, - [467] = {.lex_state = 199}, - [468] = {.lex_state = 154}, - [469] = {.lex_state = 216}, + [465] = {.lex_state = 223}, + [466] = {.lex_state = 203}, + [467] = {.lex_state = 209}, + [468] = {.lex_state = 162}, + [469] = {.lex_state = 154}, [470] = {.lex_state = 154}, - [471] = {.lex_state = 154}, + [471] = {.lex_state = 216}, [472] = {.lex_state = 154}, - [473] = {.lex_state = 199}, + [473] = {.lex_state = 154}, [474] = {.lex_state = 154}, - [475] = {.lex_state = 154}, + [475] = {.lex_state = 165}, [476] = {.lex_state = 154}, - [477] = {.lex_state = 154}, + [477] = {.lex_state = 216}, [478] = {.lex_state = 154}, [479] = {.lex_state = 154}, - [480] = {.lex_state = 154}, + [480] = {.lex_state = 165}, [481] = {.lex_state = 154}, - [482] = {.lex_state = 154}, + [482] = {.lex_state = 165}, [483] = {.lex_state = 154}, [484] = {.lex_state = 154}, [485] = {.lex_state = 154}, @@ -6208,40 +6223,40 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [501] = {.lex_state = 154}, [502] = {.lex_state = 154}, [503] = {.lex_state = 154}, - [504] = {.lex_state = 154}, - [505] = {.lex_state = 209}, + [504] = {.lex_state = 209}, + [505] = {.lex_state = 154}, [506] = {.lex_state = 154}, [507] = {.lex_state = 154}, [508] = {.lex_state = 154}, [509] = {.lex_state = 154}, - [510] = {.lex_state = 209}, - [511] = {.lex_state = 209}, - [512] = {.lex_state = 209}, - [513] = {.lex_state = 209}, - [514] = {.lex_state = 209}, - [515] = {.lex_state = 209}, - [516] = {.lex_state = 209}, - [517] = {.lex_state = 209}, - [518] = {.lex_state = 209}, - [519] = {.lex_state = 154}, - [520] = {.lex_state = 154}, - [521] = {.lex_state = 248}, - [522] = {.lex_state = 248}, - [523] = {.lex_state = 250}, - [524] = {.lex_state = 154}, - [525] = {.lex_state = 154}, - [526] = {.lex_state = 154}, - [527] = {.lex_state = 154}, + [510] = {.lex_state = 154}, + [511] = {.lex_state = 154}, + [512] = {.lex_state = 154}, + [513] = {.lex_state = 154}, + [514] = {.lex_state = 154}, + [515] = {.lex_state = 154}, + [516] = {.lex_state = 154}, + [517] = {.lex_state = 154}, + [518] = {.lex_state = 154}, + [519] = {.lex_state = 209}, + [520] = {.lex_state = 209}, + [521] = {.lex_state = 209}, + [522] = {.lex_state = 209}, + [523] = {.lex_state = 209}, + [524] = {.lex_state = 209}, + [525] = {.lex_state = 209}, + [526] = {.lex_state = 209}, + [527] = {.lex_state = 209}, [528] = {.lex_state = 154}, [529] = {.lex_state = 154}, - [530] = {.lex_state = 154}, - [531] = {.lex_state = 154}, - [532] = {.lex_state = 154}, + [530] = {.lex_state = 248}, + [531] = {.lex_state = 248}, + [532] = {.lex_state = 250}, [533] = {.lex_state = 154}, [534] = {.lex_state = 154}, - [535] = {.lex_state = 248}, - [536] = {.lex_state = 248}, - [537] = {.lex_state = 248}, + [535] = {.lex_state = 154}, + [536] = {.lex_state = 154}, + [537] = {.lex_state = 154}, [538] = {.lex_state = 154}, [539] = {.lex_state = 154}, [540] = {.lex_state = 154}, @@ -6249,484 +6264,484 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 154}, [543] = {.lex_state = 154}, [544] = {.lex_state = 154}, - [545] = {.lex_state = 154}, - [546] = {.lex_state = 209}, + [545] = {.lex_state = 248}, + [546] = {.lex_state = 248}, [547] = {.lex_state = 248}, - [548] = {.lex_state = 248}, - [549] = {.lex_state = 248}, + [548] = {.lex_state = 154}, + [549] = {.lex_state = 154}, [550] = {.lex_state = 154}, [551] = {.lex_state = 154}, [552] = {.lex_state = 154}, - [553] = {.lex_state = 248}, - [554] = {.lex_state = 248}, - [555] = {.lex_state = 248}, - [556] = {.lex_state = 154}, - [557] = {.lex_state = 154}, - [558] = {.lex_state = 154}, - [559] = {.lex_state = 154}, + [553] = {.lex_state = 154}, + [554] = {.lex_state = 154}, + [555] = {.lex_state = 154}, + [556] = {.lex_state = 209}, + [557] = {.lex_state = 248}, + [558] = {.lex_state = 248}, + [559] = {.lex_state = 248}, [560] = {.lex_state = 154}, [561] = {.lex_state = 154}, [562] = {.lex_state = 154}, - [563] = {.lex_state = 215}, - [564] = {.lex_state = 215}, - [565] = {.lex_state = 154}, - [566] = {.lex_state = 210}, - [567] = {.lex_state = 215}, - [568] = {.lex_state = 215}, + [563] = {.lex_state = 248}, + [564] = {.lex_state = 248}, + [565] = {.lex_state = 248}, + [566] = {.lex_state = 154}, + [567] = {.lex_state = 154}, + [568] = {.lex_state = 154}, [569] = {.lex_state = 154}, [570] = {.lex_state = 154}, - [571] = {.lex_state = 215}, + [571] = {.lex_state = 154}, [572] = {.lex_state = 154}, [573] = {.lex_state = 215}, [574] = {.lex_state = 215}, - [575] = {.lex_state = 215}, - [576] = {.lex_state = 215}, - [577] = {.lex_state = 215}, + [575] = {.lex_state = 154}, + [576] = {.lex_state = 165}, + [577] = {.lex_state = 210}, [578] = {.lex_state = 154}, [579] = {.lex_state = 215}, - [580] = {.lex_state = 210}, - [581] = {.lex_state = 215}, - [582] = {.lex_state = 154}, - [583] = {.lex_state = 215}, + [580] = {.lex_state = 215}, + [581] = {.lex_state = 154}, + [582] = {.lex_state = 215}, + [583] = {.lex_state = 154}, [584] = {.lex_state = 215}, [585] = {.lex_state = 215}, [586] = {.lex_state = 215}, [587] = {.lex_state = 215}, [588] = {.lex_state = 215}, [589] = {.lex_state = 215}, - [590] = {.lex_state = 210}, - [591] = {.lex_state = 215}, + [590] = {.lex_state = 215}, + [591] = {.lex_state = 210}, [592] = {.lex_state = 215}, - [593] = {.lex_state = 251}, - [594] = {.lex_state = 251}, + [593] = {.lex_state = 154}, + [594] = {.lex_state = 154}, [595] = {.lex_state = 215}, [596] = {.lex_state = 215}, [597] = {.lex_state = 215}, [598] = {.lex_state = 215}, [599] = {.lex_state = 215}, - [600] = {.lex_state = 154}, - [601] = {.lex_state = 215}, - [602] = {.lex_state = 210}, - [603] = {.lex_state = 210}, - [604] = {.lex_state = 215}, + [600] = {.lex_state = 215}, + [601] = {.lex_state = 210}, + [602] = {.lex_state = 215}, + [603] = {.lex_state = 215}, + [604] = {.lex_state = 251}, [605] = {.lex_state = 251}, - [606] = {.lex_state = 251}, - [607] = {.lex_state = 251}, + [606] = {.lex_state = 215}, + [607] = {.lex_state = 215}, [608] = {.lex_state = 215}, [609] = {.lex_state = 215}, - [610] = {.lex_state = 154}, - [611] = {.lex_state = 215}, + [610] = {.lex_state = 215}, + [611] = {.lex_state = 154}, [612] = {.lex_state = 215}, - [613] = {.lex_state = 215}, - [614] = {.lex_state = 215}, - [615] = {.lex_state = 210}, - [616] = {.lex_state = 251}, + [613] = {.lex_state = 210}, + [614] = {.lex_state = 210}, + [615] = {.lex_state = 154}, + [616] = {.lex_state = 215}, [617] = {.lex_state = 251}, [618] = {.lex_state = 251}, - [619] = {.lex_state = 215}, + [619] = {.lex_state = 251}, [620] = {.lex_state = 215}, - [621] = {.lex_state = 154}, - [622] = {.lex_state = 251}, - [623] = {.lex_state = 251}, - [624] = {.lex_state = 251}, + [621] = {.lex_state = 215}, + [622] = {.lex_state = 154}, + [623] = {.lex_state = 215}, + [624] = {.lex_state = 215}, [625] = {.lex_state = 215}, - [626] = {.lex_state = 154}, - [627] = {.lex_state = 215}, - [628] = {.lex_state = 154}, - [629] = {.lex_state = 215}, - [630] = {.lex_state = 154}, + [626] = {.lex_state = 215}, + [627] = {.lex_state = 210}, + [628] = {.lex_state = 251}, + [629] = {.lex_state = 251}, + [630] = {.lex_state = 251}, [631] = {.lex_state = 215}, - [632] = {.lex_state = 220}, - [633] = {.lex_state = 220}, - [634] = {.lex_state = 215}, - [635] = {.lex_state = 215}, - [636] = {.lex_state = 220}, - [637] = {.lex_state = 220}, + [632] = {.lex_state = 215}, + [633] = {.lex_state = 154}, + [634] = {.lex_state = 251}, + [635] = {.lex_state = 251}, + [636] = {.lex_state = 251}, + [637] = {.lex_state = 215}, [638] = {.lex_state = 154}, - [639] = {.lex_state = 154}, - [640] = {.lex_state = 220}, - [641] = {.lex_state = 154}, - [642] = {.lex_state = 220}, - [643] = {.lex_state = 220}, + [639] = {.lex_state = 215}, + [640] = {.lex_state = 154}, + [641] = {.lex_state = 215}, + [642] = {.lex_state = 154}, + [643] = {.lex_state = 215}, [644] = {.lex_state = 220}, [645] = {.lex_state = 220}, - [646] = {.lex_state = 220}, - [647] = {.lex_state = 215}, - [648] = {.lex_state = 220}, + [646] = {.lex_state = 154}, + [647] = {.lex_state = 165}, + [648] = {.lex_state = 215}, [649] = {.lex_state = 215}, [650] = {.lex_state = 220}, - [651] = {.lex_state = 154}, - [652] = {.lex_state = 220}, + [651] = {.lex_state = 220}, + [652] = {.lex_state = 154}, [653] = {.lex_state = 220}, - [654] = {.lex_state = 220}, + [654] = {.lex_state = 154}, [655] = {.lex_state = 220}, [656] = {.lex_state = 220}, [657] = {.lex_state = 220}, [658] = {.lex_state = 220}, - [659] = {.lex_state = 215}, + [659] = {.lex_state = 220}, [660] = {.lex_state = 220}, [661] = {.lex_state = 220}, - [662] = {.lex_state = 220}, + [662] = {.lex_state = 215}, [663] = {.lex_state = 220}, - [664] = {.lex_state = 220}, - [665] = {.lex_state = 220}, + [664] = {.lex_state = 154}, + [665] = {.lex_state = 215}, [666] = {.lex_state = 220}, - [667] = {.lex_state = 154}, + [667] = {.lex_state = 220}, [668] = {.lex_state = 220}, - [669] = {.lex_state = 215}, - [670] = {.lex_state = 215}, + [669] = {.lex_state = 220}, + [670] = {.lex_state = 220}, [671] = {.lex_state = 220}, - [672] = {.lex_state = 220}, + [672] = {.lex_state = 215}, [673] = {.lex_state = 220}, - [674] = {.lex_state = 154}, + [674] = {.lex_state = 220}, [675] = {.lex_state = 220}, [676] = {.lex_state = 220}, [677] = {.lex_state = 220}, [678] = {.lex_state = 220}, - [679] = {.lex_state = 215}, - [680] = {.lex_state = 220}, + [679] = {.lex_state = 220}, + [680] = {.lex_state = 154}, [681] = {.lex_state = 220}, - [682] = {.lex_state = 154}, - [683] = {.lex_state = 220}, - [684] = {.lex_state = 154}, + [682] = {.lex_state = 215}, + [683] = {.lex_state = 215}, + [684] = {.lex_state = 215}, [685] = {.lex_state = 220}, - [686] = {.lex_state = 154}, + [686] = {.lex_state = 220}, [687] = {.lex_state = 220}, [688] = {.lex_state = 154}, [689] = {.lex_state = 220}, - [690] = {.lex_state = 154}, - [691] = {.lex_state = 154}, + [690] = {.lex_state = 220}, + [691] = {.lex_state = 220}, [692] = {.lex_state = 220}, - [693] = {.lex_state = 220}, - [694] = {.lex_state = 154}, - [695] = {.lex_state = 154}, + [693] = {.lex_state = 215}, + [694] = {.lex_state = 220}, + [695] = {.lex_state = 220}, [696] = {.lex_state = 154}, - [697] = {.lex_state = 154}, + [697] = {.lex_state = 220}, [698] = {.lex_state = 154}, - [699] = {.lex_state = 154}, + [699] = {.lex_state = 220}, [700] = {.lex_state = 154}, - [701] = {.lex_state = 154}, - [702] = {.lex_state = 220}, - [703] = {.lex_state = 154}, - [704] = {.lex_state = 220}, - [705] = {.lex_state = 215}, + [701] = {.lex_state = 220}, + [702] = {.lex_state = 154}, + [703] = {.lex_state = 220}, + [704] = {.lex_state = 154}, + [705] = {.lex_state = 154}, [706] = {.lex_state = 154}, - [707] = {.lex_state = 154}, - [708] = {.lex_state = 154}, + [707] = {.lex_state = 220}, + [708] = {.lex_state = 220}, [709] = {.lex_state = 154}, [710] = {.lex_state = 154}, - [711] = {.lex_state = 220}, + [711] = {.lex_state = 154}, [712] = {.lex_state = 154}, [713] = {.lex_state = 154}, [714] = {.lex_state = 154}, - [715] = {.lex_state = 220}, - [716] = {.lex_state = 220}, + [715] = {.lex_state = 154}, + [716] = {.lex_state = 154}, [717] = {.lex_state = 154}, - [718] = {.lex_state = 154}, - [719] = {.lex_state = 154}, + [718] = {.lex_state = 220}, + [719] = {.lex_state = 215}, [720] = {.lex_state = 220}, [721] = {.lex_state = 154}, [722] = {.lex_state = 154}, [723] = {.lex_state = 154}, [724] = {.lex_state = 154}, - [725] = {.lex_state = 154}, + [725] = {.lex_state = 220}, [726] = {.lex_state = 154}, [727] = {.lex_state = 154}, [728] = {.lex_state = 154}, - [729] = {.lex_state = 154}, - [730] = {.lex_state = 248}, - [731] = {.lex_state = 248}, - [732] = {.lex_state = 220}, - [733] = {.lex_state = 248}, - [734] = {.lex_state = 248}, - [735] = {.lex_state = 248}, - [736] = {.lex_state = 248}, - [737] = {.lex_state = 251}, - [738] = {.lex_state = 251}, - [739] = {.lex_state = 251}, - [740] = {.lex_state = 251}, - [741] = {.lex_state = 251}, - [742] = {.lex_state = 251}, + [729] = {.lex_state = 220}, + [730] = {.lex_state = 220}, + [731] = {.lex_state = 220}, + [732] = {.lex_state = 154}, + [733] = {.lex_state = 154}, + [734] = {.lex_state = 154}, + [735] = {.lex_state = 220}, + [736] = {.lex_state = 154}, + [737] = {.lex_state = 154}, + [738] = {.lex_state = 154}, + [739] = {.lex_state = 154}, + [740] = {.lex_state = 154}, + [741] = {.lex_state = 154}, + [742] = {.lex_state = 154}, [743] = {.lex_state = 154}, [744] = {.lex_state = 154}, - [745] = {.lex_state = 165}, - [746] = {.lex_state = 154}, - [747] = {.lex_state = 173}, - [748] = {.lex_state = 154}, - [749] = {.lex_state = 154}, - [750] = {.lex_state = 193}, - [751] = {.lex_state = 154}, - [752] = {.lex_state = 154}, - [753] = {.lex_state = 199}, - [754] = {.lex_state = 154}, - [755] = {.lex_state = 154}, - [756] = {.lex_state = 154}, - [757] = {.lex_state = 154}, - [758] = {.lex_state = 199}, + [745] = {.lex_state = 248}, + [746] = {.lex_state = 248}, + [747] = {.lex_state = 220}, + [748] = {.lex_state = 248}, + [749] = {.lex_state = 248}, + [750] = {.lex_state = 248}, + [751] = {.lex_state = 248}, + [752] = {.lex_state = 251}, + [753] = {.lex_state = 251}, + [754] = {.lex_state = 251}, + [755] = {.lex_state = 251}, + [756] = {.lex_state = 251}, + [757] = {.lex_state = 251}, + [758] = {.lex_state = 154}, [759] = {.lex_state = 154}, - [760] = {.lex_state = 154}, - [761] = {.lex_state = 209}, - [762] = {.lex_state = 165}, - [763] = {.lex_state = 199}, - [764] = {.lex_state = 154}, - [765] = {.lex_state = 213}, - [766] = {.lex_state = 215}, - [767] = {.lex_state = 216}, - [768] = {.lex_state = 216}, - [769] = {.lex_state = 216}, - [770] = {.lex_state = 215}, + [760] = {.lex_state = 165}, + [761] = {.lex_state = 154}, + [762] = {.lex_state = 170}, + [763] = {.lex_state = 154}, + [764] = {.lex_state = 190}, + [765] = {.lex_state = 154}, + [766] = {.lex_state = 198}, + [767] = {.lex_state = 154}, + [768] = {.lex_state = 154}, + [769] = {.lex_state = 154}, + [770] = {.lex_state = 154}, [771] = {.lex_state = 154}, [772] = {.lex_state = 154}, - [773] = {.lex_state = 154}, - [774] = {.lex_state = 199}, - [775] = {.lex_state = 218}, - [776] = {.lex_state = 199}, - [777] = {.lex_state = 199}, - [778] = {.lex_state = 199}, - [779] = {.lex_state = 216}, - [780] = {.lex_state = 154}, - [781] = {.lex_state = 223}, - [782] = {.lex_state = 215}, - [783] = {.lex_state = 199}, - [784] = {.lex_state = 223}, - [785] = {.lex_state = 215}, + [773] = {.lex_state = 165}, + [774] = {.lex_state = 154}, + [775] = {.lex_state = 154}, + [776] = {.lex_state = 209}, + [777] = {.lex_state = 154}, + [778] = {.lex_state = 213}, + [779] = {.lex_state = 215}, + [780] = {.lex_state = 216}, + [781] = {.lex_state = 216}, + [782] = {.lex_state = 216}, + [783] = {.lex_state = 190}, + [784] = {.lex_state = 215}, + [785] = {.lex_state = 154}, [786] = {.lex_state = 154}, [787] = {.lex_state = 154}, - [788] = {.lex_state = 154}, - [789] = {.lex_state = 213}, - [790] = {.lex_state = 173}, - [791] = {.lex_state = 199}, - [792] = {.lex_state = 199}, - [793] = {.lex_state = 248}, - [794] = {.lex_state = 248}, + [788] = {.lex_state = 165}, + [789] = {.lex_state = 218}, + [790] = {.lex_state = 190}, + [791] = {.lex_state = 165}, + [792] = {.lex_state = 165}, + [793] = {.lex_state = 165}, + [794] = {.lex_state = 216}, [795] = {.lex_state = 154}, - [796] = {.lex_state = 199}, - [797] = {.lex_state = 223}, - [798] = {.lex_state = 199}, - [799] = {.lex_state = 199}, - [800] = {.lex_state = 219}, - [801] = {.lex_state = 223}, + [796] = {.lex_state = 223}, + [797] = {.lex_state = 215}, + [798] = {.lex_state = 165}, + [799] = {.lex_state = 223}, + [800] = {.lex_state = 215}, + [801] = {.lex_state = 154}, [802] = {.lex_state = 154}, [803] = {.lex_state = 154}, [804] = {.lex_state = 213}, - [805] = {.lex_state = 248}, - [806] = {.lex_state = 223}, - [807] = {.lex_state = 248}, - [808] = {.lex_state = 223}, - [809] = {.lex_state = 199}, - [810] = {.lex_state = 154}, - [811] = {.lex_state = 199}, - [812] = {.lex_state = 216}, - [813] = {.lex_state = 219}, - [814] = {.lex_state = 223}, - [815] = {.lex_state = 223}, - [816] = {.lex_state = 154}, - [817] = {.lex_state = 216}, - [818] = {.lex_state = 216}, - [819] = {.lex_state = 219}, - [820] = {.lex_state = 216}, - [821] = {.lex_state = 216}, - [822] = {.lex_state = 216}, - [823] = {.lex_state = 154}, - [824] = {.lex_state = 165}, - [825] = {.lex_state = 173}, + [805] = {.lex_state = 170}, + [806] = {.lex_state = 190}, + [807] = {.lex_state = 165}, + [808] = {.lex_state = 165}, + [809] = {.lex_state = 248}, + [810] = {.lex_state = 248}, + [811] = {.lex_state = 154}, + [812] = {.lex_state = 165}, + [813] = {.lex_state = 223}, + [814] = {.lex_state = 165}, + [815] = {.lex_state = 165}, + [816] = {.lex_state = 219}, + [817] = {.lex_state = 223}, + [818] = {.lex_state = 154}, + [819] = {.lex_state = 154}, + [820] = {.lex_state = 213}, + [821] = {.lex_state = 248}, + [822] = {.lex_state = 223}, + [823] = {.lex_state = 248}, + [824] = {.lex_state = 223}, + [825] = {.lex_state = 165}, [826] = {.lex_state = 154}, - [827] = {.lex_state = 193}, - [828] = {.lex_state = 154}, - [829] = {.lex_state = 199}, - [830] = {.lex_state = 154}, - [831] = {.lex_state = 154}, + [827] = {.lex_state = 165}, + [828] = {.lex_state = 216}, + [829] = {.lex_state = 219}, + [830] = {.lex_state = 223}, + [831] = {.lex_state = 223}, [832] = {.lex_state = 154}, - [833] = {.lex_state = 154}, - [834] = {.lex_state = 199}, - [835] = {.lex_state = 154}, - [836] = {.lex_state = 154}, - [837] = {.lex_state = 165}, - [838] = {.lex_state = 199}, - [839] = {.lex_state = 154}, - [840] = {.lex_state = 213}, - [841] = {.lex_state = 215}, - [842] = {.lex_state = 216}, - [843] = {.lex_state = 216}, - [844] = {.lex_state = 215}, - [845] = {.lex_state = 154}, + [833] = {.lex_state = 216}, + [834] = {.lex_state = 216}, + [835] = {.lex_state = 219}, + [836] = {.lex_state = 216}, + [837] = {.lex_state = 216}, + [838] = {.lex_state = 216}, + [839] = {.lex_state = 165}, + [840] = {.lex_state = 154}, + [841] = {.lex_state = 165}, + [842] = {.lex_state = 170}, + [843] = {.lex_state = 190}, + [844] = {.lex_state = 154}, + [845] = {.lex_state = 198}, [846] = {.lex_state = 154}, - [847] = {.lex_state = 199}, - [848] = {.lex_state = 218}, - [849] = {.lex_state = 199}, - [850] = {.lex_state = 199}, - [851] = {.lex_state = 199}, + [847] = {.lex_state = 154}, + [848] = {.lex_state = 154}, + [849] = {.lex_state = 154}, + [850] = {.lex_state = 154}, + [851] = {.lex_state = 165}, [852] = {.lex_state = 154}, - [853] = {.lex_state = 223}, - [854] = {.lex_state = 215}, - [855] = {.lex_state = 199}, - [856] = {.lex_state = 223}, - [857] = {.lex_state = 215}, - [858] = {.lex_state = 154}, - [859] = {.lex_state = 154}, - [860] = {.lex_state = 154}, - [861] = {.lex_state = 213}, - [862] = {.lex_state = 173}, - [863] = {.lex_state = 199}, - [864] = {.lex_state = 248}, - [865] = {.lex_state = 248}, - [866] = {.lex_state = 154}, - [867] = {.lex_state = 199}, - [868] = {.lex_state = 223}, - [869] = {.lex_state = 199}, - [870] = {.lex_state = 199}, - [871] = {.lex_state = 219}, - [872] = {.lex_state = 223}, - [873] = {.lex_state = 154}, - [874] = {.lex_state = 154}, - [875] = {.lex_state = 213}, - [876] = {.lex_state = 248}, - [877] = {.lex_state = 223}, - [878] = {.lex_state = 248}, - [879] = {.lex_state = 223}, - [880] = {.lex_state = 199}, - [881] = {.lex_state = 154}, - [882] = {.lex_state = 199}, - [883] = {.lex_state = 216}, - [884] = {.lex_state = 219}, - [885] = {.lex_state = 223}, + [853] = {.lex_state = 154}, + [854] = {.lex_state = 154}, + [855] = {.lex_state = 213}, + [856] = {.lex_state = 215}, + [857] = {.lex_state = 216}, + [858] = {.lex_state = 216}, + [859] = {.lex_state = 190}, + [860] = {.lex_state = 215}, + [861] = {.lex_state = 154}, + [862] = {.lex_state = 154}, + [863] = {.lex_state = 165}, + [864] = {.lex_state = 218}, + [865] = {.lex_state = 190}, + [866] = {.lex_state = 165}, + [867] = {.lex_state = 165}, + [868] = {.lex_state = 165}, + [869] = {.lex_state = 154}, + [870] = {.lex_state = 223}, + [871] = {.lex_state = 215}, + [872] = {.lex_state = 165}, + [873] = {.lex_state = 223}, + [874] = {.lex_state = 215}, + [875] = {.lex_state = 154}, + [876] = {.lex_state = 154}, + [877] = {.lex_state = 154}, + [878] = {.lex_state = 213}, + [879] = {.lex_state = 170}, + [880] = {.lex_state = 190}, + [881] = {.lex_state = 165}, + [882] = {.lex_state = 248}, + [883] = {.lex_state = 248}, + [884] = {.lex_state = 154}, + [885] = {.lex_state = 165}, [886] = {.lex_state = 223}, - [887] = {.lex_state = 154}, - [888] = {.lex_state = 216}, - [889] = {.lex_state = 216}, - [890] = {.lex_state = 219}, - [891] = {.lex_state = 216}, - [892] = {.lex_state = 216}, - [893] = {.lex_state = 216}, - [894] = {.lex_state = 154}, - [895] = {.lex_state = 165}, - [896] = {.lex_state = 173}, - [897] = {.lex_state = 154}, - [898] = {.lex_state = 193}, + [887] = {.lex_state = 165}, + [888] = {.lex_state = 165}, + [889] = {.lex_state = 219}, + [890] = {.lex_state = 223}, + [891] = {.lex_state = 154}, + [892] = {.lex_state = 154}, + [893] = {.lex_state = 213}, + [894] = {.lex_state = 248}, + [895] = {.lex_state = 223}, + [896] = {.lex_state = 248}, + [897] = {.lex_state = 223}, + [898] = {.lex_state = 165}, [899] = {.lex_state = 154}, - [900] = {.lex_state = 199}, - [901] = {.lex_state = 154}, - [902] = {.lex_state = 154}, - [903] = {.lex_state = 154}, - [904] = {.lex_state = 154}, - [905] = {.lex_state = 199}, - [906] = {.lex_state = 154}, - [907] = {.lex_state = 154}, - [908] = {.lex_state = 165}, - [909] = {.lex_state = 199}, - [910] = {.lex_state = 154}, - [911] = {.lex_state = 213}, - [912] = {.lex_state = 215}, - [913] = {.lex_state = 216}, - [914] = {.lex_state = 216}, - [915] = {.lex_state = 215}, + [900] = {.lex_state = 165}, + [901] = {.lex_state = 216}, + [902] = {.lex_state = 219}, + [903] = {.lex_state = 223}, + [904] = {.lex_state = 223}, + [905] = {.lex_state = 154}, + [906] = {.lex_state = 216}, + [907] = {.lex_state = 216}, + [908] = {.lex_state = 219}, + [909] = {.lex_state = 216}, + [910] = {.lex_state = 216}, + [911] = {.lex_state = 216}, + [912] = {.lex_state = 154}, + [913] = {.lex_state = 165}, + [914] = {.lex_state = 170}, + [915] = {.lex_state = 190}, [916] = {.lex_state = 154}, - [917] = {.lex_state = 154}, - [918] = {.lex_state = 199}, - [919] = {.lex_state = 218}, - [920] = {.lex_state = 199}, - [921] = {.lex_state = 199}, + [917] = {.lex_state = 198}, + [918] = {.lex_state = 154}, + [919] = {.lex_state = 154}, + [920] = {.lex_state = 154}, + [921] = {.lex_state = 154}, [922] = {.lex_state = 154}, - [923] = {.lex_state = 223}, - [924] = {.lex_state = 215}, - [925] = {.lex_state = 199}, - [926] = {.lex_state = 223}, - [927] = {.lex_state = 215}, - [928] = {.lex_state = 154}, - [929] = {.lex_state = 154}, - [930] = {.lex_state = 154}, - [931] = {.lex_state = 213}, - [932] = {.lex_state = 173}, - [933] = {.lex_state = 199}, - [934] = {.lex_state = 223}, - [935] = {.lex_state = 199}, - [936] = {.lex_state = 199}, - [937] = {.lex_state = 219}, - [938] = {.lex_state = 223}, - [939] = {.lex_state = 154}, + [923] = {.lex_state = 165}, + [924] = {.lex_state = 154}, + [925] = {.lex_state = 154}, + [926] = {.lex_state = 154}, + [927] = {.lex_state = 213}, + [928] = {.lex_state = 215}, + [929] = {.lex_state = 216}, + [930] = {.lex_state = 216}, + [931] = {.lex_state = 190}, + [932] = {.lex_state = 215}, + [933] = {.lex_state = 154}, + [934] = {.lex_state = 154}, + [935] = {.lex_state = 165}, + [936] = {.lex_state = 218}, + [937] = {.lex_state = 190}, + [938] = {.lex_state = 165}, + [939] = {.lex_state = 165}, [940] = {.lex_state = 154}, - [941] = {.lex_state = 213}, - [942] = {.lex_state = 199}, - [943] = {.lex_state = 216}, - [944] = {.lex_state = 219}, - [945] = {.lex_state = 216}, - [946] = {.lex_state = 216}, - [947] = {.lex_state = 219}, - [948] = {.lex_state = 216}, - [949] = {.lex_state = 216}, - [950] = {.lex_state = 216}, - [951] = {.lex_state = 154}, + [941] = {.lex_state = 223}, + [942] = {.lex_state = 215}, + [943] = {.lex_state = 165}, + [944] = {.lex_state = 223}, + [945] = {.lex_state = 215}, + [946] = {.lex_state = 154}, + [947] = {.lex_state = 154}, + [948] = {.lex_state = 154}, + [949] = {.lex_state = 213}, + [950] = {.lex_state = 170}, + [951] = {.lex_state = 190}, [952] = {.lex_state = 165}, - [953] = {.lex_state = 173}, - [954] = {.lex_state = 154}, - [955] = {.lex_state = 154}, - [956] = {.lex_state = 154}, - [957] = {.lex_state = 154}, + [953] = {.lex_state = 223}, + [954] = {.lex_state = 165}, + [955] = {.lex_state = 165}, + [956] = {.lex_state = 219}, + [957] = {.lex_state = 223}, [958] = {.lex_state = 154}, [959] = {.lex_state = 154}, - [960] = {.lex_state = 199}, - [961] = {.lex_state = 154}, - [962] = {.lex_state = 165}, - [963] = {.lex_state = 199}, - [964] = {.lex_state = 154}, - [965] = {.lex_state = 213}, - [966] = {.lex_state = 216}, + [960] = {.lex_state = 213}, + [961] = {.lex_state = 165}, + [962] = {.lex_state = 216}, + [963] = {.lex_state = 219}, + [964] = {.lex_state = 216}, + [965] = {.lex_state = 216}, + [966] = {.lex_state = 219}, [967] = {.lex_state = 216}, - [968] = {.lex_state = 154}, - [969] = {.lex_state = 199}, - [970] = {.lex_state = 218}, - [971] = {.lex_state = 154}, - [972] = {.lex_state = 154}, - [973] = {.lex_state = 213}, - [974] = {.lex_state = 173}, - [975] = {.lex_state = 219}, + [968] = {.lex_state = 216}, + [969] = {.lex_state = 216}, + [970] = {.lex_state = 154}, + [971] = {.lex_state = 170}, + [972] = {.lex_state = 190}, + [973] = {.lex_state = 154}, + [974] = {.lex_state = 154}, + [975] = {.lex_state = 154}, [976] = {.lex_state = 154}, - [977] = {.lex_state = 213}, - [978] = {.lex_state = 216}, - [979] = {.lex_state = 219}, - [980] = {.lex_state = 216}, - [981] = {.lex_state = 216}, - [982] = {.lex_state = 219}, + [977] = {.lex_state = 154}, + [978] = {.lex_state = 154}, + [979] = {.lex_state = 165}, + [980] = {.lex_state = 154}, + [981] = {.lex_state = 154}, + [982] = {.lex_state = 213}, [983] = {.lex_state = 216}, [984] = {.lex_state = 216}, - [985] = {.lex_state = 216}, - [986] = {.lex_state = 173}, - [987] = {.lex_state = 213}, - [988] = {.lex_state = 216}, - [989] = {.lex_state = 216}, - [990] = {.lex_state = 218}, + [985] = {.lex_state = 190}, + [986] = {.lex_state = 154}, + [987] = {.lex_state = 165}, + [988] = {.lex_state = 218}, + [989] = {.lex_state = 190}, + [990] = {.lex_state = 154}, [991] = {.lex_state = 154}, [992] = {.lex_state = 213}, - [993] = {.lex_state = 173}, - [994] = {.lex_state = 213}, - [995] = {.lex_state = 173}, - [996] = {.lex_state = 213}, - [997] = {.lex_state = 218}, - [998] = {.lex_state = 213}, - [999] = {.lex_state = 173}, - [1000] = {.lex_state = 213}, - [1001] = {.lex_state = 154}, - [1002] = {.lex_state = 191}, - [1003] = {.lex_state = 154}, - [1004] = {.lex_state = 154}, - [1005] = {.lex_state = 154}, - [1006] = {.lex_state = 154}, - [1007] = {.lex_state = 154}, - [1008] = {.lex_state = 154}, - [1009] = {.lex_state = 154}, - [1010] = {.lex_state = 154}, + [993] = {.lex_state = 170}, + [994] = {.lex_state = 190}, + [995] = {.lex_state = 219}, + [996] = {.lex_state = 154}, + [997] = {.lex_state = 213}, + [998] = {.lex_state = 216}, + [999] = {.lex_state = 219}, + [1000] = {.lex_state = 216}, + [1001] = {.lex_state = 216}, + [1002] = {.lex_state = 219}, + [1003] = {.lex_state = 216}, + [1004] = {.lex_state = 216}, + [1005] = {.lex_state = 216}, + [1006] = {.lex_state = 170}, + [1007] = {.lex_state = 213}, + [1008] = {.lex_state = 216}, + [1009] = {.lex_state = 216}, + [1010] = {.lex_state = 218}, [1011] = {.lex_state = 154}, - [1012] = {.lex_state = 154}, - [1013] = {.lex_state = 154}, - [1014] = {.lex_state = 191}, - [1015] = {.lex_state = 154}, - [1016] = {.lex_state = 154}, - [1017] = {.lex_state = 199}, - [1018] = {.lex_state = 154}, - [1019] = {.lex_state = 199}, - [1020] = {.lex_state = 154}, - [1021] = {.lex_state = 191}, - [1022] = {.lex_state = 154}, + [1012] = {.lex_state = 213}, + [1013] = {.lex_state = 170}, + [1014] = {.lex_state = 213}, + [1015] = {.lex_state = 170}, + [1016] = {.lex_state = 213}, + [1017] = {.lex_state = 218}, + [1018] = {.lex_state = 213}, + [1019] = {.lex_state = 170}, + [1020] = {.lex_state = 213}, + [1021] = {.lex_state = 154}, + [1022] = {.lex_state = 188}, [1023] = {.lex_state = 154}, [1024] = {.lex_state = 154}, [1025] = {.lex_state = 154}, @@ -6734,36 +6749,36 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1027] = {.lex_state = 154}, [1028] = {.lex_state = 154}, [1029] = {.lex_state = 154}, - [1030] = {.lex_state = 191}, + [1030] = {.lex_state = 154}, [1031] = {.lex_state = 154}, [1032] = {.lex_state = 154}, - [1033] = {.lex_state = 199}, + [1033] = {.lex_state = 154}, [1034] = {.lex_state = 154}, - [1035] = {.lex_state = 199}, + [1035] = {.lex_state = 188}, [1036] = {.lex_state = 154}, - [1037] = {.lex_state = 191}, - [1038] = {.lex_state = 154}, + [1037] = {.lex_state = 154}, + [1038] = {.lex_state = 165}, [1039] = {.lex_state = 154}, - [1040] = {.lex_state = 154}, + [1040] = {.lex_state = 165}, [1041] = {.lex_state = 154}, - [1042] = {.lex_state = 154}, + [1042] = {.lex_state = 188}, [1043] = {.lex_state = 154}, [1044] = {.lex_state = 154}, [1045] = {.lex_state = 154}, [1046] = {.lex_state = 154}, - [1047] = {.lex_state = 199}, + [1047] = {.lex_state = 154}, [1048] = {.lex_state = 154}, - [1049] = {.lex_state = 199}, + [1049] = {.lex_state = 154}, [1050] = {.lex_state = 154}, [1051] = {.lex_state = 154}, - [1052] = {.lex_state = 154}, + [1052] = {.lex_state = 188}, [1053] = {.lex_state = 154}, [1054] = {.lex_state = 154}, - [1055] = {.lex_state = 154}, - [1056] = {.lex_state = 199}, - [1057] = {.lex_state = 154}, - [1058] = {.lex_state = 199}, - [1059] = {.lex_state = 154}, + [1055] = {.lex_state = 165}, + [1056] = {.lex_state = 154}, + [1057] = {.lex_state = 165}, + [1058] = {.lex_state = 154}, + [1059] = {.lex_state = 188}, [1060] = {.lex_state = 154}, [1061] = {.lex_state = 154}, [1062] = {.lex_state = 154}, @@ -6773,10 +6788,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1066] = {.lex_state = 154}, [1067] = {.lex_state = 154}, [1068] = {.lex_state = 154}, - [1069] = {.lex_state = 199}, - [1070] = {.lex_state = 154}, + [1069] = {.lex_state = 154}, + [1070] = {.lex_state = 165}, [1071] = {.lex_state = 154}, - [1072] = {.lex_state = 154}, + [1072] = {.lex_state = 165}, [1073] = {.lex_state = 154}, [1074] = {.lex_state = 154}, [1075] = {.lex_state = 154}, @@ -6784,49 +6799,73 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1077] = {.lex_state = 154}, [1078] = {.lex_state = 154}, [1079] = {.lex_state = 154}, - [1080] = {.lex_state = 199}, + [1080] = {.lex_state = 165}, [1081] = {.lex_state = 154}, - [1082] = {.lex_state = 154}, + [1082] = {.lex_state = 165}, [1083] = {.lex_state = 154}, [1084] = {.lex_state = 154}, - [1085] = {.lex_state = 199}, + [1085] = {.lex_state = 154}, [1086] = {.lex_state = 154}, [1087] = {.lex_state = 154}, - [1088] = {.lex_state = 199}, - [1089] = {.lex_state = 154}, + [1088] = {.lex_state = 154}, + [1089] = {.lex_state = 165}, [1090] = {.lex_state = 154}, [1091] = {.lex_state = 154}, [1092] = {.lex_state = 154}, - [1093] = {.lex_state = 199}, - [1094] = {.lex_state = 154}, - [1095] = {.lex_state = 219}, - [1096] = {.lex_state = 216}, - [1097] = {.lex_state = 219}, - [1098] = {.lex_state = 216}, - [1099] = {.lex_state = 216}, - [1100] = {.lex_state = 219}, - [1101] = {.lex_state = 216}, - [1102] = {.lex_state = 216}, - [1103] = {.lex_state = 216}, + [1093] = {.lex_state = 154}, + [1094] = {.lex_state = 165}, + [1095] = {.lex_state = 154}, + [1096] = {.lex_state = 154}, + [1097] = {.lex_state = 154}, + [1098] = {.lex_state = 154}, + [1099] = {.lex_state = 154}, + [1100] = {.lex_state = 154}, + [1101] = {.lex_state = 154}, + [1102] = {.lex_state = 154}, + [1103] = {.lex_state = 154}, [1104] = {.lex_state = 154}, - [1105] = {.lex_state = 154}, + [1105] = {.lex_state = 165}, [1106] = {.lex_state = 154}, [1107] = {.lex_state = 154}, - [1108] = {.lex_state = 199}, + [1108] = {.lex_state = 154}, [1109] = {.lex_state = 154}, - [1110] = {.lex_state = 199}, + [1110] = {.lex_state = 165}, [1111] = {.lex_state = 154}, - [1112] = {.lex_state = 199}, - [1113] = {.lex_state = 154}, + [1112] = {.lex_state = 154}, + [1113] = {.lex_state = 165}, + [1114] = {.lex_state = 154}, + [1115] = {.lex_state = 154}, + [1116] = {.lex_state = 154}, + [1117] = {.lex_state = 154}, + [1118] = {.lex_state = 154}, + [1119] = {.lex_state = 219}, + [1120] = {.lex_state = 216}, + [1121] = {.lex_state = 219}, + [1122] = {.lex_state = 216}, + [1123] = {.lex_state = 216}, + [1124] = {.lex_state = 219}, + [1125] = {.lex_state = 216}, + [1126] = {.lex_state = 216}, + [1127] = {.lex_state = 216}, + [1128] = {.lex_state = 154}, + [1129] = {.lex_state = 154}, + [1130] = {.lex_state = 154}, + [1131] = {.lex_state = 154}, + [1132] = {.lex_state = 165}, + [1133] = {.lex_state = 154}, + [1134] = {.lex_state = 165}, + [1135] = {.lex_state = 154}, + [1136] = {.lex_state = 165}, + [1137] = {.lex_state = 154}, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [0] = { [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_case] = ACTIONS(1), - [sym_null] = ACTIONS(1), + [sym_false] = ACTIONS(1), [anon_sym_restrict] = ACTIONS(1), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1), [anon_sym_PERCENT_EQ] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_goto] = ACTIONS(1), @@ -6842,6 +6881,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), [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_LT_LT_EQ] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), @@ -6852,6 +6892,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1), [sym_number_literal] = ACTIONS(1), [anon_sym_volatile] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_extern] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_struct] = ACTIONS(1), @@ -6864,14 +6905,14 @@ 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_SQUOTE] = ACTIONS(1), + [anon_sym_L] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_DQUOTE] = 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), @@ -6882,12 +6923,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token1] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_LPAREN2] = ACTIONS(1), [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), - [sym_true] = ACTIONS(1), [sym_primitive_type] = ACTIONS(1), [anon_sym_STAR_EQ] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), @@ -6897,15 +6938,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_include_token1] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_static] = ACTIONS(1), - [sym_escape_sequence] = ACTIONS(1), [anon_sym_register] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_switch] = ACTIONS(1), - [sym_false] = ACTIONS(1), + [sym_true] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), + [sym_null] = ACTIONS(1), [anon_sym_SLASH_EQ] = ACTIONS(1), [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), @@ -6922,1883 +6962,1859 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1), }, [1] = { - [sym_continue_statement] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(42), - [sym_declaration] = STATE(39), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_comma_expression] = STATE(37), - [sym_equality_expression] = STATE(42), - [sym_type_definition] = STATE(39), - [sym_sizeof_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(42), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_conditional_expression] = STATE(42), - [sym_preproc_ifdef] = STATE(39), - [sym_relational_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym_logical_expression] = STATE(42), - [sym_function_definition] = STATE(39), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_translation_unit] = STATE(41), - [sym__expression] = STATE(42), - [sym_preproc_call] = STATE(39), - [sym_bitwise_expression] = STATE(42), - [sym__declaration_specifiers] = STATE(43), - [sym_compound_literal_expression] = STATE(42), - [sym_char_literal] = STATE(42), - [sym__empty_declaration] = STATE(39), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_assignment_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_linkage_specification] = STATE(39), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), + [sym_continue_statement] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(43), + [sym_declaration] = STATE(40), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_comma_expression] = STATE(38), + [sym_equality_expression] = STATE(43), + [sym_type_definition] = STATE(40), + [sym_sizeof_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(43), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_preproc_include] = STATE(40), + [sym_conditional_expression] = STATE(43), + [sym_preproc_ifdef] = STATE(40), + [sym_relational_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_logical_expression] = STATE(43), + [sym_function_definition] = STATE(40), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_translation_unit] = STATE(42), + [sym__expression] = STATE(43), + [sym_preproc_call] = STATE(40), + [sym_bitwise_expression] = STATE(43), + [sym__declaration_specifiers] = STATE(44), + [sym_compound_literal_expression] = STATE(43), + [sym_char_literal] = STATE(43), + [sym__empty_declaration] = STATE(40), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_assignment_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_linkage_specification] = STATE(40), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), [anon_sym_LBRACE] = ACTIONS(5), [anon_sym_union] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(9), - [sym_null] = ACTIONS(11), + [anon_sym_L] = ACTIONS(9), + [sym_false] = ACTIONS(11), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_identifier] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(19), [anon_sym_do] = ACTIONS(21), [anon_sym_goto] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym___attribute__] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(27), [sym_preproc_directive] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [aux_sym_preproc_if_token1] = ACTIONS(33), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(35), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [aux_sym_preproc_ifdef_token1] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [aux_sym_preproc_ifdef_token1] = ACTIONS(51), + [aux_sym_preproc_include_token1] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(53), - [sym_number_literal] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(65), - [ts_builtin_sym_end] = ACTIONS(67), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(57), + [sym_number_literal] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(65), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(11), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [ts_builtin_sym_end] = ACTIONS(69), + [sym_null] = ACTIONS(11), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [aux_sym_preproc_ifdef_token2] = ACTIONS(51), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(83), }, [2] = { - [sym_continue_statement] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(46), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(46), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_preproc_include] = STATE(46), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(46), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(46), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(46), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(46), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(46), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(83), + [sym_continue_statement] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(47), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(47), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_preproc_include] = STATE(47), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(47), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(47), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(47), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(47), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(47), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(85), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(85), + [sym_identifier] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(99), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(101), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(99), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(105), - [sym_true] = ACTIONS(83), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(109), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [3] = { - [sym_field_declaration_list] = STATE(49), - [anon_sym_LBRACE] = ACTIONS(127), - [sym_identifier] = ACTIONS(129), + [sym_field_declaration_list] = STATE(50), + [anon_sym_LBRACE] = ACTIONS(129), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(131), }, [4] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(51), - [sym_math_expression] = STATE(51), - [sym_cast_expression] = STATE(51), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(51), - [sym_bitwise_expression] = STATE(51), - [sym_equality_expression] = STATE(51), - [sym_sizeof_expression] = STATE(51), - [sym_compound_literal_expression] = STATE(51), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(51), - [sym_concatenated_string] = STATE(51), - [sym_conditional_expression] = STATE(51), - [sym_assignment_expression] = STATE(51), - [sym_relational_expression] = STATE(51), - [sym_shift_expression] = STATE(51), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(133), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(52), + [sym_math_expression] = STATE(52), + [sym_cast_expression] = STATE(52), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(52), + [sym_bitwise_expression] = STATE(52), + [sym_equality_expression] = STATE(52), + [sym_sizeof_expression] = STATE(52), + [sym_compound_literal_expression] = STATE(52), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(52), + [sym_concatenated_string] = STATE(52), + [sym_conditional_expression] = STATE(52), + [sym_assignment_expression] = STATE(52), + [sym_relational_expression] = STATE(52), + [sym_shift_expression] = STATE(52), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(133), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(131), - [sym_identifier] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym_LPAREN2] = ACTIONS(137), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(133), + [sym_null] = ACTIONS(133), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [5] = { - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_union] = ACTIONS(141), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_unsigned] = ACTIONS(141), - [anon_sym_restrict] = ACTIONS(141), - [anon_sym_short] = ACTIONS(141), - [sym_comment] = ACTIONS(3), - [sym_null] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_sizeof] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_const] = ACTIONS(141), - [anon_sym_LPAREN2] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(139), - [anon_sym_COLON] = ACTIONS(139), - [anon_sym__Atomic] = ACTIONS(141), - [sym_primitive_type] = ACTIONS(141), - [sym_true] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_static] = ACTIONS(141), - [anon_sym_volatile] = ACTIONS(141), - [anon_sym_register] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(139), - [sym_number_literal] = ACTIONS(139), - [anon_sym_struct] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_signed] = ACTIONS(141), - [anon_sym_enum] = ACTIONS(141), - [anon_sym_long] = ACTIONS(141), - [sym_identifier] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(139), - [sym_false] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_auto] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(139), - [anon_sym_inline] = ACTIONS(141), - [anon_sym___attribute__] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(139), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_union] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_unsigned] = ACTIONS(143), + [anon_sym_restrict] = ACTIONS(143), + [anon_sym_short] = ACTIONS(143), + [sym_identifier] = ACTIONS(143), + [sym_false] = ACTIONS(143), + [anon_sym_sizeof] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(141), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_const] = ACTIONS(143), + [anon_sym_LPAREN2] = ACTIONS(141), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym__Atomic] = ACTIONS(143), + [sym_primitive_type] = ACTIONS(143), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_static] = ACTIONS(143), + [anon_sym_volatile] = ACTIONS(143), + [anon_sym_register] = ACTIONS(143), + [anon_sym_extern] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(141), + [sym_number_literal] = ACTIONS(141), + [anon_sym_struct] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_signed] = ACTIONS(143), + [anon_sym_enum] = ACTIONS(143), + [anon_sym_long] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(141), + [sym_true] = ACTIONS(143), + [sym_null] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_auto] = ACTIONS(143), + [anon_sym_L] = ACTIONS(143), + [anon_sym_inline] = ACTIONS(143), + [anon_sym___attribute__] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(141), }, [6] = { - [aux_sym_string_literal_repeat1] = STATE(53), - [aux_sym_string_literal_token1] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_restrict] = ACTIONS(149), + [sym_identifier] = ACTIONS(149), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_const] = ACTIONS(149), + [anon_sym_LPAREN2] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(159), + [anon_sym__Atomic] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_static] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [anon_sym_register] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(164), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_auto] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_inline] = ACTIONS(149), + [anon_sym___attribute__] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(151), }, [7] = { - [sym_while_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(55), + [sym_while_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(57), [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [8] = { - [sym_identifier] = ACTIONS(159), + [sym_identifier] = ACTIONS(177), [sym_comment] = ACTIONS(3), }, [9] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(57), - [sym_math_expression] = STATE(57), - [sym_cast_expression] = STATE(57), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(57), - [sym_bitwise_expression] = STATE(57), - [sym_equality_expression] = STATE(57), - [sym_sizeof_expression] = STATE(57), - [sym_compound_literal_expression] = STATE(57), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(57), - [sym_concatenated_string] = STATE(57), - [sym_conditional_expression] = STATE(57), - [sym_assignment_expression] = STATE(57), - [sym_relational_expression] = STATE(57), - [sym_shift_expression] = STATE(57), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(163), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(59), + [sym_math_expression] = STATE(59), + [sym_cast_expression] = STATE(59), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(59), + [sym_bitwise_expression] = STATE(59), + [sym_equality_expression] = STATE(59), + [sym_sizeof_expression] = STATE(59), + [sym_compound_literal_expression] = STATE(59), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(59), + [sym_concatenated_string] = STATE(59), + [sym_conditional_expression] = STATE(59), + [sym_assignment_expression] = STATE(59), + [sym_relational_expression] = STATE(59), + [sym_shift_expression] = STATE(59), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(179), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(161), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(161), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(179), + [sym_null] = ACTIONS(179), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [10] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(165), - [sym_preproc_arg] = ACTIONS(167), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(185), + [sym_preproc_arg] = ACTIONS(187), }, [11] = { - [sym_pointer_expression] = STATE(60), - [sym_logical_expression] = STATE(60), - [sym_math_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym__expression] = STATE(60), - [sym_bitwise_expression] = STATE(60), - [sym_equality_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_char_literal] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_relational_expression] = STATE(60), - [sym_shift_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(173), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), + [sym_pointer_expression] = STATE(62), + [sym_logical_expression] = STATE(62), + [sym_math_expression] = STATE(62), + [sym_cast_expression] = STATE(62), + [sym_field_expression] = STATE(62), + [sym__expression] = STATE(62), + [sym_bitwise_expression] = STATE(62), + [sym_equality_expression] = STATE(62), + [sym_sizeof_expression] = STATE(62), + [sym_compound_literal_expression] = STATE(62), + [sym_parenthesized_expression] = STATE(62), + [sym_char_literal] = STATE(62), + [sym_concatenated_string] = STATE(62), + [sym_conditional_expression] = STATE(62), + [sym_assignment_expression] = STATE(62), + [sym_relational_expression] = STATE(62), + [sym_shift_expression] = STATE(62), + [sym_subscript_expression] = STATE(62), + [sym_call_expression] = STATE(62), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(189), + [sym_identifier] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [12] = { + [sym_preproc_arg] = ACTIONS(205), [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(185), }, [13] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(63), - [sym_math_expression] = STATE(63), - [sym_cast_expression] = STATE(63), - [sym_field_expression] = STATE(35), - [aux_sym_sized_type_specifier_repeat1] = STATE(469), - [sym_struct_specifier] = STATE(67), - [sym__expression] = STATE(63), - [sym_comma_expression] = STATE(64), - [sym_bitwise_expression] = STATE(63), - [sym_equality_expression] = STATE(63), - [sym_type_descriptor] = STATE(65), - [sym_sizeof_expression] = STATE(63), - [sym_compound_literal_expression] = STATE(63), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(63), - [sym_concatenated_string] = STATE(63), - [sym_macro_type_specifier] = STATE(67), - [aux_sym_type_definition_repeat1] = STATE(66), - [sym__type_specifier] = STATE(67), - [sym_union_specifier] = STATE(67), - [sym_type_qualifier] = STATE(66), - [sym_conditional_expression] = STATE(63), - [sym_assignment_expression] = STATE(63), - [sym_relational_expression] = STATE(63), - [sym_shift_expression] = STATE(63), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_sized_type_specifier] = STATE(67), - [sym_enum_specifier] = STATE(67), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(36), + [aux_sym_sized_type_specifier_repeat1] = STATE(477), + [sym_struct_specifier] = STATE(69), + [sym__expression] = STATE(65), + [sym_comma_expression] = STATE(66), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_type_descriptor] = STATE(67), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(65), + [sym_concatenated_string] = STATE(65), + [sym_macro_type_specifier] = STATE(69), + [aux_sym_type_definition_repeat1] = STATE(68), + [sym__type_specifier] = STATE(69), + [sym_union_specifier] = STATE(69), + [sym_type_qualifier] = STATE(68), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_sized_type_specifier] = STATE(69), + [sym_enum_specifier] = STATE(69), [anon_sym_union] = ACTIONS(7), - [sym_null] = ACTIONS(187), + [sym_false] = ACTIONS(207), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(189), - [anon_sym_short] = ACTIONS(189), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(209), + [anon_sym_unsigned] = ACTIONS(211), + [anon_sym_short] = ACTIONS(211), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(191), - [sym_true] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(193), + [sym_primitive_type] = ACTIONS(213), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(215), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [sym_false] = ACTIONS(187), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(195), - [anon_sym_signed] = ACTIONS(189), - [anon_sym_long] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [sym_true] = ACTIONS(207), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(207), + [anon_sym_signed] = ACTIONS(211), + [anon_sym_long] = ACTIONS(211), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [14] = { - [sym_struct_specifier] = STATE(70), - [sym_macro_type_specifier] = STATE(70), - [sym_type_qualifier] = STATE(69), - [aux_sym_type_definition_repeat1] = STATE(69), - [sym_union_specifier] = STATE(70), - [sym__type_specifier] = STATE(70), - [sym_sized_type_specifier] = STATE(70), - [sym_enum_specifier] = STATE(70), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [sym_struct_specifier] = STATE(72), + [sym_macro_type_specifier] = STATE(72), + [sym_type_qualifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(71), + [sym_union_specifier] = STATE(72), + [sym__type_specifier] = STATE(72), + [sym_sized_type_specifier] = STATE(72), + [sym_enum_specifier] = STATE(72), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(217), + [anon_sym_short] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), [anon_sym_const] = ACTIONS(13), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(199), + [sym_primitive_type] = ACTIONS(219), + [sym_comment] = ACTIONS(3), }, [15] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(71), - [sym_math_expression] = STATE(71), - [sym_cast_expression] = STATE(71), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(71), - [sym_bitwise_expression] = STATE(71), - [sym_equality_expression] = STATE(71), - [sym_sizeof_expression] = STATE(71), - [sym_compound_literal_expression] = STATE(71), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(71), - [sym_concatenated_string] = STATE(71), - [sym_conditional_expression] = STATE(71), - [sym_assignment_expression] = STATE(71), - [sym_relational_expression] = STATE(71), - [sym_shift_expression] = STATE(71), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(73), + [sym_math_expression] = STATE(73), + [sym_cast_expression] = STATE(73), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(73), + [sym_bitwise_expression] = STATE(73), + [sym_equality_expression] = STATE(73), + [sym_sizeof_expression] = STATE(73), + [sym_compound_literal_expression] = STATE(73), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(73), + [sym_concatenated_string] = STATE(73), + [sym_conditional_expression] = STATE(73), + [sym_assignment_expression] = STATE(73), + [sym_relational_expression] = STATE(73), + [sym_shift_expression] = STATE(73), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(221), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(201), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(223), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [16] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(205), + [aux_sym_string_literal_repeat1] = STATE(75), + [anon_sym_DQUOTE] = ACTIONS(225), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(227), + [aux_sym_string_literal_token1] = ACTIONS(227), }, [17] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(207), + [anon_sym_LPAREN2] = ACTIONS(229), }, [18] = { - [sym_identifier] = ACTIONS(209), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(231), }, [19] = { - [sym_string_literal] = STATE(75), - [sym_system_lib_string] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), + [sym_identifier] = ACTIONS(233), [sym_comment] = ACTIONS(3), }, [20] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(76), - [sym_math_expression] = STATE(76), - [sym_cast_expression] = STATE(76), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(76), - [sym_bitwise_expression] = STATE(76), - [sym_equality_expression] = STATE(76), - [sym_sizeof_expression] = STATE(76), - [sym_compound_literal_expression] = STATE(76), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(76), - [sym_concatenated_string] = STATE(76), - [sym_conditional_expression] = STATE(76), - [sym_assignment_expression] = STATE(76), - [sym_relational_expression] = STATE(76), - [sym_shift_expression] = STATE(76), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(215), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_string_literal] = STATE(79), + [sym_system_lib_string] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [anon_sym_L] = ACTIONS(239), + [sym_comment] = ACTIONS(3), }, [21] = { - [anon_sym_union] = ACTIONS(219), - [anon_sym_unsigned] = ACTIONS(219), - [anon_sym_restrict] = ACTIONS(219), - [anon_sym_short] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(219), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_COLON] = ACTIONS(221), - [anon_sym__Atomic] = ACTIONS(219), - [sym_primitive_type] = ACTIONS(219), - [anon_sym_COMMA] = ACTIONS(221), - [anon_sym_static] = ACTIONS(219), - [anon_sym_volatile] = ACTIONS(219), - [anon_sym_register] = ACTIONS(219), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_struct] = ACTIONS(219), - [anon_sym_signed] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(219), - [anon_sym_long] = ACTIONS(219), - [sym_identifier] = ACTIONS(219), - [anon_sym_SEMI] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(221), - [anon_sym_auto] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(219), - [anon_sym___attribute__] = ACTIONS(219), - [anon_sym_LBRACK] = ACTIONS(221), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(81), + [sym_math_expression] = STATE(81), + [sym_cast_expression] = STATE(81), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(81), + [sym_bitwise_expression] = STATE(81), + [sym_equality_expression] = STATE(81), + [sym_sizeof_expression] = STATE(81), + [sym_compound_literal_expression] = STATE(81), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(81), + [sym_concatenated_string] = STATE(81), + [sym_conditional_expression] = STATE(81), + [sym_assignment_expression] = STATE(81), + [sym_relational_expression] = STATE(81), + [sym_shift_expression] = STATE(81), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(241), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(243), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(241), + [sym_null] = ACTIONS(241), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [22] = { - [sym_string_literal] = STATE(77), - [anon_sym_union] = ACTIONS(219), - [anon_sym_unsigned] = ACTIONS(219), - [anon_sym_restrict] = ACTIONS(219), - [anon_sym_short] = ACTIONS(219), - [anon_sym_static] = ACTIONS(219), - [anon_sym_volatile] = ACTIONS(219), - [anon_sym_register] = ACTIONS(219), - [anon_sym_extern] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(219), - [anon_sym_signed] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(219), - [anon_sym_long] = ACTIONS(219), - [sym_identifier] = ACTIONS(219), - [anon_sym_const] = ACTIONS(219), - [anon_sym__Atomic] = ACTIONS(219), - [sym_primitive_type] = ACTIONS(219), - [anon_sym_auto] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(219), - [anon_sym___attribute__] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_union] = ACTIONS(245), + [anon_sym_unsigned] = ACTIONS(245), + [anon_sym_restrict] = ACTIONS(245), + [anon_sym_short] = ACTIONS(245), + [sym_identifier] = ACTIONS(245), + [anon_sym_const] = ACTIONS(245), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_COLON] = ACTIONS(247), + [anon_sym__Atomic] = ACTIONS(245), + [sym_primitive_type] = ACTIONS(245), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(247), + [anon_sym_static] = ACTIONS(245), + [anon_sym_volatile] = ACTIONS(245), + [anon_sym_register] = ACTIONS(245), + [anon_sym_extern] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(247), + [anon_sym_struct] = ACTIONS(245), + [anon_sym_signed] = ACTIONS(245), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_long] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_RPAREN] = ACTIONS(247), + [anon_sym_auto] = ACTIONS(245), + [anon_sym_inline] = ACTIONS(245), + [anon_sym___attribute__] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(247), }, [23] = { - [sym_parenthesized_expression] = STATE(79), + [sym_string_literal] = STATE(82), + [anon_sym_union] = ACTIONS(245), + [anon_sym_unsigned] = ACTIONS(245), + [anon_sym_restrict] = ACTIONS(245), + [anon_sym_short] = ACTIONS(245), + [anon_sym_static] = ACTIONS(245), + [anon_sym_volatile] = ACTIONS(245), + [anon_sym_register] = ACTIONS(245), + [anon_sym_extern] = ACTIONS(245), + [sym_identifier] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(245), + [anon_sym_signed] = ACTIONS(245), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_long] = ACTIONS(245), + [anon_sym_const] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(245), + [sym_primitive_type] = ACTIONS(245), + [anon_sym_auto] = ACTIONS(245), + [anon_sym_L] = ACTIONS(249), + [anon_sym_inline] = ACTIONS(245), + [anon_sym___attribute__] = ACTIONS(245), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), }, [24] = { - [sym_field_declaration_list] = STATE(81), - [anon_sym_LBRACE] = ACTIONS(127), - [sym_identifier] = ACTIONS(225), + [sym_parenthesized_expression] = STATE(84), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(251), }, [25] = { - [sym_parenthesized_expression] = STATE(82), + [sym_field_declaration_list] = STATE(86), + [anon_sym_LBRACE] = ACTIONS(129), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(227), + [sym_identifier] = ACTIONS(253), }, [26] = { - [sym_enumerator_list] = STATE(85), - [anon_sym_LBRACE] = ACTIONS(229), - [sym_identifier] = ACTIONS(231), + [sym_parenthesized_expression] = STATE(87), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(255), }, [27] = { - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_restrict] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_const] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_COLON] = ACTIONS(247), - [anon_sym__Atomic] = ACTIONS(237), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_static] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [sym_identifier] = ACTIONS(237), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_inline] = ACTIONS(237), - [anon_sym___attribute__] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(239), + [sym_enumerator_list] = STATE(90), + [anon_sym_LBRACE] = ACTIONS(257), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(259), }, [28] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(90), - [sym_math_expression] = STATE(90), - [sym_cast_expression] = STATE(90), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(90), - [sym_bitwise_expression] = STATE(90), - [sym_equality_expression] = STATE(90), - [sym_sizeof_expression] = STATE(90), - [sym_compound_literal_expression] = STATE(90), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(90), - [sym_concatenated_string] = STATE(90), - [sym_conditional_expression] = STATE(90), - [sym_assignment_expression] = STATE(90), - [sym_relational_expression] = STATE(90), - [sym_shift_expression] = STATE(90), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(255), - [sym_comment] = ACTIONS(3), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(92), + [sym_math_expression] = STATE(92), + [sym_cast_expression] = STATE(92), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(92), + [sym_bitwise_expression] = STATE(92), + [sym_equality_expression] = STATE(92), + [sym_sizeof_expression] = STATE(92), + [sym_compound_literal_expression] = STATE(92), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(92), + [sym_concatenated_string] = STATE(92), + [sym_conditional_expression] = STATE(92), + [sym_assignment_expression] = STATE(92), + [sym_relational_expression] = STATE(92), + [sym_shift_expression] = STATE(92), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(261), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(263), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(255), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(259), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(261), + [sym_null] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [29] = { - [sym_parenthesized_expression] = STATE(91), + [sym_parenthesized_expression] = STATE(93), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_LPAREN2] = ACTIONS(251), }, [30] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(267), }, [31] = { - [anon_sym_case] = ACTIONS(263), - [sym_null] = ACTIONS(263), - [anon_sym_restrict] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(263), - [anon_sym_const] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(263), - [anon_sym_DASH_DASH] = ACTIONS(265), - [anon_sym_default] = ACTIONS(263), - [anon_sym__Atomic] = ACTIONS(263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(263), - [sym_number_literal] = ACTIONS(265), - [anon_sym_volatile] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_PLUS_PLUS] = ACTIONS(265), - [anon_sym_struct] = ACTIONS(263), - [anon_sym_signed] = ACTIONS(263), - [anon_sym_long] = ACTIONS(263), - [anon_sym_while] = ACTIONS(263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(263), - [anon_sym_SQUOTE] = ACTIONS(265), - [anon_sym_DQUOTE] = ACTIONS(265), - [anon_sym___attribute__] = ACTIONS(263), - [anon_sym_sizeof] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_union] = ACTIONS(263), - [anon_sym_unsigned] = ACTIONS(263), - [anon_sym_short] = ACTIONS(263), - [anon_sym_do] = ACTIONS(263), - [anon_sym_TILDE] = ACTIONS(265), - [sym_preproc_directive] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(265), - [aux_sym_preproc_if_token1] = ACTIONS(263), - [anon_sym_LPAREN2] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(263), - [sym_true] = ACTIONS(263), - [sym_primitive_type] = ACTIONS(263), - [anon_sym_for] = ACTIONS(263), - [anon_sym_break] = ACTIONS(263), - [aux_sym_preproc_include_token1] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(265), - [anon_sym_static] = ACTIONS(263), - [anon_sym_register] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_if] = ACTIONS(263), - [anon_sym_switch] = ACTIONS(263), - [sym_false] = ACTIONS(263), - [anon_sym_enum] = ACTIONS(263), - [sym_identifier] = ACTIONS(263), - [ts_builtin_sym_end] = ACTIONS(265), - [anon_sym_return] = ACTIONS(263), - [anon_sym_continue] = ACTIONS(263), - [anon_sym_SEMI] = ACTIONS(265), - [aux_sym_preproc_def_token1] = ACTIONS(263), - [anon_sym_auto] = ACTIONS(263), - [anon_sym_inline] = ACTIONS(263), - [anon_sym_DASH] = ACTIONS(263), + [anon_sym_case] = ACTIONS(269), + [sym_false] = ACTIONS(269), + [anon_sym_restrict] = ACTIONS(269), + [sym_identifier] = ACTIONS(269), + [anon_sym_goto] = ACTIONS(269), + [anon_sym_const] = ACTIONS(269), + [anon_sym_typedef] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_default] = ACTIONS(269), + [anon_sym__Atomic] = ACTIONS(269), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(269), + [sym_number_literal] = ACTIONS(271), + [anon_sym_volatile] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_struct] = ACTIONS(269), + [anon_sym_signed] = ACTIONS(269), + [anon_sym_long] = ACTIONS(269), + [anon_sym_while] = ACTIONS(269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(269), + [anon_sym_L] = ACTIONS(269), + [anon_sym___attribute__] = ACTIONS(269), + [anon_sym_sizeof] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(271), + [anon_sym_union] = ACTIONS(269), + [anon_sym_unsigned] = ACTIONS(269), + [anon_sym_short] = ACTIONS(269), + [anon_sym_do] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(271), + [sym_preproc_directive] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(271), + [aux_sym_preproc_if_token1] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_LPAREN2] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_else] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(269), + [anon_sym_for] = ACTIONS(269), + [anon_sym_break] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_static] = ACTIONS(269), + [anon_sym_register] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_if] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(269), + [sym_true] = ACTIONS(269), + [anon_sym_enum] = ACTIONS(269), + [sym_null] = ACTIONS(269), + [ts_builtin_sym_end] = ACTIONS(271), + [anon_sym_return] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(269), + [anon_sym_auto] = ACTIONS(269), + [anon_sym_inline] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(269), }, [32] = { - [sym_identifier] = ACTIONS(267), + [sym_identifier] = ACTIONS(273), [sym_comment] = ACTIONS(3), }, [33] = { - [aux_sym_char_literal_token1] = ACTIONS(269), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(271), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(275), + [aux_sym_char_literal_token1] = ACTIONS(277), }, [34] = { + [anon_sym_SQUOTE] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(281), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(273), }, [35] = { - [anon_sym_PERCENT] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_RPAREN] = ACTIONS(239), - [anon_sym_RBRACK] = ACTIONS(239), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_RBRACE] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(239), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(239), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(283), }, [36] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(98), - [anon_sym_unsigned] = ACTIONS(275), - [anon_sym_restrict] = ACTIONS(277), - [anon_sym_short] = ACTIONS(275), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(277), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym__Atomic] = ACTIONS(277), - [sym_primitive_type] = ACTIONS(281), - [anon_sym_COMMA] = ACTIONS(279), - [anon_sym_static] = ACTIONS(277), - [anon_sym_volatile] = ACTIONS(277), - [anon_sym_register] = ACTIONS(277), - [anon_sym_extern] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(279), - [anon_sym_signed] = ACTIONS(275), - [sym_identifier] = ACTIONS(283), - [anon_sym_long] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(279), - [anon_sym_RPAREN] = ACTIONS(279), - [anon_sym_auto] = ACTIONS(277), - [anon_sym_inline] = ACTIONS(277), - [anon_sym___attribute__] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(151), }, [37] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(286), + [aux_sym_sized_type_specifier_repeat1] = STATE(102), + [anon_sym_unsigned] = ACTIONS(285), + [anon_sym_restrict] = ACTIONS(287), + [sym_identifier] = ACTIONS(289), + [anon_sym_short] = ACTIONS(285), + [anon_sym_const] = ACTIONS(287), + [anon_sym_LPAREN2] = ACTIONS(292), + [anon_sym_COLON] = ACTIONS(292), + [anon_sym__Atomic] = ACTIONS(287), + [sym_primitive_type] = ACTIONS(294), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(292), + [anon_sym_static] = ACTIONS(287), + [anon_sym_volatile] = ACTIONS(287), + [anon_sym_register] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_signed] = ACTIONS(285), + [anon_sym_long] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(292), + [anon_sym_RPAREN] = ACTIONS(292), + [anon_sym_auto] = ACTIONS(287), + [anon_sym_inline] = ACTIONS(287), + [anon_sym___attribute__] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(292), }, [38] = { - [aux_sym_concatenated_string_repeat1] = STATE(100), - [sym_string_literal] = STATE(100), - [anon_sym_PERCENT] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(239), - [anon_sym_DASH_EQ] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(239), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_GT_GT_EQ] = ACTIONS(239), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(239), - [anon_sym_RPAREN] = ACTIONS(239), - [anon_sym_RBRACK] = ACTIONS(239), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_AMP_EQ] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_RBRACE] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(239), - [anon_sym_STAR_EQ] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(239), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(239), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(296), }, [39] = { - [sym_continue_statement] = STATE(101), - [sym_preproc_function_def] = STATE(101), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(42), - [sym_declaration] = STATE(101), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(101), - [sym_for_statement] = STATE(101), - [sym_comma_expression] = STATE(37), - [sym_equality_expression] = STATE(42), - [sym_type_definition] = STATE(101), - [sym_sizeof_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(42), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(101), - [sym_return_statement] = STATE(101), - [sym_preproc_include] = STATE(101), - [sym_conditional_expression] = STATE(42), - [sym_preproc_ifdef] = STATE(101), - [sym_relational_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(101), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(101), - [sym_while_statement] = STATE(101), - [sym_preproc_def] = STATE(101), - [sym_goto_statement] = STATE(101), - [sym_logical_expression] = STATE(42), - [sym_function_definition] = STATE(101), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(101), - [sym_expression_statement] = STATE(101), - [sym_do_statement] = STATE(101), - [sym__expression] = STATE(42), - [sym_preproc_call] = STATE(101), - [sym_bitwise_expression] = STATE(42), - [sym__declaration_specifiers] = STATE(43), - [sym_compound_literal_expression] = STATE(42), - [sym_char_literal] = STATE(42), - [sym__empty_declaration] = STATE(101), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(101), - [sym_preproc_if] = STATE(101), - [sym_assignment_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_linkage_specification] = STATE(101), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), + [aux_sym_concatenated_string_repeat1] = STATE(104), + [sym_string_literal] = STATE(104), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PERCENT_EQ] = ACTIONS(151), + [anon_sym_DASH_EQ] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(151), + [anon_sym_LT_LT_EQ] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_GT_GT_EQ] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_L] = ACTIONS(298), + [anon_sym_RBRACK] = ACTIONS(151), + [anon_sym_AMP_EQ] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [anon_sym_STAR_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(151), + }, + [40] = { + [sym_continue_statement] = STATE(105), + [sym_preproc_function_def] = STATE(105), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(43), + [sym_declaration] = STATE(105), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(105), + [sym_for_statement] = STATE(105), + [sym_comma_expression] = STATE(38), + [sym_equality_expression] = STATE(43), + [sym_type_definition] = STATE(105), + [sym_sizeof_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(43), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(105), + [sym_return_statement] = STATE(105), + [sym_preproc_include] = STATE(105), + [sym_conditional_expression] = STATE(43), + [sym_preproc_ifdef] = STATE(105), + [sym_relational_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(105), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(105), + [sym_while_statement] = STATE(105), + [sym_preproc_def] = STATE(105), + [sym_goto_statement] = STATE(105), + [sym_logical_expression] = STATE(43), + [sym_function_definition] = STATE(105), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(105), + [sym_expression_statement] = STATE(105), + [sym_do_statement] = STATE(105), + [sym__expression] = STATE(43), + [sym_preproc_call] = STATE(105), + [sym_bitwise_expression] = STATE(43), + [sym__declaration_specifiers] = STATE(44), + [sym_compound_literal_expression] = STATE(43), + [sym_char_literal] = STATE(43), + [sym__empty_declaration] = STATE(105), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(105), + [sym_preproc_if] = STATE(105), + [sym_assignment_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_linkage_specification] = STATE(105), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), [anon_sym_LBRACE] = ACTIONS(5), [anon_sym_union] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(9), - [sym_null] = ACTIONS(11), + [anon_sym_L] = ACTIONS(9), + [sym_false] = ACTIONS(11), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_identifier] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_inline] = ACTIONS(19), [anon_sym_do] = ACTIONS(21), [anon_sym_goto] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym___attribute__] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(27), [sym_preproc_directive] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [aux_sym_preproc_if_token1] = ACTIONS(33), - [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(35), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [aux_sym_preproc_ifdef_token1] = ACTIONS(47), - [aux_sym_preproc_include_token1] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [aux_sym_preproc_ifdef_token1] = ACTIONS(51), + [aux_sym_preproc_include_token1] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(53), - [sym_number_literal] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(65), - [ts_builtin_sym_end] = ACTIONS(288), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(57), + [sym_number_literal] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(65), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(11), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [ts_builtin_sym_end] = ACTIONS(300), + [sym_null] = ACTIONS(11), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [aux_sym_preproc_ifdef_token2] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(77), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [aux_sym_preproc_ifdef_token2] = ACTIONS(51), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_sizeof] = ACTIONS(83), }, - [40] = { - [sym_macro_type_specifier] = STATE(102), - [sym_type_qualifier] = STATE(103), - [sym__type_specifier] = STATE(102), - [sym_union_specifier] = STATE(102), - [sym_storage_class_specifier] = STATE(103), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(102), - [sym_attribute_specifier] = STATE(103), - [sym_sized_type_specifier] = STATE(102), - [sym_enum_specifier] = STATE(102), - [aux_sym__declaration_specifiers_repeat1] = STATE(103), + [41] = { + [sym_macro_type_specifier] = STATE(106), + [sym_type_qualifier] = STATE(107), + [sym__type_specifier] = STATE(106), + [sym_union_specifier] = STATE(106), + [sym_storage_class_specifier] = STATE(107), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(106), + [sym_attribute_specifier] = STATE(107), + [sym_sized_type_specifier] = STATE(106), + [sym_enum_specifier] = STATE(106), + [aux_sym__declaration_specifiers_repeat1] = STATE(107), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(217), + [anon_sym_short] = ACTIONS(17), [anon_sym_const] = ACTIONS(13), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(290), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - }, - [41] = { + [sym_primitive_type] = ACTIONS(302), [sym_comment] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(292), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), }, [42] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [ts_builtin_sym_end] = ACTIONS(304), + [sym_comment] = ACTIONS(3), }, [43] = { - [sym_function_declarator] = STATE(124), - [sym__declarator] = STATE(124), - [sym_init_declarator] = STATE(125), - [sym_pointer_declarator] = STATE(124), - [sym_array_declarator] = STATE(124), - [sym_identifier] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(336), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(296), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [44] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(126), - [sym_attribute_specifier] = STATE(126), - [sym_type_qualifier] = STATE(126), - [sym_storage_class_specifier] = STATE(126), - [anon_sym_restrict] = ACTIONS(13), + [sym_function_declarator] = STATE(128), + [sym__declarator] = STATE(128), + [sym_init_declarator] = STATE(129), + [sym_pointer_declarator] = STATE(128), + [sym_array_declarator] = STATE(128), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(17), + [sym_identifier] = ACTIONS(346), + [anon_sym_SEMI] = ACTIONS(348), + }, + [45] = { + [aux_sym__declaration_specifiers_repeat1] = STATE(130), + [sym_attribute_specifier] = STATE(130), + [sym_type_qualifier] = STATE(130), + [sym_storage_class_specifier] = STATE(130), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(350), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(338), - [sym_identifier] = ACTIONS(340), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(352), + [anon_sym_COMMA] = ACTIONS(352), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(338), - [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_LPAREN2] = ACTIONS(352), + [anon_sym_COLON] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(352), [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(338), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(338), - }, - [45] = { - [anon_sym_case] = ACTIONS(342), - [sym_null] = ACTIONS(342), - [anon_sym_restrict] = ACTIONS(342), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(342), - [anon_sym_const] = ACTIONS(342), - [anon_sym_typedef] = ACTIONS(342), - [anon_sym_DASH_DASH] = ACTIONS(344), - [anon_sym_default] = ACTIONS(342), - [anon_sym__Atomic] = ACTIONS(342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(342), - [sym_number_literal] = ACTIONS(344), - [anon_sym_volatile] = ACTIONS(342), - [anon_sym_extern] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(344), - [anon_sym_struct] = ACTIONS(342), - [anon_sym_signed] = ACTIONS(342), - [anon_sym_long] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym___attribute__] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_LBRACE] = ACTIONS(344), - [anon_sym_union] = ACTIONS(342), - [anon_sym_unsigned] = ACTIONS(342), - [anon_sym_short] = ACTIONS(342), - [anon_sym_do] = ACTIONS(342), - [anon_sym_TILDE] = ACTIONS(344), - [sym_preproc_directive] = ACTIONS(342), - [anon_sym_AMP] = ACTIONS(344), - [aux_sym_preproc_if_token1] = ACTIONS(342), - [anon_sym_LPAREN2] = ACTIONS(344), - [anon_sym_RBRACE] = ACTIONS(344), - [anon_sym_else] = ACTIONS(342), - [sym_true] = ACTIONS(342), - [sym_primitive_type] = ACTIONS(342), - [anon_sym_for] = ACTIONS(342), - [anon_sym_break] = ACTIONS(342), - [aux_sym_preproc_include_token1] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_static] = ACTIONS(342), - [anon_sym_register] = ACTIONS(342), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_if] = ACTIONS(342), - [anon_sym_switch] = ACTIONS(342), - [sym_false] = ACTIONS(342), - [anon_sym_enum] = ACTIONS(342), - [sym_identifier] = ACTIONS(342), - [ts_builtin_sym_end] = ACTIONS(344), - [anon_sym_return] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_SEMI] = ACTIONS(344), - [aux_sym_preproc_def_token1] = ACTIONS(342), - [anon_sym_auto] = ACTIONS(342), - [anon_sym_inline] = ACTIONS(342), - [anon_sym_DASH] = ACTIONS(342), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(352), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(352), }, [46] = { - [sym_continue_statement] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(482), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(482), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_preproc_include] = STATE(482), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(482), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_preproc_def] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(482), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(482), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(482), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(482), - [sym_preproc_if] = STATE(482), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(482), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), + [anon_sym_case] = ACTIONS(354), + [sym_false] = ACTIONS(354), + [anon_sym_restrict] = ACTIONS(354), + [sym_identifier] = ACTIONS(354), + [anon_sym_goto] = ACTIONS(354), + [anon_sym_const] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(354), + [anon_sym_DASH_DASH] = ACTIONS(356), + [anon_sym_default] = ACTIONS(354), + [anon_sym__Atomic] = ACTIONS(354), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(85), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [sym_number_literal] = ACTIONS(356), + [anon_sym_volatile] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(356), + [anon_sym_struct] = ACTIONS(354), + [anon_sym_signed] = ACTIONS(354), + [anon_sym_long] = ACTIONS(354), + [anon_sym_while] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [anon_sym_L] = ACTIONS(354), + [anon_sym___attribute__] = ACTIONS(354), + [anon_sym_sizeof] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_union] = ACTIONS(354), + [anon_sym_unsigned] = ACTIONS(354), + [anon_sym_short] = ACTIONS(354), + [anon_sym_do] = ACTIONS(354), + [anon_sym_TILDE] = ACTIONS(356), + [sym_preproc_directive] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(356), + [aux_sym_preproc_if_token1] = ACTIONS(354), + [anon_sym_DQUOTE] = ACTIONS(356), + [anon_sym_LPAREN2] = ACTIONS(356), + [anon_sym_RBRACE] = ACTIONS(356), + [anon_sym_else] = ACTIONS(354), + [sym_primitive_type] = ACTIONS(354), + [anon_sym_for] = ACTIONS(354), + [anon_sym_break] = ACTIONS(354), + [aux_sym_preproc_include_token1] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(356), + [anon_sym_static] = ACTIONS(354), + [anon_sym_register] = ACTIONS(354), + [anon_sym_PLUS] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_if] = ACTIONS(354), + [anon_sym_switch] = ACTIONS(354), + [sym_true] = ACTIONS(354), + [anon_sym_enum] = ACTIONS(354), + [sym_null] = ACTIONS(354), + [ts_builtin_sym_end] = ACTIONS(356), + [anon_sym_return] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(354), + [anon_sym_SEMI] = ACTIONS(356), + [aux_sym_preproc_def_token1] = ACTIONS(354), + [anon_sym_auto] = ACTIONS(354), + [anon_sym_inline] = ACTIONS(354), + [anon_sym_DASH] = ACTIONS(354), + }, + [47] = { + [sym_continue_statement] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(491), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(491), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_preproc_include] = STATE(491), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(491), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_preproc_def] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(491), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(491), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(491), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(491), + [sym_preproc_if] = STATE(491), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(491), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(85), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(99), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(101), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(99), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(346), - [sym_true] = ACTIONS(83), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(358), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, - [47] = { - [sym_preproc_def] = STATE(131), - [sym_preproc_function_def] = STATE(131), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(131), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_preproc_call] = STATE(131), - [sym_preproc_if_in_field_declaration_list] = STATE(131), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(131), - [sym__declaration_specifiers] = STATE(132), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(131), - [sym_enum_specifier] = STATE(44), - [sym_field_declaration] = STATE(131), + [48] = { + [sym_preproc_def] = STATE(135), + [sym_preproc_function_def] = STATE(135), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(135), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_preproc_call] = STATE(135), + [sym_preproc_if_in_field_declaration_list] = STATE(135), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(135), + [sym__declaration_specifiers] = STATE(136), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(135), + [sym_enum_specifier] = STATE(45), + [sym_field_declaration] = STATE(135), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [sym_preproc_directive] = ACTIONS(348), - [aux_sym_preproc_if_token1] = ACTIONS(350), + [sym_identifier] = ACTIONS(217), + [anon_sym_short] = ACTIONS(17), + [sym_preproc_directive] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), [anon_sym_const] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(352), + [anon_sym_RBRACE] = ACTIONS(364), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [aux_sym_preproc_ifdef_token1] = ACTIONS(354), - [anon_sym_static] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(366), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(354), - [aux_sym_preproc_def_token1] = ACTIONS(356), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - }, - [48] = { - [sym_field_declaration_list] = STATE(133), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_restrict] = ACTIONS(358), - [sym_comment] = ACTIONS(3), - [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), - [anon_sym_COMMA] = ACTIONS(360), - [sym_identifier] = ACTIONS(358), - [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), - [anon_sym_RPAREN] = ACTIONS(360), - [anon_sym_auto] = ACTIONS(358), - [anon_sym_inline] = ACTIONS(358), - [anon_sym___attribute__] = ACTIONS(358), - [anon_sym_LBRACK] = ACTIONS(360), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [aux_sym_preproc_ifdef_token2] = ACTIONS(366), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), }, [49] = { - [anon_sym_restrict] = ACTIONS(362), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(362), - [anon_sym_volatile] = ACTIONS(362), - [anon_sym_register] = ACTIONS(362), - [anon_sym_extern] = ACTIONS(362), - [anon_sym_STAR] = ACTIONS(364), - [anon_sym_COMMA] = ACTIONS(364), - [sym_identifier] = ACTIONS(362), - [anon_sym_const] = ACTIONS(362), - [anon_sym_LPAREN2] = ACTIONS(364), - [anon_sym_COLON] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(364), - [anon_sym__Atomic] = ACTIONS(362), - [anon_sym_RPAREN] = ACTIONS(364), - [anon_sym_auto] = ACTIONS(362), - [anon_sym_inline] = ACTIONS(362), - [anon_sym___attribute__] = ACTIONS(362), - [anon_sym_LBRACK] = ACTIONS(364), + [sym_field_declaration_list] = STATE(137), + [anon_sym_LBRACE] = ACTIONS(129), + [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), }, [50] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(63), - [sym_math_expression] = STATE(63), - [sym_cast_expression] = STATE(63), - [sym_field_expression] = STATE(35), - [aux_sym_sized_type_specifier_repeat1] = STATE(469), - [sym_struct_specifier] = STATE(67), - [sym__expression] = STATE(63), - [sym_comma_expression] = STATE(64), - [sym_bitwise_expression] = STATE(63), - [sym_equality_expression] = STATE(63), - [sym_type_descriptor] = STATE(134), - [sym_sizeof_expression] = STATE(63), - [sym_compound_literal_expression] = STATE(63), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(63), - [sym_concatenated_string] = STATE(63), - [sym_macro_type_specifier] = STATE(67), - [aux_sym_type_definition_repeat1] = STATE(66), - [sym__type_specifier] = STATE(67), - [sym_union_specifier] = STATE(67), - [sym_type_qualifier] = STATE(66), - [sym_conditional_expression] = STATE(63), - [sym_assignment_expression] = STATE(63), - [sym_relational_expression] = STATE(63), - [sym_shift_expression] = STATE(63), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_sized_type_specifier] = STATE(67), - [sym_enum_specifier] = STATE(67), + [anon_sym_restrict] = ACTIONS(374), + [sym_identifier] = ACTIONS(374), + [anon_sym_static] = ACTIONS(374), + [anon_sym_volatile] = ACTIONS(374), + [anon_sym_register] = ACTIONS(374), + [anon_sym_extern] = ACTIONS(374), + [anon_sym_STAR] = ACTIONS(376), + [anon_sym_COMMA] = ACTIONS(376), + [anon_sym_const] = ACTIONS(374), + [anon_sym_LPAREN2] = ACTIONS(376), + [anon_sym_COLON] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(376), + [anon_sym__Atomic] = ACTIONS(374), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(374), + [anon_sym_RPAREN] = ACTIONS(376), + [anon_sym_inline] = ACTIONS(374), + [anon_sym___attribute__] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + }, + [51] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(36), + [aux_sym_sized_type_specifier_repeat1] = STATE(477), + [sym_struct_specifier] = STATE(69), + [sym__expression] = STATE(65), + [sym_comma_expression] = STATE(66), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_type_descriptor] = STATE(138), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(65), + [sym_concatenated_string] = STATE(65), + [sym_macro_type_specifier] = STATE(69), + [aux_sym_type_definition_repeat1] = STATE(68), + [sym__type_specifier] = STATE(69), + [sym_union_specifier] = STATE(69), + [sym_type_qualifier] = STATE(68), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_sized_type_specifier] = STATE(69), + [sym_enum_specifier] = STATE(69), [anon_sym_union] = ACTIONS(7), - [sym_null] = ACTIONS(187), + [sym_false] = ACTIONS(207), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(189), - [anon_sym_short] = ACTIONS(189), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(209), + [anon_sym_unsigned] = ACTIONS(211), + [anon_sym_short] = ACTIONS(211), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(191), - [sym_true] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(193), + [sym_primitive_type] = ACTIONS(213), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(215), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [sym_false] = ACTIONS(187), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(195), - [anon_sym_signed] = ACTIONS(189), - [anon_sym_long] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [51] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(366), - [anon_sym_CARET] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(368), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [sym_true] = ACTIONS(207), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(207), + [anon_sym_signed] = ACTIONS(211), + [anon_sym_long] = ACTIONS(211), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [52] = { - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_restrict] = ACTIONS(370), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_DASH_GT] = ACTIONS(372), - [anon_sym_const] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym__Atomic] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_LT_LT_EQ] = ACTIONS(372), - [anon_sym_QMARK] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_CARET_EQ] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_volatile] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(370), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_struct] = ACTIONS(370), - [anon_sym_signed] = ACTIONS(370), - [anon_sym_long] = ACTIONS(370), - [anon_sym_GT_GT_EQ] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_PIPE_EQ] = ACTIONS(372), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_RBRACK] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(372), - [anon_sym___attribute__] = ACTIONS(370), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_union] = ACTIONS(370), - [anon_sym_unsigned] = ACTIONS(370), - [anon_sym_short] = ACTIONS(370), - [anon_sym_AMP_EQ] = ACTIONS(372), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_LPAREN2] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(372), - [sym_primitive_type] = ACTIONS(370), - [anon_sym_STAR_EQ] = ACTIONS(372), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_static] = ACTIONS(370), - [anon_sym_register] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_enum] = ACTIONS(370), - [sym_identifier] = ACTIONS(370), - [anon_sym_SLASH_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_auto] = ACTIONS(370), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_inline] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(372), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(378), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(378), + [anon_sym_CARET] = ACTIONS(380), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(380), + [anon_sym_RBRACE] = ACTIONS(380), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(380), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(378), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [53] = { - [aux_sym_string_literal_repeat1] = STATE(136), - [aux_sym_string_literal_token1] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(376), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(374), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(139), + [sym_math_expression] = STATE(139), + [sym_cast_expression] = STATE(139), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(139), + [sym_bitwise_expression] = STATE(139), + [sym_equality_expression] = STATE(139), + [sym_sizeof_expression] = STATE(139), + [sym_compound_literal_expression] = STATE(139), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(139), + [sym_concatenated_string] = STATE(139), + [sym_conditional_expression] = STATE(139), + [sym_assignment_expression] = STATE(139), + [sym_relational_expression] = STATE(139), + [sym_shift_expression] = STATE(139), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(382), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(384), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [54] = { - [anon_sym_PERCENT] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(378), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(239), + [sym_macro_type_specifier] = STATE(69), + [aux_sym_type_definition_repeat1] = STATE(68), + [sym__type_specifier] = STATE(69), + [sym_union_specifier] = STATE(69), + [sym_type_qualifier] = STATE(68), + [aux_sym_sized_type_specifier_repeat1] = STATE(477), + [sym_struct_specifier] = STATE(69), + [sym_sized_type_specifier] = STATE(69), + [sym_enum_specifier] = STATE(69), + [sym_type_descriptor] = STATE(140), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(211), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_short] = ACTIONS(211), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(211), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(213), + [sym_comment] = ACTIONS(3), }, [55] = { - [anon_sym_while] = ACTIONS(380), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(141), + [sym_continue_statement] = STATE(141), + [sym_goto_statement] = STATE(141), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(141), + [sym_expression_statement] = STATE(141), + [sym_if_statement] = STATE(141), + [sym_do_statement] = STATE(141), + [sym_for_statement] = STATE(141), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(141), + [sym_return_statement] = STATE(141), + [sym_break_statement] = STATE(141), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(141), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(386), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [56] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(388), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(151), }, [57] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(384), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(386), - [anon_sym_DASH_EQ] = ACTIONS(386), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_LT_EQ] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(386), - [anon_sym_LT_LT_EQ] = ACTIONS(386), - [anon_sym_QMARK] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(386), - [anon_sym_CARET_EQ] = ACTIONS(386), - [anon_sym_COMMA] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(386), - [anon_sym_GT_GT_EQ] = ACTIONS(386), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_PIPE_EQ] = ACTIONS(386), - [anon_sym_RPAREN] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(386), - [anon_sym_AMP_EQ] = ACTIONS(386), - [anon_sym_AMP] = ACTIONS(384), - [anon_sym_AMP_AMP] = ACTIONS(386), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(386), - [anon_sym_COLON] = ACTIONS(386), - [anon_sym_STAR_EQ] = ACTIONS(386), - [anon_sym_EQ_EQ] = ACTIONS(386), - [anon_sym_PIPE_PIPE] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_SLASH_EQ] = ACTIONS(386), - [anon_sym_BANG_EQ] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(386), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_while] = ACTIONS(390), + [sym_comment] = ACTIONS(3), }, [58] = { - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_union] = ACTIONS(390), - [anon_sym_sizeof] = ACTIONS(390), - [anon_sym_unsigned] = ACTIONS(390), - [anon_sym_restrict] = ACTIONS(390), - [anon_sym_short] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(388), - [sym_null] = ACTIONS(390), - [sym_identifier] = ACTIONS(390), - [anon_sym_do] = ACTIONS(390), - [anon_sym_goto] = ACTIONS(390), - [ts_builtin_sym_end] = ACTIONS(388), - [anon_sym_TILDE] = ACTIONS(388), - [sym_preproc_directive] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(388), - [aux_sym_preproc_if_token1] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(390), - [anon_sym_LPAREN2] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym__Atomic] = ACTIONS(390), - [sym_primitive_type] = ACTIONS(390), - [sym_true] = ACTIONS(390), - [anon_sym_for] = ACTIONS(390), - [anon_sym_break] = ACTIONS(390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(390), - [aux_sym_preproc_include_token1] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(388), - [anon_sym_static] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(390), - [anon_sym_register] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_struct] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(390), - [anon_sym_signed] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [anon_sym_long] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_return] = ACTIONS(390), - [anon_sym_while] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(390), - [anon_sym_SEMI] = ACTIONS(388), - [sym_number_literal] = ACTIONS(388), - [aux_sym_preproc_def_token1] = ACTIONS(390), - [sym_false] = ACTIONS(390), - [anon_sym_auto] = ACTIONS(390), - [anon_sym_SQUOTE] = ACTIONS(388), - [anon_sym_inline] = ACTIONS(390), - [anon_sym___attribute__] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(392), }, [59] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(392), - }, - [60] = { - [sym_argument_list] = STATE(120), + [sym_argument_list] = STATE(124), [anon_sym_PERCENT] = ACTIONS(394), - [sym_comment] = ACTIONS(3), [anon_sym_PERCENT_EQ] = ACTIONS(396), [anon_sym_DASH_EQ] = ACTIONS(396), [anon_sym_LT] = ACTIONS(394), [anon_sym_LT_EQ] = ACTIONS(396), [anon_sym_CARET] = ACTIONS(394), - [anon_sym_DASH_GT] = ACTIONS(306), + [anon_sym_DASH_GT] = ACTIONS(318), [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(312), + [anon_sym_DASH_DASH] = ACTIONS(396), + [sym_comment] = ACTIONS(3), [anon_sym_PLUS_EQ] = ACTIONS(396), [anon_sym_LT_LT_EQ] = ACTIONS(396), [anon_sym_QMARK] = ACTIONS(396), [anon_sym_GT_EQ] = ACTIONS(396), [anon_sym_CARET_EQ] = ACTIONS(396), [anon_sym_COMMA] = ACTIONS(396), - [anon_sym_PLUS_PLUS] = ACTIONS(312), + [anon_sym_PLUS_PLUS] = ACTIONS(396), [anon_sym_GT_GT_EQ] = ACTIONS(396), [anon_sym_LT_LT] = ACTIONS(394), [anon_sym_PIPE_EQ] = ACTIONS(396), @@ -8808,7 +8824,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(394), [anon_sym_AMP_AMP] = ACTIONS(396), [anon_sym_EQ] = ACTIONS(394), - [anon_sym_LPAREN2] = ACTIONS(308), + [anon_sym_LPAREN2] = ACTIONS(320), [anon_sym_GT_GT] = ACTIONS(394), [anon_sym_RBRACE] = ACTIONS(396), [anon_sym_COLON] = ACTIONS(396), @@ -8822,7482 +8838,7150 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(396), [anon_sym_GT] = ACTIONS(394), [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(318), [anon_sym_DASH] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [60] = { + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(400), + [anon_sym_sizeof] = ACTIONS(400), + [anon_sym_unsigned] = ACTIONS(400), + [anon_sym_restrict] = ACTIONS(400), + [anon_sym_short] = ACTIONS(400), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_null] = ACTIONS(400), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(400), + [sym_identifier] = ACTIONS(400), + [anon_sym_TILDE] = ACTIONS(398), + [sym_preproc_directive] = ACTIONS(400), + [anon_sym_AMP] = ACTIONS(398), + [aux_sym_preproc_if_token1] = ACTIONS(400), + [ts_builtin_sym_end] = ACTIONS(398), + [anon_sym_const] = ACTIONS(400), + [anon_sym_LPAREN2] = ACTIONS(398), + [anon_sym_typedef] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(398), + [anon_sym__Atomic] = ACTIONS(400), + [sym_primitive_type] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(400), + [anon_sym_break] = ACTIONS(400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(400), + [aux_sym_preproc_include_token1] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_static] = ACTIONS(400), + [anon_sym_volatile] = ACTIONS(400), + [anon_sym_register] = ACTIONS(400), + [anon_sym_extern] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_struct] = ACTIONS(400), + [anon_sym_switch] = ACTIONS(400), + [anon_sym_signed] = ACTIONS(400), + [anon_sym_enum] = ACTIONS(400), + [anon_sym_long] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_return] = ACTIONS(400), + [anon_sym_while] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(400), + [anon_sym_SEMI] = ACTIONS(398), + [sym_number_literal] = ACTIONS(398), + [aux_sym_preproc_def_token1] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(400), + [anon_sym_L] = ACTIONS(400), + [anon_sym_inline] = ACTIONS(400), + [anon_sym___attribute__] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), }, [61] = { - [sym_continue_statement] = STATE(144), - [sym_preproc_function_def] = STATE(144), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(143), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(144), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(144), - [sym_for_statement] = STATE(144), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(144), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(144), - [sym_return_statement] = STATE(144), - [sym_preproc_include] = STATE(144), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(144), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(144), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(144), - [sym_while_statement] = STATE(144), - [sym_preproc_def] = STATE(144), - [sym_goto_statement] = STATE(144), - [sym_preproc_else] = STATE(143), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(144), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(144), - [sym_expression_statement] = STATE(144), - [sym_do_statement] = STATE(144), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(144), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(144), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(144), - [sym_preproc_if] = STATE(144), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(144), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [anon_sym_LF] = ACTIONS(402), + [sym_comment] = ACTIONS(183), + }, + [62] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_RBRACK] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [63] = { + [sym_continue_statement] = STATE(149), + [sym_preproc_function_def] = STATE(149), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(148), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(149), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(149), + [sym_for_statement] = STATE(149), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(149), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(149), + [sym_return_statement] = STATE(149), + [sym_preproc_include] = STATE(149), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(149), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(149), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(149), + [sym_while_statement] = STATE(149), + [sym_preproc_def] = STATE(149), + [sym_goto_statement] = STATE(149), + [sym_preproc_else] = STATE(148), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(149), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(149), + [sym_expression_statement] = STATE(149), + [sym_do_statement] = STATE(149), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(149), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(149), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(149), + [sym_preproc_if] = STATE(149), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(149), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(402), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(414), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, - [62] = { - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_restrict] = ACTIONS(446), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_const] = ACTIONS(446), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym__Atomic] = ACTIONS(446), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_volatile] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(252), + [64] = { + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_restrict] = ACTIONS(456), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_const] = ACTIONS(456), + [anon_sym_LPAREN2] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(456), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_volatile] = ACTIONS(456), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(164), }, - [63] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(448), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [65] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, - [64] = { + [66] = { + [anon_sym_RPAREN] = ACTIONS(458), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(448), }, - [65] = { + [67] = { + [anon_sym_RPAREN] = ACTIONS(460), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(450), }, - [66] = { - [sym_struct_specifier] = STATE(148), - [sym_macro_type_specifier] = STATE(148), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_union_specifier] = STATE(148), - [sym__type_specifier] = STATE(148), - [sym_sized_type_specifier] = STATE(148), - [sym_enum_specifier] = STATE(148), - [aux_sym_sized_type_specifier_repeat1] = STATE(469), - [sym_identifier] = ACTIONS(197), + [68] = { + [sym_struct_specifier] = STATE(153), + [sym_macro_type_specifier] = STATE(153), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_union_specifier] = STATE(153), + [sym__type_specifier] = STATE(153), + [sym_sized_type_specifier] = STATE(153), + [sym_enum_specifier] = STATE(153), + [aux_sym_sized_type_specifier_repeat1] = STATE(477), + [anon_sym_long] = ACTIONS(211), [anon_sym_union] = ACTIONS(7), [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(189), + [anon_sym_unsigned] = ACTIONS(211), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_long] = ACTIONS(189), - [anon_sym_short] = ACTIONS(189), + [sym_identifier] = ACTIONS(217), + [anon_sym_short] = ACTIONS(211), [anon_sym_volatile] = ACTIONS(13), - [sym_comment] = ACTIONS(3), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(452), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(189), - [anon_sym_enum] = ACTIONS(63), + [sym_primitive_type] = ACTIONS(462), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(67), }, - [67] = { - [sym_abstract_pointer_declarator] = STATE(153), - [sym_abstract_array_declarator] = STATE(153), - [sym_abstract_function_declarator] = STATE(153), - [sym__abstract_declarator] = STATE(153), - [sym_type_qualifier] = STATE(154), - [aux_sym_type_definition_repeat1] = STATE(154), - [sym_parameter_list] = STATE(152), - [anon_sym_const] = ACTIONS(454), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_restrict] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(454), - [anon_sym__Atomic] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_LBRACK] = ACTIONS(462), + [69] = { + [sym_abstract_pointer_declarator] = STATE(158), + [sym_abstract_array_declarator] = STATE(158), + [sym_abstract_function_declarator] = STATE(158), + [sym__abstract_declarator] = STATE(158), + [sym_type_qualifier] = STATE(159), + [aux_sym_type_definition_repeat1] = STATE(159), + [sym_parameter_list] = STATE(157), + [anon_sym_const] = ACTIONS(464), + [anon_sym_LPAREN2] = ACTIONS(466), + [anon_sym_restrict] = ACTIONS(464), + [anon_sym_volatile] = ACTIONS(464), + [anon_sym__Atomic] = ACTIONS(464), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(470), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(472), }, - [68] = { - [anon_sym_restrict] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_COMMA] = ACTIONS(446), - [sym_identifier] = ACTIONS(237), - [anon_sym_const] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym__Atomic] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(446), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_inline] = ACTIONS(237), - [anon_sym___attribute__] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(446), + [70] = { + [anon_sym_restrict] = ACTIONS(149), + [sym_identifier] = ACTIONS(149), + [anon_sym_static] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [anon_sym_register] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(456), + [anon_sym_COMMA] = ACTIONS(456), + [anon_sym_const] = ACTIONS(149), + [anon_sym_LPAREN2] = ACTIONS(474), + [anon_sym_COLON] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym__Atomic] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(456), + [anon_sym_inline] = ACTIONS(149), + [anon_sym___attribute__] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(456), }, - [69] = { - [sym_struct_specifier] = STATE(155), - [sym_macro_type_specifier] = STATE(155), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_union_specifier] = STATE(155), - [sym__type_specifier] = STATE(155), - [sym_sized_type_specifier] = STATE(155), - [sym_enum_specifier] = STATE(155), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), + [71] = { + [sym_struct_specifier] = STATE(160), + [sym_macro_type_specifier] = STATE(160), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_union_specifier] = STATE(160), + [sym__type_specifier] = STATE(160), + [sym_sized_type_specifier] = STATE(160), + [sym_enum_specifier] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(217), + [anon_sym_short] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), [anon_sym_const] = ACTIONS(13), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(467), - }, - [70] = { - [sym_array_type_declarator] = STATE(159), - [sym_pointer_type_declarator] = STATE(159), - [sym_function_type_declarator] = STATE(159), - [sym__type_declarator] = STATE(159), - [sym_identifier] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), + [sym_primitive_type] = ACTIONS(477), [sym_comment] = ACTIONS(3), }, - [71] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_RBRACK] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(475), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_STAR] = ACTIONS(475), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(328), - }, [72] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(161), - [sym_math_expression] = STATE(161), - [sym_cast_expression] = STATE(161), - [sym_declaration] = STATE(160), - [sym_field_expression] = STATE(35), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym__expression] = STATE(161), - [sym_bitwise_expression] = STATE(161), - [sym_equality_expression] = STATE(161), - [sym_sizeof_expression] = STATE(161), - [sym__declaration_specifiers] = STATE(162), - [sym_compound_literal_expression] = STATE(161), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(161), - [sym_char_literal] = STATE(161), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_conditional_expression] = STATE(161), - [sym_assignment_expression] = STATE(161), - [sym_relational_expression] = STATE(161), - [sym_shift_expression] = STATE(161), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_union] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(25), - [sym_null] = ACTIONS(479), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_unsigned] = ACTIONS(15), + [sym_array_type_declarator] = STATE(164), + [sym_pointer_type_declarator] = STATE(164), + [sym_function_type_declarator] = STATE(164), + [sym__type_declarator] = STATE(164), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(481), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_number_literal] = ACTIONS(481), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(25), - [sym_false] = ACTIONS(479), - [anon_sym_enum] = ACTIONS(63), [sym_identifier] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(81), }, [73] = { - [anon_sym_case] = ACTIONS(487), - [sym_null] = ACTIONS(487), - [anon_sym_restrict] = ACTIONS(487), - [sym_comment] = ACTIONS(3), - [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), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [sym_number_literal] = ACTIONS(489), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_extern] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_signed] = ACTIONS(487), - [anon_sym_long] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = 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), - [anon_sym_TILDE] = ACTIONS(489), - [sym_preproc_directive] = ACTIONS(487), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(487), + [anon_sym_DASH_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(485), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(485), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(487), + [anon_sym_LT_LT_EQ] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_CARET_EQ] = ACTIONS(487), + [anon_sym_COMMA] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(487), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(487), + [anon_sym_RBRACK] = ACTIONS(487), + [anon_sym_AMP_EQ] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ] = ACTIONS(485), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_COLON] = ACTIONS(487), + [anon_sym_STAR_EQ] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(485), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [74] = { + [anon_sym_PERCENT] = ACTIONS(489), + [anon_sym_restrict] = ACTIONS(489), + [sym_identifier] = ACTIONS(489), + [anon_sym_PERCENT_EQ] = ACTIONS(491), + [anon_sym_DASH_EQ] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_LT_EQ] = ACTIONS(491), + [anon_sym_CARET] = ACTIONS(489), + [anon_sym_DASH_GT] = ACTIONS(491), + [anon_sym_const] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(491), + [anon_sym__Atomic] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(491), + [anon_sym_LT_LT_EQ] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(491), + [anon_sym_GT_EQ] = ACTIONS(491), + [anon_sym_CARET_EQ] = ACTIONS(491), + [anon_sym_COMMA] = ACTIONS(491), + [anon_sym_volatile] = ACTIONS(489), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_PLUS_PLUS] = ACTIONS(491), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_signed] = ACTIONS(489), + [anon_sym_long] = ACTIONS(489), + [anon_sym_GT_GT_EQ] = ACTIONS(491), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_PIPE_EQ] = ACTIONS(491), + [anon_sym_RPAREN] = ACTIONS(491), + [anon_sym_L] = ACTIONS(489), + [anon_sym_RBRACK] = ACTIONS(491), + [anon_sym___attribute__] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsigned] = ACTIONS(489), + [anon_sym_short] = ACTIONS(489), + [anon_sym_AMP_EQ] = ACTIONS(491), [anon_sym_AMP] = ACTIONS(489), - [aux_sym_preproc_if_token1] = ACTIONS(487), - [anon_sym_LPAREN2] = ACTIONS(489), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_else] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_primitive_type] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [aux_sym_preproc_include_token1] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(489), - [anon_sym_static] = ACTIONS(487), - [anon_sym_register] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(489), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_LPAREN2] = ACTIONS(491), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(491), + [sym_primitive_type] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(491), + [anon_sym_EQ_EQ] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(491), + [anon_sym_static] = ACTIONS(489), + [anon_sym_register] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(489), [anon_sym_STAR] = ACTIONS(489), - [anon_sym_if] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [sym_identifier] = 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_auto] = ACTIONS(487), - [anon_sym_inline] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), + [anon_sym_enum] = ACTIONS(489), + [anon_sym_SLASH_EQ] = ACTIONS(491), + [anon_sym_BANG_EQ] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_PIPE] = ACTIONS(489), + [anon_sym_auto] = ACTIONS(489), + [anon_sym_DOT] = ACTIONS(491), + [anon_sym_inline] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(491), }, - [74] = { - [sym_continue_statement] = STATE(165), - [sym_preproc_function_def] = STATE(165), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(164), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(165), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(165), - [sym_for_statement] = STATE(165), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(165), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_preproc_include] = STATE(165), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(165), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(165), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(165), - [sym_while_statement] = STATE(165), - [sym_preproc_def] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym_preproc_else] = STATE(164), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(165), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_do_statement] = STATE(165), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(165), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(165), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(165), - [sym_preproc_if] = STATE(165), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(165), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [75] = { + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(493), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(495), + }, + [76] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(168), + [sym_math_expression] = STATE(168), + [sym_cast_expression] = STATE(168), + [sym_declaration] = STATE(167), + [sym_field_expression] = STATE(36), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym__expression] = STATE(168), + [sym_bitwise_expression] = STATE(168), + [sym_equality_expression] = STATE(168), + [sym_sizeof_expression] = STATE(168), + [sym__declaration_specifiers] = STATE(169), + [sym_compound_literal_expression] = STATE(168), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(168), + [sym_char_literal] = STATE(168), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_conditional_expression] = STATE(168), + [sym_assignment_expression] = STATE(168), + [sym_relational_expression] = STATE(168), + [sym_shift_expression] = STATE(168), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym_false] = ACTIONS(497), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(491), + [sym_identifier] = ACTIONS(499), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [sym_number_literal] = ACTIONS(501), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), - }, - [75] = { - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_union] = ACTIONS(495), - [anon_sym_sizeof] = ACTIONS(495), - [anon_sym_unsigned] = ACTIONS(495), - [anon_sym_restrict] = ACTIONS(495), - [anon_sym_short] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(493), - [sym_null] = ACTIONS(495), - [sym_identifier] = ACTIONS(495), - [anon_sym_do] = ACTIONS(495), - [anon_sym_goto] = ACTIONS(495), - [ts_builtin_sym_end] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(493), - [sym_preproc_directive] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(493), - [aux_sym_preproc_if_token1] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(495), - [anon_sym_LPAREN2] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(493), - [anon_sym__Atomic] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(495), - [sym_true] = ACTIONS(495), - [anon_sym_for] = ACTIONS(495), - [anon_sym_break] = ACTIONS(495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(495), - [aux_sym_preproc_include_token1] = ACTIONS(495), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(495), - [anon_sym_register] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(495), - [anon_sym_switch] = ACTIONS(495), - [anon_sym_signed] = ACTIONS(495), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_long] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_return] = ACTIONS(495), - [anon_sym_while] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(493), - [sym_number_literal] = ACTIONS(493), - [aux_sym_preproc_def_token1] = ACTIONS(495), - [sym_false] = ACTIONS(495), - [anon_sym_auto] = ACTIONS(495), - [anon_sym_SQUOTE] = ACTIONS(493), - [anon_sym_inline] = ACTIONS(495), - [anon_sym___attribute__] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - }, - [76] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(497), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(499), - [anon_sym_DASH_EQ] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_LT_EQ] = ACTIONS(499), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_PLUS_EQ] = ACTIONS(499), - [anon_sym_LT_LT_EQ] = ACTIONS(499), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_GT_EQ] = ACTIONS(499), - [anon_sym_CARET_EQ] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_GT_GT_EQ] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_PIPE_EQ] = ACTIONS(499), - [anon_sym_RPAREN] = ACTIONS(499), - [anon_sym_RBRACK] = ACTIONS(499), - [anon_sym_AMP_EQ] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(497), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(497), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_COLON] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(499), - [anon_sym_EQ_EQ] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(499), - [anon_sym_BANG_EQ] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_PIPE] = ACTIONS(497), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_true] = ACTIONS(497), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [77] = { - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_function_definition] = STATE(167), - [sym_declaration_list] = STATE(167), - [sym_declaration] = STATE(167), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(168), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_case] = ACTIONS(505), + [sym_false] = ACTIONS(505), + [anon_sym_restrict] = ACTIONS(505), + [sym_identifier] = ACTIONS(505), + [anon_sym_goto] = ACTIONS(505), + [anon_sym_const] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(505), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_default] = ACTIONS(505), + [anon_sym__Atomic] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(505), + [sym_number_literal] = ACTIONS(507), + [anon_sym_volatile] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(505), + [anon_sym_signed] = ACTIONS(505), + [anon_sym_long] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [aux_sym_preproc_ifdef_token2] = ACTIONS(505), + [anon_sym_L] = ACTIONS(505), + [anon_sym___attribute__] = ACTIONS(505), + [anon_sym_sizeof] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_union] = ACTIONS(505), + [anon_sym_unsigned] = ACTIONS(505), + [anon_sym_short] = ACTIONS(505), + [anon_sym_do] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(507), + [sym_preproc_directive] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(507), + [aux_sym_preproc_if_token1] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_LPAREN2] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_else] = ACTIONS(505), + [sym_primitive_type] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [aux_sym_preproc_include_token1] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_static] = ACTIONS(505), + [anon_sym_register] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_if] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(505), + [sym_true] = ACTIONS(505), + [anon_sym_enum] = ACTIONS(505), + [sym_null] = ACTIONS(505), + [ts_builtin_sym_end] = ACTIONS(507), + [anon_sym_return] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_preproc_def_token1] = ACTIONS(505), + [anon_sym_auto] = ACTIONS(505), + [anon_sym_inline] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + }, + [78] = { + [sym_continue_statement] = STATE(172), + [sym_preproc_function_def] = STATE(172), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(171), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(172), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(172), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_preproc_include] = STATE(172), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(172), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(172), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_preproc_def] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_preproc_else] = STATE(171), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(172), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(172), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(172), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(172), + [sym_preproc_if] = STATE(172), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(172), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(509), [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - }, - [78] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(767), - [sym_math_expression] = STATE(767), - [sym_cast_expression] = STATE(767), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(767), - [sym_comma_expression] = STATE(768), - [sym_bitwise_expression] = STATE(767), - [sym_equality_expression] = STATE(767), - [sym_sizeof_expression] = STATE(767), - [sym_compound_literal_expression] = STATE(767), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(767), - [sym_concatenated_string] = STATE(767), - [sym_conditional_expression] = STATE(767), - [sym_assignment_expression] = STATE(767), - [sym_relational_expression] = STATE(767), - [sym_shift_expression] = STATE(767), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(503), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [79] = { - [sym_while_statement] = STATE(169), - [sym_continue_statement] = STATE(169), - [sym_goto_statement] = STATE(169), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(169), - [sym_expression_statement] = STATE(169), - [sym_if_statement] = STATE(169), - [sym_do_statement] = STATE(169), - [sym_for_statement] = STATE(169), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(169), - [sym_return_statement] = STATE(169), - [sym_break_statement] = STATE(169), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(169), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(507), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [80] = { - [sym_field_declaration_list] = STATE(170), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_restrict] = ACTIONS(509), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(509), - [anon_sym_volatile] = ACTIONS(509), - [anon_sym_register] = ACTIONS(509), - [anon_sym_extern] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(511), - [sym_identifier] = ACTIONS(509), - [anon_sym_const] = ACTIONS(509), - [anon_sym_LPAREN2] = ACTIONS(511), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym__Atomic] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(511), - [anon_sym_auto] = ACTIONS(509), - [anon_sym_inline] = ACTIONS(509), - [anon_sym___attribute__] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, - [81] = { + [79] = { + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_union] = ACTIONS(513), + [anon_sym_sizeof] = ACTIONS(513), + [anon_sym_unsigned] = ACTIONS(513), [anon_sym_restrict] = ACTIONS(513), + [anon_sym_short] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [anon_sym_do] = ACTIONS(513), + [anon_sym_goto] = ACTIONS(513), + [sym_identifier] = ACTIONS(513), + [anon_sym_TILDE] = ACTIONS(511), + [sym_preproc_directive] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(511), + [aux_sym_preproc_if_token1] = ACTIONS(513), + [ts_builtin_sym_end] = ACTIONS(511), + [anon_sym_const] = ACTIONS(513), + [anon_sym_LPAREN2] = ACTIONS(511), + [anon_sym_typedef] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(511), + [anon_sym__Atomic] = ACTIONS(513), + [sym_primitive_type] = ACTIONS(513), [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(513), + [aux_sym_preproc_include_token1] = ACTIONS(513), + [anon_sym_BANG] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), [anon_sym_volatile] = ACTIONS(513), [anon_sym_register] = ACTIONS(513), [anon_sym_extern] = ACTIONS(513), - [anon_sym_STAR] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(515), - [sym_identifier] = ACTIONS(513), - [anon_sym_const] = ACTIONS(513), - [anon_sym_LPAREN2] = ACTIONS(515), - [anon_sym_COLON] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(515), - [anon_sym__Atomic] = ACTIONS(513), - [anon_sym_RPAREN] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(513), + [anon_sym_signed] = ACTIONS(513), + [anon_sym_enum] = ACTIONS(513), + [anon_sym_long] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_return] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(511), + [sym_number_literal] = ACTIONS(511), + [aux_sym_preproc_def_token1] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(511), [anon_sym_auto] = ACTIONS(513), + [anon_sym_L] = ACTIONS(513), [anon_sym_inline] = ACTIONS(513), [anon_sym___attribute__] = ACTIONS(513), - [anon_sym_LBRACK] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(513), }, - [82] = { - [sym_switch_body] = STATE(172), - [anon_sym_LBRACE] = ACTIONS(517), - [sym_comment] = ACTIONS(3), - }, - [83] = { - [sym_enumerator] = STATE(176), - [sym_identifier] = ACTIONS(519), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_COMMA] = ACTIONS(523), + [80] = { + [anon_sym_DQUOTE] = ACTIONS(515), [sym_comment] = ACTIONS(3), }, - [84] = { - [sym_enumerator_list] = STATE(177), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_restrict] = ACTIONS(525), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(525), - [anon_sym_volatile] = ACTIONS(525), - [anon_sym_register] = ACTIONS(525), - [anon_sym_extern] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [sym_identifier] = ACTIONS(525), - [anon_sym_const] = ACTIONS(525), - [anon_sym_LPAREN2] = ACTIONS(527), - [anon_sym_COLON] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym__Atomic] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_auto] = ACTIONS(525), - [anon_sym_inline] = ACTIONS(525), - [anon_sym___attribute__] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(527), - }, - [85] = { - [anon_sym_restrict] = ACTIONS(529), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(529), - [anon_sym_volatile] = ACTIONS(529), - [anon_sym_register] = ACTIONS(529), - [anon_sym_extern] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(531), - [sym_identifier] = ACTIONS(529), - [anon_sym_const] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(531), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(531), - [anon_sym__Atomic] = ACTIONS(529), - [anon_sym_RPAREN] = ACTIONS(531), - [anon_sym_auto] = ACTIONS(529), - [anon_sym_inline] = ACTIONS(529), - [anon_sym___attribute__] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(531), - }, - [86] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(178), - [sym_math_expression] = STATE(178), - [sym_cast_expression] = STATE(178), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(178), - [sym_bitwise_expression] = STATE(178), - [sym_equality_expression] = STATE(178), - [sym_sizeof_expression] = STATE(178), - [sym_compound_literal_expression] = STATE(178), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(178), - [sym_concatenated_string] = STATE(178), - [sym_conditional_expression] = STATE(178), - [sym_assignment_expression] = STATE(178), - [sym_relational_expression] = STATE(178), - [sym_shift_expression] = STATE(178), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(533), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(535), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(533), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [81] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(517), + [anon_sym_PERCENT_EQ] = ACTIONS(519), + [anon_sym_DASH_EQ] = ACTIONS(519), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_LT_EQ] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(517), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(519), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(519), + [anon_sym_LT_LT_EQ] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(519), + [anon_sym_GT_EQ] = ACTIONS(519), + [anon_sym_CARET_EQ] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(519), + [anon_sym_GT_GT_EQ] = ACTIONS(519), + [anon_sym_LT_LT] = ACTIONS(517), + [anon_sym_PIPE_EQ] = ACTIONS(519), + [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_RBRACK] = ACTIONS(519), + [anon_sym_AMP_EQ] = ACTIONS(519), + [anon_sym_AMP] = ACTIONS(517), + [anon_sym_AMP_AMP] = ACTIONS(519), + [anon_sym_EQ] = ACTIONS(517), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(519), + [anon_sym_COLON] = ACTIONS(519), + [anon_sym_STAR_EQ] = ACTIONS(519), + [anon_sym_EQ_EQ] = ACTIONS(519), + [anon_sym_PIPE_PIPE] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_SLASH_EQ] = ACTIONS(519), + [anon_sym_BANG_EQ] = ACTIONS(519), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_GT] = ACTIONS(517), + [anon_sym_PIPE] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(340), }, - [87] = { - [sym_macro_type_specifier] = STATE(67), - [aux_sym_type_definition_repeat1] = STATE(66), - [sym__type_specifier] = STATE(67), - [sym_union_specifier] = STATE(67), - [sym_type_qualifier] = STATE(66), - [aux_sym_sized_type_specifier_repeat1] = STATE(469), - [sym_struct_specifier] = STATE(67), - [sym_sized_type_specifier] = STATE(67), - [sym_enum_specifier] = STATE(67), - [sym_type_descriptor] = STATE(179), + [82] = { + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_function_definition] = STATE(174), + [sym_declaration_list] = STATE(174), + [sym_declaration] = STATE(174), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym__declaration_specifiers] = STATE(175), + [anon_sym_LBRACE] = ACTIONS(521), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(189), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(189), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(189), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(189), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), [anon_sym_const] = ACTIONS(13), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(191), - }, - [88] = { - [sym_while_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(180), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(19), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + }, + [83] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(780), + [sym_math_expression] = STATE(780), + [sym_cast_expression] = STATE(780), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(780), + [sym_comma_expression] = STATE(781), + [sym_bitwise_expression] = STATE(780), + [sym_equality_expression] = STATE(780), + [sym_sizeof_expression] = STATE(780), + [sym_compound_literal_expression] = STATE(780), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(780), + [sym_concatenated_string] = STATE(780), + [sym_conditional_expression] = STATE(780), + [sym_assignment_expression] = STATE(780), + [sym_relational_expression] = STATE(780), + [sym_shift_expression] = STATE(780), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(523), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(525), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(507), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [89] = { - [anon_sym_case] = ACTIONS(537), - [sym_null] = ACTIONS(537), - [anon_sym_restrict] = ACTIONS(537), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(537), - [anon_sym_const] = ACTIONS(537), - [anon_sym_typedef] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_default] = ACTIONS(537), - [anon_sym__Atomic] = ACTIONS(537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(537), - [sym_number_literal] = ACTIONS(539), - [anon_sym_volatile] = ACTIONS(537), - [anon_sym_extern] = ACTIONS(537), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_struct] = ACTIONS(537), - [anon_sym_signed] = ACTIONS(537), - [anon_sym_long] = ACTIONS(537), - [anon_sym_while] = ACTIONS(537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym___attribute__] = ACTIONS(537), - [anon_sym_sizeof] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(539), - [anon_sym_union] = ACTIONS(537), - [anon_sym_unsigned] = ACTIONS(537), - [anon_sym_short] = ACTIONS(537), - [anon_sym_do] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(539), - [sym_preproc_directive] = ACTIONS(537), - [anon_sym_AMP] = ACTIONS(539), - [aux_sym_preproc_if_token1] = ACTIONS(537), - [anon_sym_LPAREN2] = ACTIONS(539), - [anon_sym_RBRACE] = ACTIONS(539), - [anon_sym_else] = ACTIONS(537), - [sym_true] = ACTIONS(537), - [sym_primitive_type] = ACTIONS(537), - [anon_sym_for] = ACTIONS(537), - [anon_sym_break] = ACTIONS(537), - [aux_sym_preproc_include_token1] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(539), - [anon_sym_static] = ACTIONS(537), - [anon_sym_register] = ACTIONS(537), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_if] = ACTIONS(537), - [anon_sym_switch] = ACTIONS(537), - [sym_false] = ACTIONS(537), - [anon_sym_enum] = ACTIONS(537), - [sym_identifier] = ACTIONS(537), - [ts_builtin_sym_end] = ACTIONS(539), - [anon_sym_return] = ACTIONS(537), - [anon_sym_continue] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(539), - [aux_sym_preproc_def_token1] = ACTIONS(537), - [anon_sym_auto] = ACTIONS(537), - [anon_sym_inline] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), - }, - [90] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(523), + [sym_null] = ACTIONS(523), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [91] = { - [sym_while_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(182), + [84] = { + [sym_while_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(176), [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(386), [anon_sym_do] = ACTIONS(21), [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(507), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [92] = { - [anon_sym_case] = ACTIONS(543), - [sym_null] = ACTIONS(543), - [anon_sym_restrict] = ACTIONS(543), + [85] = { + [sym_field_declaration_list] = STATE(177), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_restrict] = ACTIONS(527), + [sym_identifier] = ACTIONS(527), + [anon_sym_static] = ACTIONS(527), + [anon_sym_volatile] = ACTIONS(527), + [anon_sym_register] = ACTIONS(527), + [anon_sym_extern] = ACTIONS(527), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_COMMA] = ACTIONS(529), + [anon_sym_const] = ACTIONS(527), + [anon_sym_LPAREN2] = ACTIONS(529), + [anon_sym_COLON] = ACTIONS(529), + [anon_sym_SEMI] = ACTIONS(529), + [anon_sym__Atomic] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_inline] = ACTIONS(527), + [anon_sym___attribute__] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(529), + }, + [86] = { + [anon_sym_restrict] = ACTIONS(531), + [sym_identifier] = ACTIONS(531), + [anon_sym_static] = ACTIONS(531), + [anon_sym_volatile] = ACTIONS(531), + [anon_sym_register] = ACTIONS(531), + [anon_sym_extern] = ACTIONS(531), + [anon_sym_STAR] = ACTIONS(533), + [anon_sym_COMMA] = ACTIONS(533), + [anon_sym_const] = ACTIONS(531), + [anon_sym_LPAREN2] = ACTIONS(533), + [anon_sym_COLON] = ACTIONS(533), + [anon_sym_SEMI] = ACTIONS(533), + [anon_sym__Atomic] = ACTIONS(531), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(531), + [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_inline] = ACTIONS(531), + [anon_sym___attribute__] = ACTIONS(531), + [anon_sym_LBRACK] = ACTIONS(533), + }, + [87] = { + [sym_switch_body] = STATE(179), + [anon_sym_LBRACE] = ACTIONS(535), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_typedef] = ACTIONS(543), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_default] = ACTIONS(543), - [anon_sym__Atomic] = ACTIONS(543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(543), - [sym_number_literal] = ACTIONS(545), - [anon_sym_volatile] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(543), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(543), - [anon_sym_signed] = ACTIONS(543), - [anon_sym_long] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [anon_sym___attribute__] = ACTIONS(543), - [anon_sym_sizeof] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_union] = ACTIONS(543), - [anon_sym_unsigned] = ACTIONS(543), - [anon_sym_short] = ACTIONS(543), - [anon_sym_do] = ACTIONS(543), - [anon_sym_TILDE] = ACTIONS(545), - [sym_preproc_directive] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [aux_sym_preproc_if_token1] = ACTIONS(543), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_else] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [sym_primitive_type] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [aux_sym_preproc_include_token1] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(545), + }, + [88] = { + [sym_enumerator] = STATE(183), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_COMMA] = ACTIONS(541), + }, + [89] = { + [sym_enumerator_list] = STATE(184), + [anon_sym_LBRACE] = ACTIONS(257), + [anon_sym_restrict] = ACTIONS(543), + [sym_identifier] = ACTIONS(543), [anon_sym_static] = ACTIONS(543), + [anon_sym_volatile] = ACTIONS(543), [anon_sym_register] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(543), + [anon_sym_extern] = ACTIONS(543), [anon_sym_STAR] = ACTIONS(545), - [anon_sym_if] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [sym_identifier] = ACTIONS(543), - [ts_builtin_sym_end] = ACTIONS(545), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), + [anon_sym_COMMA] = ACTIONS(545), + [anon_sym_const] = ACTIONS(543), + [anon_sym_LPAREN2] = ACTIONS(545), + [anon_sym_COLON] = ACTIONS(545), [anon_sym_SEMI] = ACTIONS(545), - [aux_sym_preproc_def_token1] = ACTIONS(543), + [anon_sym__Atomic] = ACTIONS(543), + [sym_comment] = ACTIONS(3), [anon_sym_auto] = ACTIONS(543), + [anon_sym_RPAREN] = ACTIONS(545), [anon_sym_inline] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), + [anon_sym___attribute__] = ACTIONS(543), + [anon_sym_LBRACK] = ACTIONS(545), + }, + [90] = { + [anon_sym_restrict] = ACTIONS(547), + [sym_identifier] = ACTIONS(547), + [anon_sym_static] = ACTIONS(547), + [anon_sym_volatile] = ACTIONS(547), + [anon_sym_register] = ACTIONS(547), + [anon_sym_extern] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_const] = ACTIONS(547), + [anon_sym_LPAREN2] = ACTIONS(549), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym__Atomic] = ACTIONS(547), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_inline] = ACTIONS(547), + [anon_sym___attribute__] = ACTIONS(547), + [anon_sym_LBRACK] = ACTIONS(549), + }, + [91] = { + [anon_sym_case] = ACTIONS(551), + [sym_false] = ACTIONS(551), + [anon_sym_restrict] = ACTIONS(551), + [sym_identifier] = ACTIONS(551), + [anon_sym_goto] = ACTIONS(551), + [anon_sym_const] = ACTIONS(551), + [anon_sym_typedef] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_default] = ACTIONS(551), + [anon_sym__Atomic] = ACTIONS(551), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(551), + [sym_number_literal] = ACTIONS(553), + [anon_sym_volatile] = ACTIONS(551), + [anon_sym_SQUOTE] = ACTIONS(553), + [anon_sym_extern] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_signed] = ACTIONS(551), + [anon_sym_long] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(551), + [anon_sym_L] = ACTIONS(551), + [anon_sym___attribute__] = ACTIONS(551), + [anon_sym_sizeof] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_union] = ACTIONS(551), + [anon_sym_unsigned] = ACTIONS(551), + [anon_sym_short] = ACTIONS(551), + [anon_sym_do] = ACTIONS(551), + [anon_sym_TILDE] = ACTIONS(553), + [sym_preproc_directive] = ACTIONS(551), + [anon_sym_AMP] = ACTIONS(553), + [aux_sym_preproc_if_token1] = ACTIONS(551), + [anon_sym_DQUOTE] = ACTIONS(553), + [anon_sym_LPAREN2] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(553), + [anon_sym_else] = ACTIONS(551), + [sym_primitive_type] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [aux_sym_preproc_include_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_static] = ACTIONS(551), + [anon_sym_register] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_if] = ACTIONS(551), + [anon_sym_switch] = ACTIONS(551), + [sym_true] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(551), + [sym_null] = ACTIONS(551), + [ts_builtin_sym_end] = ACTIONS(553), + [anon_sym_return] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(553), + [aux_sym_preproc_def_token1] = ACTIONS(551), + [anon_sym_auto] = ACTIONS(551), + [anon_sym_inline] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + }, + [92] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [93] = { - [sym_preproc_params] = STATE(186), - [sym_preproc_arg] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(549), - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(551), + [sym_while_statement] = STATE(186), + [sym_continue_statement] = STATE(186), + [sym_goto_statement] = STATE(186), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(186), + [sym_expression_statement] = STATE(186), + [sym_if_statement] = STATE(186), + [sym_do_statement] = STATE(186), + [sym_for_statement] = STATE(186), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(186), + [sym_return_statement] = STATE(186), + [sym_break_statement] = STATE(186), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(186), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(386), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [94] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(553), + [anon_sym_case] = ACTIONS(557), + [sym_false] = ACTIONS(557), + [anon_sym_restrict] = ACTIONS(557), + [sym_identifier] = ACTIONS(557), + [anon_sym_goto] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_typedef] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_default] = ACTIONS(557), + [anon_sym__Atomic] = ACTIONS(557), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(557), + [sym_number_literal] = ACTIONS(559), + [anon_sym_volatile] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(559), + [anon_sym_extern] = ACTIONS(557), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_signed] = ACTIONS(557), + [anon_sym_long] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(557), + [anon_sym_L] = ACTIONS(557), + [anon_sym___attribute__] = ACTIONS(557), + [anon_sym_sizeof] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(557), + [anon_sym_short] = ACTIONS(557), + [anon_sym_do] = ACTIONS(557), + [anon_sym_TILDE] = ACTIONS(559), + [sym_preproc_directive] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(559), + [aux_sym_preproc_if_token1] = ACTIONS(557), + [anon_sym_DQUOTE] = ACTIONS(559), + [anon_sym_LPAREN2] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_else] = ACTIONS(557), + [sym_primitive_type] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [aux_sym_preproc_include_token1] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_static] = ACTIONS(557), + [anon_sym_register] = ACTIONS(557), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(559), + [anon_sym_if] = ACTIONS(557), + [anon_sym_switch] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [ts_builtin_sym_end] = ACTIONS(559), + [anon_sym_return] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [aux_sym_preproc_def_token1] = ACTIONS(557), + [anon_sym_auto] = ACTIONS(557), + [anon_sym_inline] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), }, [95] = { - [sym_argument_list] = STATE(188), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(308), + [sym_preproc_params] = STATE(190), + [sym_preproc_arg] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(563), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(565), }, [96] = { - [anon_sym_restrict] = ACTIONS(555), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(555), - [anon_sym_volatile] = ACTIONS(555), - [anon_sym_register] = ACTIONS(555), - [anon_sym_extern] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [sym_identifier] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(557), - [anon_sym_COLON] = ACTIONS(557), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym__Atomic] = ACTIONS(555), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_auto] = ACTIONS(555), - [anon_sym_inline] = ACTIONS(555), - [anon_sym___attribute__] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(567), + [sym_comment] = ACTIONS(3), }, [97] = { - [anon_sym_restrict] = ACTIONS(559), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(559), - [anon_sym_volatile] = ACTIONS(559), - [anon_sym_register] = ACTIONS(559), - [anon_sym_extern] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [sym_identifier] = ACTIONS(559), - [anon_sym_const] = ACTIONS(559), - [anon_sym_LPAREN2] = ACTIONS(561), - [anon_sym_COLON] = ACTIONS(561), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym__Atomic] = ACTIONS(559), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_auto] = ACTIONS(559), - [anon_sym_inline] = ACTIONS(559), - [anon_sym___attribute__] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(561), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(569), + [aux_sym_char_literal_token1] = ACTIONS(571), }, [98] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(98), - [anon_sym_unsigned] = ACTIONS(563), - [anon_sym_restrict] = ACTIONS(566), - [anon_sym_short] = ACTIONS(563), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(566), - [anon_sym_LPAREN2] = ACTIONS(568), - [anon_sym_COLON] = ACTIONS(568), - [anon_sym__Atomic] = ACTIONS(566), - [sym_primitive_type] = ACTIONS(566), - [anon_sym_COMMA] = ACTIONS(568), - [anon_sym_static] = ACTIONS(566), - [anon_sym_volatile] = ACTIONS(566), - [anon_sym_register] = ACTIONS(566), - [anon_sym_extern] = ACTIONS(566), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_signed] = ACTIONS(563), - [anon_sym_long] = ACTIONS(563), - [sym_identifier] = ACTIONS(566), - [anon_sym_SEMI] = ACTIONS(568), - [anon_sym_RPAREN] = ACTIONS(568), - [anon_sym_auto] = ACTIONS(566), - [anon_sym_inline] = ACTIONS(566), - [anon_sym___attribute__] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(568), + [aux_sym_string_literal_repeat1] = STATE(193), + [anon_sym_DQUOTE] = ACTIONS(493), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(573), }, [99] = { - [anon_sym_case] = ACTIONS(570), - [sym_null] = ACTIONS(570), - [anon_sym_restrict] = ACTIONS(570), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(570), - [anon_sym_const] = ACTIONS(570), - [anon_sym_typedef] = ACTIONS(570), - [anon_sym_DASH_DASH] = ACTIONS(572), - [anon_sym_default] = ACTIONS(570), - [anon_sym__Atomic] = ACTIONS(570), - [aux_sym_preproc_ifdef_token1] = ACTIONS(570), - [sym_number_literal] = ACTIONS(572), - [anon_sym_volatile] = ACTIONS(570), - [anon_sym_extern] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(572), - [anon_sym_struct] = ACTIONS(570), - [anon_sym_signed] = ACTIONS(570), - [anon_sym_long] = ACTIONS(570), - [anon_sym_while] = ACTIONS(570), - [aux_sym_preproc_ifdef_token2] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym___attribute__] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_union] = ACTIONS(570), - [anon_sym_unsigned] = ACTIONS(570), - [anon_sym_short] = ACTIONS(570), - [anon_sym_do] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(572), - [sym_preproc_directive] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [aux_sym_preproc_if_token1] = ACTIONS(570), - [anon_sym_LPAREN2] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_else] = ACTIONS(570), - [sym_true] = ACTIONS(570), - [sym_primitive_type] = ACTIONS(570), - [anon_sym_for] = ACTIONS(570), - [anon_sym_break] = ACTIONS(570), - [aux_sym_preproc_include_token1] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_static] = ACTIONS(570), - [anon_sym_register] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_if] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(570), - [sym_false] = ACTIONS(570), - [anon_sym_enum] = ACTIONS(570), - [sym_identifier] = ACTIONS(570), - [ts_builtin_sym_end] = ACTIONS(572), - [anon_sym_return] = ACTIONS(570), - [anon_sym_continue] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(572), - [aux_sym_preproc_def_token1] = ACTIONS(570), - [anon_sym_auto] = ACTIONS(570), - [anon_sym_inline] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(570), + [sym_argument_list] = STATE(194), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(320), }, [100] = { - [aux_sym_concatenated_string_repeat1] = STATE(189), - [sym_string_literal] = STATE(189), - [anon_sym_PERCENT] = ACTIONS(574), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(574), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_DASH_DASH] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_PLUS_PLUS] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_RPAREN] = ACTIONS(576), - [anon_sym_RBRACK] = ACTIONS(576), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(574), - [anon_sym_LPAREN2] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_PLUS] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_DOT] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_restrict] = ACTIONS(575), + [sym_identifier] = ACTIONS(575), + [anon_sym_static] = ACTIONS(575), + [anon_sym_volatile] = ACTIONS(575), + [anon_sym_register] = ACTIONS(575), + [anon_sym_extern] = ACTIONS(575), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_COMMA] = ACTIONS(577), + [anon_sym_const] = ACTIONS(575), + [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(577), + [anon_sym__Atomic] = ACTIONS(575), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(575), + [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_inline] = ACTIONS(575), + [anon_sym___attribute__] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(577), }, [101] = { - [sym_continue_statement] = STATE(101), - [sym_preproc_function_def] = STATE(101), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(42), - [sym_declaration] = STATE(101), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(101), - [sym_for_statement] = STATE(101), - [sym_comma_expression] = STATE(37), - [sym_equality_expression] = STATE(42), - [sym_type_definition] = STATE(101), - [sym_sizeof_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(42), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(101), - [sym_return_statement] = STATE(101), - [sym_preproc_include] = STATE(101), - [sym_conditional_expression] = STATE(42), - [sym_preproc_ifdef] = STATE(101), - [sym_relational_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(101), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(101), - [sym_while_statement] = STATE(101), - [sym_preproc_def] = STATE(101), - [sym_goto_statement] = STATE(101), - [sym_logical_expression] = STATE(42), - [sym_function_definition] = STATE(101), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(101), - [sym_expression_statement] = STATE(101), - [sym_do_statement] = STATE(101), - [sym__expression] = STATE(42), - [sym_preproc_call] = STATE(101), - [sym_bitwise_expression] = STATE(42), - [sym__declaration_specifiers] = STATE(43), - [sym_compound_literal_expression] = STATE(42), - [sym_char_literal] = STATE(42), - [sym__empty_declaration] = STATE(101), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(101), - [sym_preproc_if] = STATE(101), - [sym_assignment_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_linkage_specification] = STATE(101), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_union] = ACTIONS(581), - [anon_sym_sizeof] = ACTIONS(584), - [anon_sym_unsigned] = ACTIONS(587), - [anon_sym_restrict] = ACTIONS(590), - [anon_sym_short] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(593), - [sym_null] = ACTIONS(596), - [sym_identifier] = ACTIONS(599), - [anon_sym_do] = ACTIONS(602), - [anon_sym_goto] = ACTIONS(605), - [ts_builtin_sym_end] = ACTIONS(608), - [anon_sym_TILDE] = ACTIONS(610), - [sym_preproc_directive] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(616), - [aux_sym_preproc_if_token1] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(590), - [anon_sym_LPAREN2] = ACTIONS(622), - [anon_sym_typedef] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(628), - [anon_sym__Atomic] = ACTIONS(590), - [sym_primitive_type] = ACTIONS(631), - [sym_true] = ACTIONS(596), - [anon_sym_for] = ACTIONS(634), - [anon_sym_break] = ACTIONS(637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(640), - [aux_sym_preproc_include_token1] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(646), - [anon_sym_static] = ACTIONS(649), - [anon_sym_volatile] = ACTIONS(590), - [anon_sym_register] = ACTIONS(649), - [anon_sym_extern] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(616), - [anon_sym_if] = ACTIONS(655), - [anon_sym_struct] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(661), - [anon_sym_signed] = ACTIONS(587), - [anon_sym_enum] = ACTIONS(664), - [anon_sym_long] = ACTIONS(587), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_PLUS_PLUS] = ACTIONS(628), - [anon_sym_return] = ACTIONS(670), - [anon_sym_while] = ACTIONS(673), - [anon_sym_continue] = ACTIONS(676), - [aux_sym_preproc_ifdef_token2] = ACTIONS(640), - [anon_sym_SEMI] = ACTIONS(679), - [sym_number_literal] = ACTIONS(682), - [aux_sym_preproc_def_token1] = ACTIONS(685), - [sym_false] = ACTIONS(596), - [anon_sym_auto] = ACTIONS(649), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_inline] = ACTIONS(649), - [anon_sym___attribute__] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(667), + [anon_sym_restrict] = ACTIONS(579), + [sym_identifier] = ACTIONS(579), + [anon_sym_static] = ACTIONS(579), + [anon_sym_volatile] = ACTIONS(579), + [anon_sym_register] = ACTIONS(579), + [anon_sym_extern] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_const] = ACTIONS(579), + [anon_sym_LPAREN2] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym__Atomic] = ACTIONS(579), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_inline] = ACTIONS(579), + [anon_sym___attribute__] = ACTIONS(579), + [anon_sym_LBRACK] = ACTIONS(581), }, [102] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(190), - [sym_attribute_specifier] = STATE(190), - [sym_type_qualifier] = STATE(190), - [sym_storage_class_specifier] = STATE(190), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(694), + [aux_sym_sized_type_specifier_repeat1] = STATE(102), + [anon_sym_unsigned] = ACTIONS(583), + [anon_sym_restrict] = ACTIONS(586), + [anon_sym_short] = ACTIONS(583), + [sym_identifier] = ACTIONS(586), + [anon_sym_const] = ACTIONS(586), + [anon_sym_LPAREN2] = ACTIONS(588), + [anon_sym_COLON] = ACTIONS(588), + [anon_sym__Atomic] = ACTIONS(586), + [sym_primitive_type] = ACTIONS(586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(588), + [anon_sym_static] = ACTIONS(586), + [anon_sym_volatile] = ACTIONS(586), + [anon_sym_register] = ACTIONS(586), + [anon_sym_extern] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_signed] = ACTIONS(583), + [anon_sym_long] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(588), + [anon_sym_RPAREN] = ACTIONS(588), + [anon_sym_auto] = ACTIONS(586), + [anon_sym_inline] = ACTIONS(586), + [anon_sym___attribute__] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(588), }, [103] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(103), - [sym_attribute_specifier] = STATE(103), - [sym_type_qualifier] = STATE(103), - [sym_storage_class_specifier] = STATE(103), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsigned] = ACTIONS(698), - [anon_sym_restrict] = ACTIONS(700), - [anon_sym_short] = ACTIONS(698), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(700), - [anon_sym_LPAREN2] = ACTIONS(703), - [anon_sym_COLON] = ACTIONS(703), - [anon_sym__Atomic] = ACTIONS(700), - [sym_primitive_type] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(703), - [anon_sym_static] = ACTIONS(705), - [anon_sym_volatile] = ACTIONS(700), - [anon_sym_register] = ACTIONS(705), - [anon_sym_extern] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_signed] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_long] = ACTIONS(698), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(703), - [anon_sym_auto] = ACTIONS(705), - [anon_sym_inline] = ACTIONS(705), - [anon_sym___attribute__] = ACTIONS(708), - [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_case] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [anon_sym_restrict] = ACTIONS(590), + [sym_identifier] = ACTIONS(590), + [anon_sym_goto] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_typedef] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_default] = ACTIONS(590), + [anon_sym__Atomic] = ACTIONS(590), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(590), + [sym_number_literal] = ACTIONS(592), + [anon_sym_volatile] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(590), + [anon_sym_signed] = ACTIONS(590), + [anon_sym_long] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(590), + [anon_sym_L] = ACTIONS(590), + [anon_sym___attribute__] = ACTIONS(590), + [anon_sym_sizeof] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_union] = ACTIONS(590), + [anon_sym_unsigned] = ACTIONS(590), + [anon_sym_short] = ACTIONS(590), + [anon_sym_do] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(592), + [sym_preproc_directive] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(592), + [aux_sym_preproc_if_token1] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_LPAREN2] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_else] = ACTIONS(590), + [sym_primitive_type] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [aux_sym_preproc_include_token1] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_static] = ACTIONS(590), + [anon_sym_register] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_if] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(590), + [sym_true] = ACTIONS(590), + [anon_sym_enum] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [ts_builtin_sym_end] = ACTIONS(592), + [anon_sym_return] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(592), + [aux_sym_preproc_def_token1] = ACTIONS(590), + [anon_sym_auto] = ACTIONS(590), + [anon_sym_inline] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), }, [104] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(191), - [sym_math_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(191), - [sym_bitwise_expression] = STATE(191), - [sym_equality_expression] = STATE(191), - [sym_sizeof_expression] = STATE(191), - [sym_compound_literal_expression] = STATE(191), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(191), - [sym_concatenated_string] = STATE(191), - [sym_conditional_expression] = STATE(191), - [sym_assignment_expression] = STATE(191), - [sym_relational_expression] = STATE(191), - [sym_shift_expression] = STATE(191), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(713), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(711), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(711), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [aux_sym_concatenated_string_repeat1] = STATE(195), + [sym_string_literal] = STATE(195), + [anon_sym_PERCENT] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_DASH_GT] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_DASH_DASH] = ACTIONS(596), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_PLUS_PLUS] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_L] = ACTIONS(298), + [anon_sym_RBRACK] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_EQ_EQ] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(596), }, [105] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(192), - [sym_math_expression] = STATE(192), - [sym_cast_expression] = STATE(192), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(192), - [sym_bitwise_expression] = STATE(192), - [sym_equality_expression] = STATE(192), - [sym_sizeof_expression] = STATE(192), - [sym_compound_literal_expression] = STATE(192), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(192), - [sym_concatenated_string] = STATE(192), - [sym_conditional_expression] = STATE(192), - [sym_assignment_expression] = STATE(192), - [sym_relational_expression] = STATE(192), - [sym_shift_expression] = STATE(192), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(715), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(715), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_continue_statement] = STATE(105), + [sym_preproc_function_def] = STATE(105), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(43), + [sym_declaration] = STATE(105), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(105), + [sym_for_statement] = STATE(105), + [sym_comma_expression] = STATE(38), + [sym_equality_expression] = STATE(43), + [sym_type_definition] = STATE(105), + [sym_sizeof_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(43), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(105), + [sym_return_statement] = STATE(105), + [sym_preproc_include] = STATE(105), + [sym_conditional_expression] = STATE(43), + [sym_preproc_ifdef] = STATE(105), + [sym_relational_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(105), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(105), + [sym_while_statement] = STATE(105), + [sym_preproc_def] = STATE(105), + [sym_goto_statement] = STATE(105), + [sym_logical_expression] = STATE(43), + [sym_function_definition] = STATE(105), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(105), + [sym_expression_statement] = STATE(105), + [sym_do_statement] = STATE(105), + [sym__expression] = STATE(43), + [sym_preproc_call] = STATE(105), + [sym_bitwise_expression] = STATE(43), + [sym__declaration_specifiers] = STATE(44), + [sym_compound_literal_expression] = STATE(43), + [sym_char_literal] = STATE(43), + [sym__empty_declaration] = STATE(105), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(105), + [sym_preproc_if] = STATE(105), + [sym_assignment_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_linkage_specification] = STATE(105), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_union] = ACTIONS(601), + [anon_sym_sizeof] = ACTIONS(604), + [anon_sym_unsigned] = ACTIONS(607), + [anon_sym_restrict] = ACTIONS(610), + [anon_sym_short] = ACTIONS(607), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_null] = ACTIONS(613), + [anon_sym_do] = ACTIONS(616), + [anon_sym_goto] = ACTIONS(619), + [sym_identifier] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(625), + [sym_preproc_directive] = ACTIONS(628), + [anon_sym_AMP] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(634), + [ts_builtin_sym_end] = ACTIONS(637), + [anon_sym_const] = ACTIONS(610), + [anon_sym_LPAREN2] = ACTIONS(639), + [anon_sym_typedef] = ACTIONS(642), + [anon_sym_DASH_DASH] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym__Atomic] = ACTIONS(610), + [sym_primitive_type] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(654), + [anon_sym_break] = ACTIONS(657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(660), + [aux_sym_preproc_include_token1] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_static] = ACTIONS(669), + [anon_sym_volatile] = ACTIONS(610), + [anon_sym_register] = ACTIONS(669), + [anon_sym_extern] = ACTIONS(672), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_if] = ACTIONS(675), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_switch] = ACTIONS(681), + [anon_sym_signed] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(684), + [anon_sym_long] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(645), + [anon_sym_return] = ACTIONS(690), + [anon_sym_while] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(660), + [anon_sym_SEMI] = ACTIONS(699), + [sym_number_literal] = ACTIONS(702), + [aux_sym_preproc_def_token1] = ACTIONS(705), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_auto] = ACTIONS(669), + [anon_sym_L] = ACTIONS(711), + [anon_sym_inline] = ACTIONS(669), + [anon_sym___attribute__] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(687), }, [106] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(193), - [sym_math_expression] = STATE(193), - [sym_cast_expression] = STATE(193), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(193), - [sym_bitwise_expression] = STATE(193), - [sym_equality_expression] = STATE(193), - [sym_sizeof_expression] = STATE(193), - [sym_compound_literal_expression] = STATE(193), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(193), - [sym_concatenated_string] = STATE(193), - [sym_conditional_expression] = STATE(193), - [sym_assignment_expression] = STATE(193), - [sym_relational_expression] = STATE(193), - [sym_shift_expression] = STATE(193), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(719), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(721), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(719), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(719), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(196), + [sym_attribute_specifier] = STATE(196), + [sym_type_qualifier] = STATE(196), + [sym_storage_class_specifier] = STATE(196), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(717), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_COMMA] = ACTIONS(719), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(719), + [anon_sym_COLON] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(719), + [anon_sym__Atomic] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(719), }, [107] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(194), - [sym_math_expression] = STATE(194), - [sym_cast_expression] = STATE(194), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(194), - [sym_bitwise_expression] = STATE(194), - [sym_equality_expression] = STATE(194), - [sym_sizeof_expression] = STATE(194), - [sym_compound_literal_expression] = STATE(194), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(194), - [sym_concatenated_string] = STATE(194), - [sym_conditional_expression] = STATE(194), - [sym_assignment_expression] = STATE(194), - [sym_relational_expression] = STATE(194), - [sym_shift_expression] = STATE(194), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(723), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(725), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(723), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(723), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(107), + [sym_attribute_specifier] = STATE(107), + [sym_type_qualifier] = STATE(107), + [sym_storage_class_specifier] = STATE(107), + [anon_sym_union] = ACTIONS(721), + [anon_sym_unsigned] = ACTIONS(721), + [anon_sym_restrict] = ACTIONS(723), + [anon_sym_short] = ACTIONS(721), + [sym_identifier] = ACTIONS(721), + [anon_sym_const] = ACTIONS(723), + [anon_sym_LPAREN2] = ACTIONS(726), + [anon_sym_COLON] = ACTIONS(726), + [anon_sym__Atomic] = ACTIONS(723), + [sym_primitive_type] = ACTIONS(721), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(726), + [anon_sym_static] = ACTIONS(728), + [anon_sym_volatile] = ACTIONS(723), + [anon_sym_register] = ACTIONS(728), + [anon_sym_extern] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_struct] = ACTIONS(721), + [anon_sym_signed] = ACTIONS(721), + [anon_sym_enum] = ACTIONS(721), + [anon_sym_long] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_auto] = ACTIONS(728), + [anon_sym_inline] = ACTIONS(728), + [anon_sym___attribute__] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(726), }, [108] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(195), - [sym_math_expression] = STATE(195), - [sym_cast_expression] = STATE(195), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(195), - [sym_bitwise_expression] = STATE(195), - [sym_equality_expression] = STATE(195), - [sym_sizeof_expression] = STATE(195), - [sym_compound_literal_expression] = STATE(195), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(195), - [sym_concatenated_string] = STATE(195), - [sym_conditional_expression] = STATE(195), - [sym_assignment_expression] = STATE(195), - [sym_relational_expression] = STATE(195), - [sym_shift_expression] = STATE(195), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(729), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(727), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(197), + [sym_math_expression] = STATE(197), + [sym_cast_expression] = STATE(197), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(197), + [sym_bitwise_expression] = STATE(197), + [sym_equality_expression] = STATE(197), + [sym_sizeof_expression] = STATE(197), + [sym_compound_literal_expression] = STATE(197), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(197), + [sym_concatenated_string] = STATE(197), + [sym_conditional_expression] = STATE(197), + [sym_assignment_expression] = STATE(197), + [sym_relational_expression] = STATE(197), + [sym_shift_expression] = STATE(197), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(734), [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(727), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [109] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(196), - [sym_math_expression] = STATE(196), - [sym_cast_expression] = STATE(196), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(196), - [sym_comma_expression] = STATE(197), - [sym_bitwise_expression] = STATE(196), - [sym_equality_expression] = STATE(196), - [sym_sizeof_expression] = STATE(196), - [sym_compound_literal_expression] = STATE(196), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(196), - [sym_concatenated_string] = STATE(196), - [sym_conditional_expression] = STATE(196), - [sym_assignment_expression] = STATE(196), - [sym_relational_expression] = STATE(196), - [sym_shift_expression] = STATE(196), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(733), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(731), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(731), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(734), + [sym_null] = ACTIONS(734), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [110] = { - [sym_pointer_expression] = STATE(35), + [109] = { + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(198), [sym_math_expression] = STATE(198), [sym_cast_expression] = STATE(198), - [sym_field_expression] = STATE(35), + [sym_field_expression] = STATE(36), [sym__expression] = STATE(198), [sym_bitwise_expression] = STATE(198), [sym_equality_expression] = STATE(198), [sym_sizeof_expression] = STATE(198), [sym_compound_literal_expression] = STATE(198), - [sym_parenthesized_expression] = STATE(35), + [sym_parenthesized_expression] = STATE(36), [sym_char_literal] = STATE(198), [sym_concatenated_string] = STATE(198), [sym_conditional_expression] = STATE(198), [sym_assignment_expression] = STATE(198), [sym_relational_expression] = STATE(198), [sym_shift_expression] = STATE(198), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(735), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(737), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(738), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(735), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(735), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [111] = { - [anon_sym_PERCENT] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(477), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(475), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_DASH_GT] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DASH_DASH] = ACTIONS(477), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_LT_LT_EQ] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_CARET_EQ] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_GT_GT_EQ] = ACTIONS(477), - [anon_sym_LT_LT] = ACTIONS(475), - [anon_sym_PIPE_EQ] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_RBRACK] = ACTIONS(477), - [anon_sym_AMP_EQ] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(475), - [anon_sym_LPAREN2] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(477), - [anon_sym_STAR_EQ] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_STAR] = ACTIONS(475), - [anon_sym_SLASH_EQ] = ACTIONS(477), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(740), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(738), + [sym_null] = ACTIONS(738), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [112] = { - [sym_pointer_expression] = STATE(35), + [110] = { + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(199), [sym_math_expression] = STATE(199), [sym_cast_expression] = STATE(199), - [sym_field_expression] = STATE(35), + [sym_field_expression] = STATE(36), [sym__expression] = STATE(199), [sym_bitwise_expression] = STATE(199), [sym_equality_expression] = STATE(199), [sym_sizeof_expression] = STATE(199), [sym_compound_literal_expression] = STATE(199), - [sym_parenthesized_expression] = STATE(35), + [sym_parenthesized_expression] = STATE(36), [sym_char_literal] = STATE(199), [sym_concatenated_string] = STATE(199), [sym_conditional_expression] = STATE(199), [sym_assignment_expression] = STATE(199), [sym_relational_expression] = STATE(199), [sym_shift_expression] = STATE(199), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(739), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(741), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(742), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(739), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(739), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(742), + [sym_null] = ACTIONS(742), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [113] = { - [sym_pointer_expression] = STATE(35), + [111] = { + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(200), [sym_math_expression] = STATE(200), [sym_cast_expression] = STATE(200), - [sym_field_expression] = STATE(35), + [sym_field_expression] = STATE(36), [sym__expression] = STATE(200), [sym_bitwise_expression] = STATE(200), [sym_equality_expression] = STATE(200), [sym_sizeof_expression] = STATE(200), [sym_compound_literal_expression] = STATE(200), - [sym_parenthesized_expression] = STATE(35), + [sym_parenthesized_expression] = STATE(36), [sym_char_literal] = STATE(200), [sym_concatenated_string] = STATE(200), [sym_conditional_expression] = STATE(200), [sym_assignment_expression] = STATE(200), [sym_relational_expression] = STATE(200), [sym_shift_expression] = STATE(200), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(743), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(745), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(746), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(743), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(743), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(746), + [sym_null] = ACTIONS(746), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [114] = { - [sym_pointer_expression] = STATE(35), + [112] = { + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(201), [sym_math_expression] = STATE(201), [sym_cast_expression] = STATE(201), - [sym_field_expression] = STATE(35), + [sym_field_expression] = STATE(36), [sym__expression] = STATE(201), [sym_bitwise_expression] = STATE(201), [sym_equality_expression] = STATE(201), [sym_sizeof_expression] = STATE(201), [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(35), + [sym_parenthesized_expression] = STATE(36), [sym_char_literal] = STATE(201), [sym_concatenated_string] = STATE(201), [sym_conditional_expression] = STATE(201), [sym_assignment_expression] = STATE(201), [sym_relational_expression] = STATE(201), [sym_shift_expression] = STATE(201), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(747), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(749), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(750), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(747), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(747), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [115] = { - [sym_identifier] = ACTIONS(751), - [sym_comment] = ACTIONS(3), + [113] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(202), + [sym_math_expression] = STATE(202), + [sym_cast_expression] = STATE(202), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(202), + [sym_comma_expression] = STATE(203), + [sym_bitwise_expression] = STATE(202), + [sym_equality_expression] = STATE(202), + [sym_sizeof_expression] = STATE(202), + [sym_compound_literal_expression] = STATE(202), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(202), + [sym_concatenated_string] = STATE(202), + [sym_conditional_expression] = STATE(202), + [sym_assignment_expression] = STATE(202), + [sym_relational_expression] = STATE(202), + [sym_shift_expression] = STATE(202), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(754), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(756), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(754), + [sym_null] = ACTIONS(754), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [116] = { - [sym_pointer_expression] = STATE(35), + [114] = { + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(204), [sym_math_expression] = STATE(204), [sym_cast_expression] = STATE(204), - [sym_field_expression] = STATE(35), + [sym_field_expression] = STATE(36), [sym__expression] = STATE(204), [sym_bitwise_expression] = STATE(204), [sym_equality_expression] = STATE(204), [sym_sizeof_expression] = STATE(204), [sym_compound_literal_expression] = STATE(204), - [sym_parenthesized_expression] = STATE(35), + [sym_parenthesized_expression] = STATE(36), [sym_char_literal] = STATE(204), [sym_concatenated_string] = STATE(204), [sym_conditional_expression] = STATE(204), [sym_assignment_expression] = STATE(204), [sym_relational_expression] = STATE(204), [sym_shift_expression] = STATE(204), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(753), - [sym_comment] = ACTIONS(3), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(758), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(760), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(753), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(758), + [sym_null] = ACTIONS(758), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [117] = { - [sym_pointer_expression] = STATE(35), + [115] = { + [anon_sym_PERCENT] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(487), + [anon_sym_DASH_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(485), + [anon_sym_DASH_GT] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(485), + [anon_sym_DASH_DASH] = ACTIONS(487), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(487), + [anon_sym_LT_LT_EQ] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_CARET_EQ] = ACTIONS(487), + [anon_sym_COMMA] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_GT_GT_EQ] = ACTIONS(487), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(487), + [anon_sym_RBRACK] = ACTIONS(487), + [anon_sym_AMP_EQ] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ] = ACTIONS(485), + [anon_sym_LPAREN2] = ACTIONS(487), + [anon_sym_GT_GT] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_COLON] = ACTIONS(487), + [anon_sym_STAR_EQ] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(485), + [anon_sym_LBRACK] = ACTIONS(487), + }, + [116] = { + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(205), [sym_math_expression] = STATE(205), [sym_cast_expression] = STATE(205), - [sym_field_expression] = STATE(35), + [sym_field_expression] = STATE(36), [sym__expression] = STATE(205), [sym_bitwise_expression] = STATE(205), [sym_equality_expression] = STATE(205), [sym_sizeof_expression] = STATE(205), [sym_compound_literal_expression] = STATE(205), - [sym_parenthesized_expression] = STATE(35), + [sym_parenthesized_expression] = STATE(36), [sym_char_literal] = STATE(205), [sym_concatenated_string] = STATE(205), [sym_conditional_expression] = STATE(205), [sym_assignment_expression] = STATE(205), [sym_relational_expression] = STATE(205), [sym_shift_expression] = STATE(205), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(761), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(762), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(759), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(759), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(764), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(762), + [sym_null] = ACTIONS(762), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [118] = { - [sym_pointer_expression] = STATE(35), + [117] = { + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(206), [sym_math_expression] = STATE(206), [sym_cast_expression] = STATE(206), - [sym_field_expression] = STATE(35), + [sym_field_expression] = STATE(36), [sym__expression] = STATE(206), [sym_bitwise_expression] = STATE(206), [sym_equality_expression] = STATE(206), [sym_sizeof_expression] = STATE(206), [sym_compound_literal_expression] = STATE(206), - [sym_parenthesized_expression] = STATE(35), + [sym_parenthesized_expression] = STATE(36), [sym_char_literal] = STATE(206), [sym_concatenated_string] = STATE(206), [sym_conditional_expression] = STATE(206), [sym_assignment_expression] = STATE(206), [sym_relational_expression] = STATE(206), [sym_shift_expression] = STATE(206), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(765), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(766), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(763), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(768), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(766), + [sym_null] = ACTIONS(766), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [119] = { - [sym_pointer_expression] = STATE(35), + [118] = { + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(207), [sym_math_expression] = STATE(207), [sym_cast_expression] = STATE(207), - [sym_field_expression] = STATE(35), + [sym_field_expression] = STATE(36), [sym__expression] = STATE(207), [sym_bitwise_expression] = STATE(207), [sym_equality_expression] = STATE(207), [sym_sizeof_expression] = STATE(207), [sym_compound_literal_expression] = STATE(207), - [sym_parenthesized_expression] = STATE(35), + [sym_parenthesized_expression] = STATE(36), [sym_char_literal] = STATE(207), [sym_concatenated_string] = STATE(207), [sym_conditional_expression] = STATE(207), [sym_assignment_expression] = STATE(207), [sym_relational_expression] = STATE(207), [sym_shift_expression] = STATE(207), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(767), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(769), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(770), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(767), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(767), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(772), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(770), + [sym_null] = ACTIONS(770), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [119] = { + [sym_identifier] = ACTIONS(774), + [sym_comment] = ACTIONS(3), }, [120] = { - [anon_sym_PERCENT] = ACTIONS(771), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(773), - [anon_sym_DASH_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_CARET] = ACTIONS(771), - [anon_sym_DASH_GT] = ACTIONS(773), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_DASH_DASH] = ACTIONS(773), - [anon_sym_PLUS_EQ] = ACTIONS(773), - [anon_sym_LT_LT_EQ] = ACTIONS(773), - [anon_sym_QMARK] = ACTIONS(773), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_CARET_EQ] = ACTIONS(773), - [anon_sym_COMMA] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_GT_GT_EQ] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_PIPE_EQ] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(773), - [anon_sym_AMP_EQ] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_COLON] = ACTIONS(773), - [anon_sym_STAR_EQ] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(773), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(773), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(210), + [sym_math_expression] = STATE(210), + [sym_cast_expression] = STATE(210), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(210), + [sym_bitwise_expression] = STATE(210), + [sym_equality_expression] = STATE(210), + [sym_sizeof_expression] = STATE(210), + [sym_compound_literal_expression] = STATE(210), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(210), + [sym_concatenated_string] = STATE(210), + [sym_conditional_expression] = STATE(210), + [sym_assignment_expression] = STATE(210), + [sym_relational_expression] = STATE(210), + [sym_shift_expression] = STATE(210), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(776), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(778), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(776), + [sym_null] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(780), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [121] = { - [sym_function_declarator] = STATE(208), - [sym_type_qualifier] = STATE(209), - [sym_pointer_declarator] = STATE(208), - [aux_sym_type_definition_repeat1] = STATE(209), - [sym__declarator] = STATE(208), - [sym_array_declarator] = STATE(208), - [sym_identifier] = ACTIONS(775), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(334), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(332), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(211), + [sym_math_expression] = STATE(211), + [sym_cast_expression] = STATE(211), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(211), + [sym_bitwise_expression] = STATE(211), + [sym_equality_expression] = STATE(211), + [sym_sizeof_expression] = STATE(211), + [sym_compound_literal_expression] = STATE(211), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(211), + [sym_concatenated_string] = STATE(211), + [sym_conditional_expression] = STATE(211), + [sym_assignment_expression] = STATE(211), + [sym_relational_expression] = STATE(211), + [sym_shift_expression] = STATE(211), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(782), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(784), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(782), + [sym_null] = ACTIONS(782), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [122] = { - [sym_function_declarator] = STATE(210), - [sym__declarator] = STATE(210), - [sym_pointer_declarator] = STATE(210), - [sym_array_declarator] = STATE(210), - [sym_identifier] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), - [sym_comment] = ACTIONS(3), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(212), + [sym_math_expression] = STATE(212), + [sym_cast_expression] = STATE(212), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(212), + [sym_bitwise_expression] = STATE(212), + [sym_equality_expression] = STATE(212), + [sym_sizeof_expression] = STATE(212), + [sym_compound_literal_expression] = STATE(212), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(212), + [sym_concatenated_string] = STATE(212), + [sym_conditional_expression] = STATE(212), + [sym_assignment_expression] = STATE(212), + [sym_relational_expression] = STATE(212), + [sym_shift_expression] = STATE(212), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(786), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(788), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(786), + [sym_null] = ACTIONS(786), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [123] = { - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_union] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(781), - [anon_sym_unsigned] = ACTIONS(781), - [anon_sym_restrict] = ACTIONS(781), - [anon_sym_short] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(779), - [sym_null] = ACTIONS(781), - [sym_identifier] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [anon_sym_goto] = ACTIONS(781), - [ts_builtin_sym_end] = ACTIONS(779), - [anon_sym_TILDE] = ACTIONS(779), - [sym_preproc_directive] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(779), - [aux_sym_preproc_if_token1] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(781), - [anon_sym_LPAREN2] = ACTIONS(779), - [anon_sym_typedef] = ACTIONS(781), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym__Atomic] = ACTIONS(781), - [sym_primitive_type] = ACTIONS(781), - [sym_true] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(781), - [aux_sym_preproc_include_token1] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_static] = ACTIONS(781), - [anon_sym_volatile] = ACTIONS(781), - [anon_sym_register] = ACTIONS(781), - [anon_sym_extern] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_if] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(781), - [anon_sym_switch] = ACTIONS(781), - [anon_sym_signed] = ACTIONS(781), - [anon_sym_enum] = ACTIONS(781), - [anon_sym_long] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_return] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(779), - [sym_number_literal] = ACTIONS(779), - [aux_sym_preproc_def_token1] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [anon_sym_auto] = ACTIONS(781), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_inline] = ACTIONS(781), - [anon_sym___attribute__] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(213), + [sym_math_expression] = STATE(213), + [sym_cast_expression] = STATE(213), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(213), + [sym_bitwise_expression] = STATE(213), + [sym_equality_expression] = STATE(213), + [sym_sizeof_expression] = STATE(213), + [sym_compound_literal_expression] = STATE(213), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(213), + [sym_concatenated_string] = STATE(213), + [sym_conditional_expression] = STATE(213), + [sym_assignment_expression] = STATE(213), + [sym_relational_expression] = STATE(213), + [sym_shift_expression] = STATE(213), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(790), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(790), + [sym_null] = ACTIONS(790), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [124] = { - [sym_compound_statement] = STATE(216), - [aux_sym_declaration_repeat1] = STATE(217), - [sym_parameter_list] = STATE(218), - [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(789), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PERCENT] = ACTIONS(794), + [anon_sym_PERCENT_EQ] = ACTIONS(796), + [anon_sym_DASH_EQ] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_LT_EQ] = ACTIONS(796), + [anon_sym_CARET] = ACTIONS(794), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_SLASH] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(796), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(796), + [anon_sym_LT_LT_EQ] = ACTIONS(796), + [anon_sym_QMARK] = ACTIONS(796), + [anon_sym_GT_EQ] = ACTIONS(796), + [anon_sym_CARET_EQ] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_PLUS_PLUS] = ACTIONS(796), + [anon_sym_GT_GT_EQ] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(794), + [anon_sym_PIPE_EQ] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_RBRACK] = ACTIONS(796), + [anon_sym_AMP_EQ] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_EQ] = ACTIONS(794), + [anon_sym_LPAREN2] = ACTIONS(796), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_COLON] = ACTIONS(796), + [anon_sym_STAR_EQ] = ACTIONS(796), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_SLASH_EQ] = ACTIONS(796), + [anon_sym_BANG_EQ] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_DOT] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(796), }, [125] = { - [aux_sym_declaration_repeat1] = STATE(217), - [anon_sym_COMMA] = ACTIONS(789), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(791), - }, - [126] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(103), - [sym_attribute_specifier] = STATE(103), - [sym_type_qualifier] = STATE(103), - [sym_storage_class_specifier] = STATE(103), + [sym_function_declarator] = STATE(214), + [sym_type_qualifier] = STATE(215), + [sym_pointer_declarator] = STATE(214), + [aux_sym_type_definition_repeat1] = STATE(215), + [sym__declarator] = STATE(214), + [sym_array_declarator] = STATE(214), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(344), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(17), + [sym_identifier] = ACTIONS(798), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(694), - [anon_sym_COLON] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(342), + [sym_comment] = ACTIONS(3), + }, + [126] = { + [sym_function_declarator] = STATE(216), + [sym__declarator] = STATE(216), + [sym_pointer_declarator] = STATE(216), + [sym_array_declarator] = STATE(216), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(800), }, [127] = { - [anon_sym_case] = ACTIONS(793), - [sym_null] = ACTIONS(793), - [anon_sym_restrict] = ACTIONS(793), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_typedef] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_default] = ACTIONS(793), - [anon_sym__Atomic] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [sym_number_literal] = ACTIONS(795), - [anon_sym_volatile] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_struct] = ACTIONS(793), - [anon_sym_signed] = ACTIONS(793), - [anon_sym_long] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(795), - [anon_sym___attribute__] = ACTIONS(793), - [anon_sym_sizeof] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_union] = ACTIONS(793), - [anon_sym_unsigned] = ACTIONS(793), - [anon_sym_short] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_AMP] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_else] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_primitive_type] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_static] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_if] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [anon_sym_enum] = ACTIONS(793), - [sym_identifier] = ACTIONS(793), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_return] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [anon_sym_auto] = ACTIONS(793), - [anon_sym_inline] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_union] = ACTIONS(804), + [anon_sym_sizeof] = ACTIONS(804), + [anon_sym_unsigned] = ACTIONS(804), + [anon_sym_restrict] = ACTIONS(804), + [anon_sym_short] = ACTIONS(804), + [sym_true] = ACTIONS(804), + [sym_false] = ACTIONS(804), + [sym_null] = ACTIONS(804), + [anon_sym_do] = ACTIONS(804), + [anon_sym_goto] = ACTIONS(804), + [sym_identifier] = ACTIONS(804), + [anon_sym_TILDE] = ACTIONS(802), + [sym_preproc_directive] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(802), + [aux_sym_preproc_if_token1] = ACTIONS(804), + [ts_builtin_sym_end] = ACTIONS(802), + [anon_sym_const] = ACTIONS(804), + [anon_sym_LPAREN2] = ACTIONS(802), + [anon_sym_typedef] = ACTIONS(804), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym__Atomic] = ACTIONS(804), + [sym_primitive_type] = ACTIONS(804), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(804), + [anon_sym_break] = ACTIONS(804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(804), + [aux_sym_preproc_include_token1] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_static] = ACTIONS(804), + [anon_sym_volatile] = ACTIONS(804), + [anon_sym_register] = ACTIONS(804), + [anon_sym_extern] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(802), + [anon_sym_if] = ACTIONS(804), + [anon_sym_struct] = ACTIONS(804), + [anon_sym_switch] = ACTIONS(804), + [anon_sym_signed] = ACTIONS(804), + [anon_sym_enum] = ACTIONS(804), + [anon_sym_long] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(804), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_return] = ACTIONS(804), + [anon_sym_while] = ACTIONS(804), + [anon_sym_continue] = ACTIONS(804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(802), + [sym_number_literal] = ACTIONS(802), + [aux_sym_preproc_def_token1] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(802), + [anon_sym_auto] = ACTIONS(804), + [anon_sym_L] = ACTIONS(804), + [anon_sym_inline] = ACTIONS(804), + [anon_sym___attribute__] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(804), }, [128] = { - [sym_identifier] = ACTIONS(797), + [sym_compound_statement] = STATE(222), + [aux_sym_declaration_repeat1] = STATE(223), + [sym_parameter_list] = STATE(224), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(814), }, [129] = { + [aux_sym_declaration_repeat1] = STATE(223), [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(799), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(814), }, [130] = { - [anon_sym_restrict] = ACTIONS(801), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(801), - [anon_sym_volatile] = ACTIONS(801), - [anon_sym_register] = ACTIONS(801), - [anon_sym_extern] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_COMMA] = ACTIONS(803), - [sym_identifier] = ACTIONS(801), - [anon_sym_const] = ACTIONS(801), - [anon_sym_LPAREN2] = ACTIONS(803), - [anon_sym_COLON] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym__Atomic] = ACTIONS(801), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_auto] = ACTIONS(801), - [anon_sym_inline] = ACTIONS(801), - [anon_sym___attribute__] = ACTIONS(801), - [anon_sym_LBRACK] = ACTIONS(803), - }, - [131] = { - [sym_preproc_def] = STATE(222), - [sym_preproc_function_def] = STATE(222), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(222), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_preproc_call] = STATE(222), - [sym_preproc_if_in_field_declaration_list] = STATE(222), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(222), - [sym__declaration_specifiers] = STATE(132), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(222), - [sym_enum_specifier] = STATE(44), - [sym_field_declaration] = STATE(222), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(107), + [sym_attribute_specifier] = STATE(107), + [sym_type_qualifier] = STATE(107), + [sym_storage_class_specifier] = STATE(107), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [sym_preproc_directive] = ACTIONS(348), - [aux_sym_preproc_if_token1] = ACTIONS(350), + [sym_identifier] = ACTIONS(717), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(719), + [anon_sym_COMMA] = ACTIONS(719), [anon_sym_const] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(805), + [anon_sym_LPAREN2] = ACTIONS(719), + [anon_sym_COLON] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(719), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [aux_sym_preproc_ifdef_token1] = ACTIONS(354), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(354), - [aux_sym_preproc_def_token1] = ACTIONS(356), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(719), + }, + [131] = { + [anon_sym_case] = ACTIONS(816), + [sym_false] = ACTIONS(816), + [anon_sym_restrict] = ACTIONS(816), + [sym_identifier] = ACTIONS(816), + [anon_sym_goto] = ACTIONS(816), + [anon_sym_const] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(818), + [anon_sym_default] = ACTIONS(816), + [anon_sym__Atomic] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(816), + [sym_number_literal] = ACTIONS(818), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(816), + [anon_sym_PLUS_PLUS] = ACTIONS(818), + [anon_sym_struct] = ACTIONS(816), + [anon_sym_signed] = ACTIONS(816), + [anon_sym_long] = ACTIONS(816), + [anon_sym_while] = ACTIONS(816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(816), + [anon_sym_L] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(816), + [anon_sym_sizeof] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsigned] = ACTIONS(816), + [anon_sym_short] = ACTIONS(816), + [anon_sym_do] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_else] = ACTIONS(816), + [sym_primitive_type] = ACTIONS(816), + [anon_sym_for] = ACTIONS(816), + [anon_sym_break] = ACTIONS(816), + [aux_sym_preproc_include_token1] = ACTIONS(816), + [anon_sym_BANG] = ACTIONS(818), + [anon_sym_static] = ACTIONS(816), + [anon_sym_register] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_if] = ACTIONS(816), + [anon_sym_switch] = ACTIONS(816), + [sym_true] = ACTIONS(816), + [anon_sym_enum] = ACTIONS(816), + [sym_null] = ACTIONS(816), + [ts_builtin_sym_end] = ACTIONS(818), + [anon_sym_return] = ACTIONS(816), + [anon_sym_continue] = ACTIONS(816), + [anon_sym_SEMI] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(816), + [anon_sym_auto] = ACTIONS(816), + [anon_sym_inline] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), }, [132] = { - [sym_pointer_field_declarator] = STATE(229), - [sym_array_field_declarator] = STATE(229), - [sym_bitfield_clause] = STATE(228), - [sym_function_field_declarator] = STATE(229), - [sym__field_declarator] = STATE(229), - [sym_identifier] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LPAREN2] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(815), + [sym_identifier] = ACTIONS(820), + [sym_comment] = ACTIONS(3), }, [133] = { - [anon_sym_restrict] = ACTIONS(817), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(817), - [anon_sym_volatile] = ACTIONS(817), - [anon_sym_register] = ACTIONS(817), - [anon_sym_extern] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(819), - [sym_identifier] = ACTIONS(817), - [anon_sym_const] = ACTIONS(817), - [anon_sym_LPAREN2] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(819), - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym__Atomic] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_auto] = ACTIONS(817), - [anon_sym_inline] = ACTIONS(817), - [anon_sym___attribute__] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(819), + [sym_preproc_arg] = ACTIONS(822), + [sym_comment] = ACTIONS(3), }, [134] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_restrict] = ACTIONS(824), + [sym_identifier] = ACTIONS(824), + [anon_sym_static] = ACTIONS(824), + [anon_sym_volatile] = ACTIONS(824), + [anon_sym_register] = ACTIONS(824), + [anon_sym_extern] = ACTIONS(824), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_const] = ACTIONS(824), + [anon_sym_LPAREN2] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(824), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_inline] = ACTIONS(824), + [anon_sym___attribute__] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(826), }, [135] = { - [anon_sym_PERCENT] = ACTIONS(823), - [anon_sym_restrict] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(825), - [anon_sym_DASH_EQ] = ACTIONS(825), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym_DASH_GT] = ACTIONS(825), - [anon_sym_const] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(825), - [anon_sym__Atomic] = ACTIONS(823), - [anon_sym_PLUS_EQ] = ACTIONS(825), - [anon_sym_LT_LT_EQ] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_CARET_EQ] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(825), - [anon_sym_volatile] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_signed] = ACTIONS(823), - [anon_sym_long] = ACTIONS(823), - [anon_sym_GT_GT_EQ] = ACTIONS(825), - [anon_sym_LT_LT] = ACTIONS(823), - [anon_sym_PIPE_EQ] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_RBRACK] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(825), - [anon_sym___attribute__] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_union] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(823), - [anon_sym_short] = ACTIONS(823), - [anon_sym_AMP_EQ] = ACTIONS(825), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_AMP_AMP] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LPAREN2] = ACTIONS(825), - [anon_sym_GT_GT] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_COLON] = ACTIONS(825), - [sym_primitive_type] = ACTIONS(823), - [anon_sym_STAR_EQ] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(825), - [anon_sym_PIPE_PIPE] = ACTIONS(825), - [anon_sym_static] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_enum] = ACTIONS(823), - [sym_identifier] = ACTIONS(823), - [anon_sym_SLASH_EQ] = ACTIONS(825), - [anon_sym_BANG_EQ] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_PIPE] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_DOT] = ACTIONS(825), - [anon_sym_inline] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(825), + [sym_preproc_def] = STATE(228), + [sym_preproc_function_def] = STATE(228), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(228), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_preproc_call] = STATE(228), + [sym_preproc_if_in_field_declaration_list] = STATE(228), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(228), + [sym__declaration_specifiers] = STATE(136), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(228), + [sym_enum_specifier] = STATE(45), + [sym_field_declaration] = STATE(228), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_short] = ACTIONS(17), + [sym_preproc_directive] = ACTIONS(360), + [aux_sym_preproc_if_token1] = ACTIONS(362), + [anon_sym_const] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(366), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [aux_sym_preproc_ifdef_token2] = ACTIONS(366), + [aux_sym_preproc_def_token1] = ACTIONS(368), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), }, [136] = { - [aux_sym_string_literal_repeat1] = STATE(136), - [aux_sym_string_literal_token1] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(830), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(827), - }, - [137] = { - [sym_parenthesized_expression] = STATE(231), - [sym_comment] = ACTIONS(3), + [sym_pointer_field_declarator] = STATE(235), + [sym_array_field_declarator] = STATE(235), + [sym_bitfield_clause] = STATE(234), + [sym_function_field_declarator] = STATE(235), + [sym__field_declarator] = STATE(235), + [anon_sym_STAR] = ACTIONS(830), [anon_sym_LPAREN2] = ACTIONS(832), - }, - [138] = { - [anon_sym_case] = ACTIONS(834), - [sym_null] = ACTIONS(834), - [anon_sym_restrict] = ACTIONS(834), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(834), - [anon_sym_const] = ACTIONS(834), - [anon_sym_typedef] = ACTIONS(834), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_default] = ACTIONS(834), - [anon_sym__Atomic] = ACTIONS(834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(834), - [sym_number_literal] = ACTIONS(836), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_extern] = ACTIONS(834), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_struct] = ACTIONS(834), - [anon_sym_signed] = ACTIONS(834), - [anon_sym_long] = ACTIONS(834), - [anon_sym_while] = ACTIONS(834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(834), - [anon_sym_SQUOTE] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym___attribute__] = ACTIONS(834), - [anon_sym_sizeof] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsigned] = ACTIONS(834), - [anon_sym_short] = ACTIONS(834), - [anon_sym_do] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(836), - [sym_preproc_directive] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(834), - [anon_sym_LPAREN2] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_else] = ACTIONS(834), - [sym_true] = ACTIONS(834), - [sym_primitive_type] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_break] = ACTIONS(834), - [aux_sym_preproc_include_token1] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_static] = ACTIONS(834), - [anon_sym_register] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(834), - [sym_false] = ACTIONS(834), - [anon_sym_enum] = ACTIONS(834), + [sym_comment] = ACTIONS(3), [sym_identifier] = ACTIONS(834), - [ts_builtin_sym_end] = ACTIONS(836), - [anon_sym_return] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(836), - [aux_sym_preproc_def_token1] = ACTIONS(834), - [anon_sym_auto] = ACTIONS(834), - [anon_sym_inline] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(838), }, - [139] = { - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_union] = ACTIONS(840), - [anon_sym_sizeof] = ACTIONS(840), - [anon_sym_unsigned] = ACTIONS(840), + [137] = { [anon_sym_restrict] = ACTIONS(840), - [anon_sym_short] = ACTIONS(840), - [anon_sym_DQUOTE] = ACTIONS(838), - [sym_null] = ACTIONS(840), [sym_identifier] = ACTIONS(840), - [anon_sym_do] = ACTIONS(840), - [anon_sym_goto] = ACTIONS(840), - [ts_builtin_sym_end] = ACTIONS(838), - [anon_sym_TILDE] = ACTIONS(838), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(838), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(840), - [anon_sym_LPAREN2] = ACTIONS(838), - [anon_sym_typedef] = ACTIONS(840), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym__Atomic] = ACTIONS(840), - [sym_primitive_type] = ACTIONS(840), - [sym_true] = ACTIONS(840), - [anon_sym_for] = ACTIONS(840), - [anon_sym_break] = ACTIONS(840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [aux_sym_preproc_include_token1] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(838), [anon_sym_static] = ACTIONS(840), [anon_sym_volatile] = ACTIONS(840), [anon_sym_register] = ACTIONS(840), [anon_sym_extern] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(838), - [anon_sym_if] = ACTIONS(840), - [anon_sym_struct] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(840), - [anon_sym_signed] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(840), - [anon_sym_long] = ACTIONS(840), - [anon_sym_PLUS] = ACTIONS(840), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_while] = ACTIONS(840), - [anon_sym_continue] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [anon_sym_SEMI] = ACTIONS(838), - [sym_number_literal] = ACTIONS(838), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [sym_false] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(842), + [anon_sym_COMMA] = ACTIONS(842), + [anon_sym_const] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(842), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(842), + [anon_sym__Atomic] = ACTIONS(840), + [sym_comment] = ACTIONS(3), [anon_sym_auto] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(842), [anon_sym_inline] = ACTIONS(840), [anon_sym___attribute__] = ACTIONS(840), - [anon_sym_DASH] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(842), + }, + [138] = { + [anon_sym_RPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(3), + }, + [139] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [140] = { - [sym_continue_statement] = STATE(232), - [sym_preproc_function_def] = STATE(232), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(905), - [sym_declaration] = STATE(232), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_comma_expression] = STATE(904), - [sym_equality_expression] = STATE(905), - [sym_type_definition] = STATE(232), - [sym_sizeof_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(905), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_preproc_include] = STATE(232), - [sym_conditional_expression] = STATE(905), - [sym_preproc_ifdef] = STATE(232), - [sym_relational_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(232), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_preproc_def] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym_logical_expression] = STATE(905), - [sym_function_definition] = STATE(232), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym__expression] = STATE(905), - [sym_preproc_call] = STATE(232), - [sym_bitwise_expression] = STATE(905), - [sym__declaration_specifiers] = STATE(906), - [sym_compound_literal_expression] = STATE(905), - [sym_char_literal] = STATE(905), - [sym__empty_declaration] = STATE(232), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(232), - [sym_preproc_if] = STATE(232), - [sym_assignment_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_linkage_specification] = STATE(232), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(17), - [sym_null] = ACTIONS(844), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), + [anon_sym_RPAREN] = ACTIONS(848), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(850), - [sym_preproc_directive] = ACTIONS(852), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(854), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(856), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [aux_sym_preproc_ifdef_token1] = ACTIONS(862), - [aux_sym_preproc_include_token1] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(866), - [sym_number_literal] = ACTIONS(868), - [anon_sym_if] = ACTIONS(870), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(884), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_sizeof] = ACTIONS(81), }, [141] = { - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_union] = ACTIONS(888), - [anon_sym_sizeof] = ACTIONS(888), - [anon_sym_unsigned] = ACTIONS(888), - [anon_sym_restrict] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(886), - [sym_null] = ACTIONS(888), - [sym_identifier] = ACTIONS(888), - [anon_sym_do] = ACTIONS(888), - [anon_sym_goto] = ACTIONS(888), - [ts_builtin_sym_end] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(886), - [sym_preproc_directive] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(886), - [aux_sym_preproc_if_token1] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(888), - [anon_sym_LPAREN2] = ACTIONS(886), - [anon_sym_typedef] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym__Atomic] = ACTIONS(888), - [sym_primitive_type] = ACTIONS(888), - [sym_true] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(888), - [aux_sym_preproc_include_token1] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_static] = ACTIONS(888), - [anon_sym_volatile] = ACTIONS(888), - [anon_sym_register] = ACTIONS(888), - [anon_sym_extern] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_if] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(888), - [anon_sym_switch] = ACTIONS(888), - [anon_sym_signed] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_return] = ACTIONS(888), - [anon_sym_while] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [aux_sym_preproc_ifdef_token2] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(886), - [sym_number_literal] = ACTIONS(886), - [aux_sym_preproc_def_token1] = ACTIONS(888), - [sym_false] = ACTIONS(888), - [anon_sym_auto] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym___attribute__] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), + [anon_sym_case] = ACTIONS(850), + [sym_false] = ACTIONS(850), + [anon_sym_restrict] = ACTIONS(850), + [sym_identifier] = ACTIONS(850), + [anon_sym_goto] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_typedef] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(852), + [anon_sym_default] = ACTIONS(850), + [anon_sym__Atomic] = ACTIONS(850), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(850), + [sym_number_literal] = ACTIONS(852), + [anon_sym_volatile] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_PLUS_PLUS] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(850), + [anon_sym_signed] = ACTIONS(850), + [anon_sym_long] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [aux_sym_preproc_ifdef_token2] = ACTIONS(850), + [anon_sym_L] = ACTIONS(850), + [anon_sym___attribute__] = ACTIONS(850), + [anon_sym_sizeof] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_union] = ACTIONS(850), + [anon_sym_unsigned] = ACTIONS(850), + [anon_sym_short] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [sym_preproc_directive] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(852), + [aux_sym_preproc_if_token1] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(852), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_else] = ACTIONS(850), + [sym_primitive_type] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_static] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_if] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(850), + [sym_true] = ACTIONS(850), + [anon_sym_enum] = ACTIONS(850), + [sym_null] = ACTIONS(850), + [ts_builtin_sym_end] = ACTIONS(852), + [anon_sym_return] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(852), + [aux_sym_preproc_def_token1] = ACTIONS(850), + [anon_sym_auto] = ACTIONS(850), + [anon_sym_inline] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), }, [142] = { + [sym_parenthesized_expression] = STATE(238), [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(854), }, [143] = { - [aux_sym_preproc_if_token2] = ACTIONS(892), - [sym_comment] = ACTIONS(3), + [anon_sym_case] = ACTIONS(856), + [sym_false] = ACTIONS(856), + [anon_sym_restrict] = ACTIONS(856), + [sym_identifier] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(856), + [anon_sym_const] = ACTIONS(856), + [anon_sym_typedef] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_default] = ACTIONS(856), + [anon_sym__Atomic] = ACTIONS(856), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(856), + [sym_number_literal] = ACTIONS(858), + [anon_sym_volatile] = ACTIONS(856), + [anon_sym_SQUOTE] = ACTIONS(858), + [anon_sym_extern] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_struct] = ACTIONS(856), + [anon_sym_signed] = ACTIONS(856), + [anon_sym_long] = ACTIONS(856), + [anon_sym_while] = ACTIONS(856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(856), + [anon_sym_L] = ACTIONS(856), + [anon_sym___attribute__] = ACTIONS(856), + [anon_sym_sizeof] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_union] = ACTIONS(856), + [anon_sym_unsigned] = ACTIONS(856), + [anon_sym_short] = ACTIONS(856), + [anon_sym_do] = ACTIONS(856), + [anon_sym_TILDE] = ACTIONS(858), + [sym_preproc_directive] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [aux_sym_preproc_if_token1] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(858), + [anon_sym_LPAREN2] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_else] = ACTIONS(856), + [sym_primitive_type] = ACTIONS(856), + [anon_sym_for] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [aux_sym_preproc_include_token1] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_static] = ACTIONS(856), + [anon_sym_register] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(858), + [anon_sym_if] = ACTIONS(856), + [anon_sym_switch] = ACTIONS(856), + [sym_true] = ACTIONS(856), + [anon_sym_enum] = ACTIONS(856), + [sym_null] = ACTIONS(856), + [ts_builtin_sym_end] = ACTIONS(858), + [anon_sym_return] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(858), + [aux_sym_preproc_def_token1] = ACTIONS(856), + [anon_sym_auto] = ACTIONS(856), + [anon_sym_inline] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), }, [144] = { - [sym_continue_statement] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(235), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(575), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(575), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_preproc_include] = STATE(575), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(575), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(575), - [sym_while_statement] = STATE(575), - [sym_preproc_def] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_preproc_else] = STATE(235), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(575), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(575), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(575), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(575), - [sym_preproc_if] = STATE(575), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(575), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_union] = ACTIONS(862), + [anon_sym_sizeof] = ACTIONS(862), + [anon_sym_unsigned] = ACTIONS(862), + [anon_sym_restrict] = ACTIONS(862), + [anon_sym_short] = ACTIONS(862), + [sym_true] = ACTIONS(862), + [sym_false] = ACTIONS(862), + [sym_null] = ACTIONS(862), + [anon_sym_do] = ACTIONS(862), + [anon_sym_goto] = ACTIONS(862), + [sym_identifier] = ACTIONS(862), + [anon_sym_TILDE] = ACTIONS(860), + [sym_preproc_directive] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(860), + [aux_sym_preproc_if_token1] = ACTIONS(862), + [ts_builtin_sym_end] = ACTIONS(860), + [anon_sym_const] = ACTIONS(862), + [anon_sym_LPAREN2] = ACTIONS(860), + [anon_sym_typedef] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(860), + [anon_sym__Atomic] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(862), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(862), + [anon_sym_break] = ACTIONS(862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(862), + [aux_sym_preproc_include_token1] = ACTIONS(862), + [anon_sym_BANG] = ACTIONS(860), + [anon_sym_static] = ACTIONS(862), + [anon_sym_volatile] = ACTIONS(862), + [anon_sym_register] = ACTIONS(862), + [anon_sym_extern] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_if] = ACTIONS(862), + [anon_sym_struct] = ACTIONS(862), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_signed] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_long] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(860), + [anon_sym_return] = ACTIONS(862), + [anon_sym_while] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(860), + [sym_number_literal] = ACTIONS(860), + [aux_sym_preproc_def_token1] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_auto] = ACTIONS(862), + [anon_sym_L] = ACTIONS(862), + [anon_sym_inline] = ACTIONS(862), + [anon_sym___attribute__] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(862), + }, + [145] = { + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_union] = ACTIONS(866), + [anon_sym_sizeof] = ACTIONS(866), + [anon_sym_unsigned] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym_short] = ACTIONS(866), + [sym_true] = ACTIONS(866), + [sym_false] = ACTIONS(866), + [sym_null] = ACTIONS(866), + [anon_sym_do] = ACTIONS(866), + [anon_sym_goto] = ACTIONS(866), + [sym_identifier] = ACTIONS(866), + [anon_sym_TILDE] = ACTIONS(864), + [sym_preproc_directive] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(864), + [aux_sym_preproc_if_token1] = ACTIONS(866), + [ts_builtin_sym_end] = ACTIONS(864), + [anon_sym_const] = ACTIONS(866), + [anon_sym_LPAREN2] = ACTIONS(864), + [anon_sym_typedef] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym_DQUOTE] = ACTIONS(864), + [anon_sym__Atomic] = ACTIONS(866), + [sym_primitive_type] = ACTIONS(866), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [aux_sym_preproc_ifdef_token1] = ACTIONS(866), + [aux_sym_preproc_include_token1] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_static] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_register] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_if] = ACTIONS(866), + [anon_sym_struct] = ACTIONS(866), + [anon_sym_switch] = ACTIONS(866), + [anon_sym_signed] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [anon_sym_long] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [aux_sym_preproc_ifdef_token2] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(864), + [sym_number_literal] = ACTIONS(864), + [aux_sym_preproc_def_token1] = ACTIONS(866), + [anon_sym_SQUOTE] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(866), + [anon_sym_L] = ACTIONS(866), + [anon_sym_inline] = ACTIONS(866), + [anon_sym___attribute__] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + }, + [146] = { + [sym_preproc_arg] = ACTIONS(868), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [sym_continue_statement] = STATE(240), + [sym_preproc_function_def] = STATE(240), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(923), + [sym_declaration] = STATE(240), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(240), + [sym_for_statement] = STATE(240), + [sym_comma_expression] = STATE(922), + [sym_equality_expression] = STATE(923), + [sym_type_definition] = STATE(240), + [sym_sizeof_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(923), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(240), + [sym_return_statement] = STATE(240), + [sym_preproc_include] = STATE(240), + [sym_conditional_expression] = STATE(923), + [sym_preproc_ifdef] = STATE(240), + [sym_relational_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(240), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(240), + [sym_while_statement] = STATE(240), + [sym_preproc_def] = STATE(240), + [sym_goto_statement] = STATE(240), + [sym_logical_expression] = STATE(923), + [sym_function_definition] = STATE(240), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(240), + [sym_expression_statement] = STATE(240), + [sym_do_statement] = STATE(240), + [sym__expression] = STATE(923), + [sym_preproc_call] = STATE(240), + [sym_bitwise_expression] = STATE(923), + [sym__declaration_specifiers] = STATE(924), + [sym_compound_literal_expression] = STATE(923), + [sym_char_literal] = STATE(923), + [sym__empty_declaration] = STATE(240), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(240), + [sym_preproc_if] = STATE(240), + [sym_assignment_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_linkage_specification] = STATE(240), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(19), + [sym_false] = ACTIONS(872), [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(874), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(35), + [aux_sym_preproc_if_token2] = ACTIONS(880), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(884), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(894), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(896), + [sym_number_literal] = ACTIONS(898), + [anon_sym_if] = ACTIONS(900), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(872), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_L] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(83), + }, + [148] = { + [aux_sym_preproc_if_token2] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_continue_statement] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(242), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(586), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(586), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(586), + [sym_return_statement] = STATE(586), + [sym_preproc_include] = STATE(586), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(586), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_goto_statement] = STATE(586), + [sym_preproc_else] = STATE(242), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(586), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_do_statement] = STATE(586), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(586), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(586), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(586), + [sym_preproc_if] = STATE(586), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(586), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(916), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, - [145] = { - [anon_sym_PERCENT] = ACTIONS(896), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(898), - [anon_sym_DASH_EQ] = ACTIONS(898), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_LT_EQ] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(896), - [anon_sym_DASH_GT] = ACTIONS(898), - [anon_sym_SLASH] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_PLUS_EQ] = ACTIONS(898), - [anon_sym_LT_LT_EQ] = ACTIONS(898), - [anon_sym_QMARK] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(898), - [anon_sym_CARET_EQ] = ACTIONS(898), - [anon_sym_COMMA] = ACTIONS(898), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_GT_GT_EQ] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(896), - [anon_sym_PIPE_EQ] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(898), - [anon_sym_RBRACK] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_AMP_EQ] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_EQ] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(898), - [anon_sym_COLON] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_STAR_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_SLASH_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_GT] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_DOT] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(898), + [150] = { + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_PERCENT_EQ] = ACTIONS(920), + [anon_sym_DASH_EQ] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(918), + [anon_sym_DASH_GT] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(920), + [anon_sym_LT_LT_EQ] = ACTIONS(920), + [anon_sym_QMARK] = ACTIONS(920), + [anon_sym_GT_EQ] = ACTIONS(920), + [anon_sym_CARET_EQ] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_GT_GT_EQ] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_LT_LT] = ACTIONS(918), + [anon_sym_PIPE_EQ] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_RBRACK] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_AMP_EQ] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_AMP_AMP] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(918), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_COLON] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_STAR_EQ] = ACTIONS(920), + [anon_sym_EQ_EQ] = ACTIONS(920), + [anon_sym_PIPE_PIPE] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_SLASH_EQ] = ACTIONS(920), + [anon_sym_BANG_EQ] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(920), }, - [146] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(238), - [sym_math_expression] = STATE(238), - [sym_cast_expression] = STATE(238), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(238), - [sym_bitwise_expression] = STATE(238), - [sym_equality_expression] = STATE(238), - [sym_sizeof_expression] = STATE(238), - [sym_compound_literal_expression] = STATE(238), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(238), - [sym_concatenated_string] = STATE(238), - [sym_conditional_expression] = STATE(238), - [sym_assignment_expression] = STATE(238), - [sym_relational_expression] = STATE(238), - [sym_shift_expression] = STATE(238), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_initializer_list] = STATE(237), - [sym_string_literal] = STATE(38), - [anon_sym_LBRACE] = ACTIONS(900), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), + [151] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(245), + [sym_math_expression] = STATE(245), + [sym_cast_expression] = STATE(245), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(245), + [sym_bitwise_expression] = STATE(245), + [sym_equality_expression] = STATE(245), + [sym_sizeof_expression] = STATE(245), + [sym_compound_literal_expression] = STATE(245), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(245), + [sym_concatenated_string] = STATE(245), + [sym_conditional_expression] = STATE(245), + [sym_assignment_expression] = STATE(245), + [sym_relational_expression] = STATE(245), + [sym_shift_expression] = STATE(245), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_initializer_list] = STATE(244), + [sym_string_literal] = STATE(39), + [anon_sym_LBRACE] = ACTIONS(922), + [sym_false] = ACTIONS(924), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(902), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [147] = { - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(908), - [anon_sym_short] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - [sym_null] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_const] = ACTIONS(908), - [anon_sym_LPAREN2] = ACTIONS(911), - [anon_sym_DASH_DASH] = ACTIONS(911), - [anon_sym__Atomic] = ACTIONS(908), - [sym_primitive_type] = ACTIONS(906), - [sym_true] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(911), - [sym_number_literal] = ACTIONS(911), - [anon_sym_volatile] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [sym_identifier] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(911), + [152] = { + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [anon_sym_sizeof] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(930), + [anon_sym_short] = ACTIONS(928), + [sym_identifier] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_const] = ACTIONS(930), + [anon_sym_LPAREN2] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym__Atomic] = ACTIONS(930), + [sym_primitive_type] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(933), + [sym_number_literal] = ACTIONS(933), + [anon_sym_volatile] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [sym_true] = ACTIONS(928), + [sym_null] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_L] = ACTIONS(928), + [anon_sym_RBRACK] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(933), }, - [148] = { - [sym_abstract_pointer_declarator] = STATE(239), - [sym_abstract_array_declarator] = STATE(239), - [sym_abstract_function_declarator] = STATE(239), - [sym__abstract_declarator] = STATE(239), - [sym_type_qualifier] = STATE(240), - [aux_sym_type_definition_repeat1] = STATE(240), - [sym_parameter_list] = STATE(152), - [anon_sym_const] = ACTIONS(454), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_restrict] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(454), - [anon_sym__Atomic] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_LBRACK] = ACTIONS(462), + [153] = { + [sym_abstract_pointer_declarator] = STATE(246), + [sym_abstract_array_declarator] = STATE(246), + [sym_abstract_function_declarator] = STATE(246), + [sym__abstract_declarator] = STATE(246), + [sym_type_qualifier] = STATE(247), + [aux_sym_type_definition_repeat1] = STATE(247), + [sym_parameter_list] = STATE(157), + [anon_sym_const] = ACTIONS(464), + [anon_sym_LPAREN2] = ACTIONS(466), + [anon_sym_restrict] = ACTIONS(464), + [anon_sym_volatile] = ACTIONS(464), + [anon_sym__Atomic] = ACTIONS(464), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(470), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(472), }, - [149] = { - [sym_abstract_pointer_declarator] = STATE(241), - [sym_abstract_array_declarator] = STATE(241), - [sym_abstract_function_declarator] = STATE(241), - [sym__abstract_declarator] = STATE(241), - [sym_type_qualifier] = STATE(242), - [aux_sym_type_definition_repeat1] = STATE(242), - [sym_parameter_list] = STATE(152), - [anon_sym_const] = ACTIONS(454), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_restrict] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(454), - [anon_sym__Atomic] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_LBRACK] = ACTIONS(462), + [154] = { + [sym_abstract_pointer_declarator] = STATE(248), + [sym_abstract_array_declarator] = STATE(248), + [sym_abstract_function_declarator] = STATE(248), + [sym__abstract_declarator] = STATE(248), + [sym_type_qualifier] = STATE(249), + [aux_sym_type_definition_repeat1] = STATE(249), + [sym_parameter_list] = STATE(157), + [anon_sym_const] = ACTIONS(464), + [anon_sym_LPAREN2] = ACTIONS(466), + [anon_sym_restrict] = ACTIONS(464), + [anon_sym_volatile] = ACTIONS(464), + [anon_sym__Atomic] = ACTIONS(464), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(470), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(472), }, - [150] = { - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_parameter_list] = STATE(152), - [sym_parameter_declaration] = STATE(243), - [sym_abstract_function_declarator] = STATE(245), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [sym__abstract_declarator] = STATE(245), - [sym_abstract_array_declarator] = STATE(245), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(246), - [sym_abstract_pointer_declarator] = STATE(245), + [155] = { + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_parameter_list] = STATE(157), + [sym_parameter_declaration] = STATE(250), + [sym_abstract_function_declarator] = STATE(252), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [sym__abstract_declarator] = STATE(252), + [sym_abstract_array_declarator] = STATE(252), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym__declaration_specifiers] = STATE(253), + [sym_abstract_pointer_declarator] = STATE(252), + [sym_comment] = ACTIONS(3), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(460), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_short] = ACTIONS(17), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_DOT_DOT_DOT] = ACTIONS(939), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_LPAREN2] = ACTIONS(466), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(462), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(472), }, - [151] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(250), - [sym_math_expression] = STATE(250), - [sym_cast_expression] = STATE(250), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(250), - [sym_bitwise_expression] = STATE(250), - [sym_equality_expression] = STATE(250), - [sym_sizeof_expression] = STATE(250), - [sym_compound_literal_expression] = STATE(250), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(250), - [sym_concatenated_string] = STATE(250), - [sym_type_qualifier] = STATE(249), - [aux_sym_type_definition_repeat1] = STATE(249), - [sym_conditional_expression] = STATE(250), - [sym_assignment_expression] = STATE(250), - [sym_relational_expression] = STATE(250), - [sym_shift_expression] = STATE(250), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(921), + [156] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(257), + [sym_math_expression] = STATE(257), + [sym_cast_expression] = STATE(257), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(257), + [sym_bitwise_expression] = STATE(257), + [sym_equality_expression] = STATE(257), + [sym_sizeof_expression] = STATE(257), + [sym_compound_literal_expression] = STATE(257), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(257), + [sym_concatenated_string] = STATE(257), + [sym_type_qualifier] = STATE(256), + [aux_sym_type_definition_repeat1] = STATE(256), + [sym_conditional_expression] = STATE(257), + [sym_assignment_expression] = STATE(257), + [sym_relational_expression] = STATE(257), + [sym_shift_expression] = STATE(257), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(943), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_true] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(923), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(945), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(921), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(943), + [sym_null] = ACTIONS(943), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [152] = { - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_LPAREN2] = ACTIONS(929), + [157] = { + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_LPAREN2] = ACTIONS(951), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(951), }, - [153] = { - [sym_parameter_list] = STATE(252), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(787), + [158] = { + [sym_parameter_list] = STATE(259), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(953), }, - [154] = { - [sym_abstract_pointer_declarator] = STATE(239), - [sym_abstract_array_declarator] = STATE(239), - [sym_abstract_function_declarator] = STATE(239), - [sym__abstract_declarator] = STATE(239), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_parameter_list] = STATE(152), - [anon_sym_const] = ACTIONS(454), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_restrict] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(454), - [anon_sym__Atomic] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_LBRACK] = ACTIONS(462), + [159] = { + [sym_abstract_pointer_declarator] = STATE(246), + [sym_abstract_array_declarator] = STATE(246), + [sym_abstract_function_declarator] = STATE(246), + [sym__abstract_declarator] = STATE(246), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_parameter_list] = STATE(157), + [anon_sym_const] = ACTIONS(464), + [anon_sym_LPAREN2] = ACTIONS(466), + [anon_sym_restrict] = ACTIONS(464), + [anon_sym_volatile] = ACTIONS(464), + [anon_sym__Atomic] = ACTIONS(464), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(470), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(472), }, - [155] = { - [sym_array_type_declarator] = STATE(253), - [sym_pointer_type_declarator] = STATE(253), - [sym_function_type_declarator] = STATE(253), - [sym__type_declarator] = STATE(253), - [sym_identifier] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), + [160] = { + [sym_array_type_declarator] = STATE(260), + [sym_pointer_type_declarator] = STATE(260), + [sym_function_type_declarator] = STATE(260), + [sym__type_declarator] = STATE(260), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(481), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(483), }, - [156] = { - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_LPAREN2] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(933), + [161] = { + [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_LPAREN2] = ACTIONS(955), + [anon_sym_RPAREN] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(955), }, - [157] = { - [sym_array_type_declarator] = STATE(255), - [sym_type_qualifier] = STATE(254), - [aux_sym_type_definition_repeat1] = STATE(254), - [sym_function_type_declarator] = STATE(255), - [sym_pointer_type_declarator] = STATE(255), - [sym__type_declarator] = STATE(255), - [sym_identifier] = ACTIONS(935), + [162] = { + [sym_array_type_declarator] = STATE(262), + [sym_type_qualifier] = STATE(261), + [aux_sym_type_definition_repeat1] = STATE(261), + [sym_function_type_declarator] = STATE(262), + [sym_pointer_type_declarator] = STATE(262), + [sym__type_declarator] = STATE(262), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(473), + [anon_sym_LPAREN2] = ACTIONS(481), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(957), [anon_sym_volatile] = ACTIONS(13), [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(479), + [sym_comment] = ACTIONS(3), }, - [158] = { - [sym_array_type_declarator] = STATE(256), - [sym_pointer_type_declarator] = STATE(256), - [sym_function_type_declarator] = STATE(256), - [sym__type_declarator] = STATE(256), - [sym_identifier] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), + [163] = { + [sym_array_type_declarator] = STATE(263), + [sym_pointer_type_declarator] = STATE(263), + [sym_function_type_declarator] = STATE(263), + [sym__type_declarator] = STATE(263), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(481), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(483), }, - [159] = { - [aux_sym_type_definition_repeat2] = STATE(260), - [sym_parameter_list] = STATE(261), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(937), + [164] = { + [aux_sym_type_definition_repeat2] = STATE(267), + [sym_parameter_list] = STATE(268), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(961), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(963), }, - [160] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(263), - [sym_math_expression] = STATE(263), - [sym_cast_expression] = STATE(263), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(263), - [sym_bitwise_expression] = STATE(263), - [sym_equality_expression] = STATE(263), - [sym_sizeof_expression] = STATE(263), - [sym_compound_literal_expression] = STATE(263), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(263), - [sym_concatenated_string] = STATE(263), - [sym_conditional_expression] = STATE(263), - [sym_assignment_expression] = STATE(263), - [sym_relational_expression] = STATE(263), - [sym_shift_expression] = STATE(263), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(943), + [165] = { + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_restrict] = ACTIONS(965), + [sym_identifier] = ACTIONS(965), + [anon_sym_PERCENT_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_DASH_GT] = ACTIONS(967), + [anon_sym_const] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym__Atomic] = ACTIONS(965), [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_LT_LT_EQ] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_CARET_EQ] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_volatile] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(967), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_signed] = ACTIONS(965), + [anon_sym_long] = ACTIONS(965), + [anon_sym_GT_GT_EQ] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_PIPE_EQ] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_L] = ACTIONS(965), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym___attribute__] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsigned] = ACTIONS(965), + [anon_sym_short] = ACTIONS(965), + [anon_sym_AMP_EQ] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_LPAREN2] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(967), + [sym_primitive_type] = ACTIONS(965), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_static] = ACTIONS(965), + [anon_sym_register] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_auto] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_inline] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(967), + }, + [166] = { + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(971), + [aux_sym_string_literal_token1] = ACTIONS(971), + }, + [167] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(270), + [sym_math_expression] = STATE(270), + [sym_cast_expression] = STATE(270), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(270), + [sym_bitwise_expression] = STATE(270), + [sym_equality_expression] = STATE(270), + [sym_sizeof_expression] = STATE(270), + [sym_compound_literal_expression] = STATE(270), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(270), + [sym_concatenated_string] = STATE(270), + [sym_conditional_expression] = STATE(270), + [sym_assignment_expression] = STATE(270), + [sym_relational_expression] = STATE(270), + [sym_shift_expression] = STATE(270), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(974), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(976), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(943), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(974), + [sym_null] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [161] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [168] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, - [162] = { - [sym_function_declarator] = STATE(265), - [sym_pointer_declarator] = STATE(265), - [sym__declarator] = STATE(265), - [sym_init_declarator] = STATE(125), - [sym_array_declarator] = STATE(265), - [sym_identifier] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), + [169] = { + [sym_function_declarator] = STATE(272), + [sym_pointer_declarator] = STATE(272), + [sym__declarator] = STATE(272), + [sym_init_declarator] = STATE(129), + [sym_array_declarator] = STATE(272), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(982), }, - [163] = { - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_union] = ACTIONS(955), - [anon_sym_sizeof] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_restrict] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym_null] = ACTIONS(955), - [sym_identifier] = ACTIONS(955), - [anon_sym_do] = ACTIONS(955), - [anon_sym_goto] = ACTIONS(955), - [ts_builtin_sym_end] = ACTIONS(953), - [anon_sym_TILDE] = ACTIONS(953), - [sym_preproc_directive] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(953), - [aux_sym_preproc_if_token1] = ACTIONS(955), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(955), - [anon_sym_LPAREN2] = ACTIONS(953), - [anon_sym_typedef] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym__Atomic] = ACTIONS(955), - [sym_primitive_type] = ACTIONS(955), - [sym_true] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(955), - [aux_sym_preproc_include_token1] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_static] = ACTIONS(955), - [anon_sym_volatile] = ACTIONS(955), - [anon_sym_register] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_if] = ACTIONS(955), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_switch] = ACTIONS(955), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_return] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(953), - [sym_number_literal] = ACTIONS(953), - [aux_sym_preproc_def_token1] = ACTIONS(955), - [sym_false] = ACTIONS(955), - [anon_sym_auto] = ACTIONS(955), - [anon_sym_SQUOTE] = ACTIONS(953), - [anon_sym_inline] = ACTIONS(955), - [anon_sym___attribute__] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), + [170] = { + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_union] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(986), + [anon_sym_unsigned] = ACTIONS(986), + [anon_sym_restrict] = ACTIONS(986), + [anon_sym_short] = ACTIONS(986), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_goto] = ACTIONS(986), + [sym_identifier] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [ts_builtin_sym_end] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_typedef] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(986), + [sym_primitive_type] = ACTIONS(986), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(986), + [aux_sym_preproc_include_token1] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_static] = ACTIONS(986), + [anon_sym_volatile] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_if] = ACTIONS(986), + [anon_sym_struct] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(986), + [anon_sym_signed] = ACTIONS(986), + [anon_sym_enum] = ACTIONS(986), + [anon_sym_long] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_return] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(984), + [sym_number_literal] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(986), + [anon_sym_L] = ACTIONS(986), + [anon_sym_inline] = ACTIONS(986), + [anon_sym___attribute__] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), }, - [164] = { - [aux_sym_preproc_if_token2] = ACTIONS(957), + [171] = { + [aux_sym_preproc_if_token2] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_continue_statement] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(267), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(575), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(575), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_preproc_include] = STATE(575), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(575), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(575), - [sym_while_statement] = STATE(575), - [sym_preproc_def] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_preproc_else] = STATE(267), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(575), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(575), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(575), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(575), - [sym_preproc_if] = STATE(575), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(575), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [172] = { + [sym_continue_statement] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(274), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(586), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(586), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(586), + [sym_return_statement] = STATE(586), + [sym_preproc_include] = STATE(586), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(586), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_goto_statement] = STATE(586), + [sym_preproc_else] = STATE(274), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(586), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_do_statement] = STATE(586), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(586), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(586), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(586), + [sym_preproc_if] = STATE(586), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(586), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(959), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(990), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, - [166] = { - [sym_continue_statement] = STATE(269), - [sym_preproc_function_def] = STATE(269), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(269), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(269), - [sym_for_statement] = STATE(269), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(269), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(269), - [sym_return_statement] = STATE(269), - [sym_preproc_include] = STATE(269), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(269), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(269), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(269), - [sym_while_statement] = STATE(269), - [sym_preproc_def] = STATE(269), - [sym_goto_statement] = STATE(269), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(269), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(269), - [sym_expression_statement] = STATE(269), - [sym_do_statement] = STATE(269), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(269), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(269), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(269), - [sym_preproc_if] = STATE(269), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(269), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(97), + [173] = { + [sym_continue_statement] = STATE(276), + [sym_preproc_function_def] = STATE(276), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(276), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(276), + [sym_for_statement] = STATE(276), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(276), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(276), + [sym_return_statement] = STATE(276), + [sym_preproc_include] = STATE(276), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(276), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(276), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(276), + [sym_while_statement] = STATE(276), + [sym_preproc_def] = STATE(276), + [sym_goto_statement] = STATE(276), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(276), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(276), + [sym_expression_statement] = STATE(276), + [sym_do_statement] = STATE(276), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(276), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(276), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(276), + [sym_preproc_if] = STATE(276), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(276), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(101), [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(17), - [sym_null] = ACTIONS(83), + [anon_sym_inline] = ACTIONS(19), + [sym_false] = ACTIONS(85), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(87), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(107), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(992), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(93), - [sym_number_literal] = ACTIONS(91), - [anon_sym_if] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(117), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(97), + [sym_number_literal] = ACTIONS(95), + [anon_sym_if] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(85), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_L] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(83), }, - [167] = { - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_union] = ACTIONS(965), - [anon_sym_sizeof] = ACTIONS(965), - [anon_sym_unsigned] = ACTIONS(965), - [anon_sym_restrict] = ACTIONS(965), - [anon_sym_short] = ACTIONS(965), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym_null] = ACTIONS(965), - [sym_identifier] = ACTIONS(965), - [anon_sym_do] = ACTIONS(965), - [anon_sym_goto] = ACTIONS(965), - [ts_builtin_sym_end] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(963), - [sym_preproc_directive] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(963), - [aux_sym_preproc_if_token1] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(963), - [anon_sym_typedef] = ACTIONS(965), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym__Atomic] = ACTIONS(965), - [sym_primitive_type] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [anon_sym_for] = ACTIONS(965), - [anon_sym_break] = ACTIONS(965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(965), - [aux_sym_preproc_include_token1] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_static] = ACTIONS(965), - [anon_sym_volatile] = ACTIONS(965), - [anon_sym_register] = ACTIONS(965), - [anon_sym_extern] = ACTIONS(965), - [anon_sym_STAR] = ACTIONS(963), - [anon_sym_if] = ACTIONS(965), - [anon_sym_struct] = ACTIONS(965), - [anon_sym_switch] = ACTIONS(965), - [anon_sym_signed] = ACTIONS(965), - [anon_sym_enum] = ACTIONS(965), - [anon_sym_long] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_return] = ACTIONS(965), - [anon_sym_while] = ACTIONS(965), - [anon_sym_continue] = ACTIONS(965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(963), - [sym_number_literal] = ACTIONS(963), - [aux_sym_preproc_def_token1] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [anon_sym_auto] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(963), - [anon_sym_inline] = ACTIONS(965), - [anon_sym___attribute__] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(965), - }, - [168] = { - [sym_function_declarator] = STATE(124), - [sym__declarator] = STATE(124), - [sym_init_declarator] = STATE(125), - [sym_pointer_declarator] = STATE(124), - [sym_array_declarator] = STATE(124), - [sym_identifier] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [anon_sym_case] = ACTIONS(967), - [sym_null] = ACTIONS(967), - [anon_sym_restrict] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_typedef] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_default] = ACTIONS(967), - [anon_sym__Atomic] = ACTIONS(967), - [aux_sym_preproc_ifdef_token1] = ACTIONS(967), - [sym_number_literal] = ACTIONS(969), - [anon_sym_volatile] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_signed] = ACTIONS(967), - [anon_sym_long] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [anon_sym___attribute__] = ACTIONS(967), - [anon_sym_sizeof] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsigned] = ACTIONS(967), - [anon_sym_short] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(969), - [sym_preproc_directive] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), - [aux_sym_preproc_if_token1] = ACTIONS(967), - [anon_sym_LPAREN2] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_else] = ACTIONS(971), - [sym_true] = ACTIONS(967), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [aux_sym_preproc_include_token1] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_static] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_if] = ACTIONS(967), - [anon_sym_switch] = ACTIONS(967), - [sym_false] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [sym_identifier] = ACTIONS(967), - [ts_builtin_sym_end] = ACTIONS(969), - [anon_sym_return] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [aux_sym_preproc_def_token1] = ACTIONS(967), - [anon_sym_auto] = ACTIONS(967), - [anon_sym_inline] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - }, - [170] = { - [anon_sym_restrict] = ACTIONS(973), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(973), - [anon_sym_volatile] = ACTIONS(973), - [anon_sym_register] = ACTIONS(973), - [anon_sym_extern] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [sym_identifier] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [anon_sym_LPAREN2] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym__Atomic] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_auto] = ACTIONS(973), - [anon_sym_inline] = ACTIONS(973), - [anon_sym___attribute__] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(975), - }, - [171] = { - [sym_while_statement] = STATE(274), - [sym_continue_statement] = STATE(274), - [sym_goto_statement] = STATE(274), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(274), - [sym_expression_statement] = STATE(274), - [sym_if_statement] = STATE(274), - [sym_do_statement] = STATE(274), - [sym_for_statement] = STATE(274), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(274), - [sym_return_statement] = STATE(274), - [sym_break_statement] = STATE(274), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(274), - [sym_labeled_statement] = STATE(274), - [sym_case_statement] = STATE(274), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_case] = ACTIONS(979), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_default] = ACTIONS(989), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [172] = { - [anon_sym_case] = ACTIONS(1011), - [sym_null] = ACTIONS(1011), - [anon_sym_restrict] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_typedef] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_default] = ACTIONS(1011), - [anon_sym__Atomic] = ACTIONS(1011), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1011), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_volatile] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_signed] = ACTIONS(1011), - [anon_sym_long] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym___attribute__] = ACTIONS(1011), - [anon_sym_sizeof] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_unsigned] = ACTIONS(1011), - [anon_sym_short] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [sym_preproc_directive] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1013), - [aux_sym_preproc_if_token1] = ACTIONS(1011), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_else] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [sym_primitive_type] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [aux_sym_preproc_include_token1] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_switch] = ACTIONS(1011), - [sym_false] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1011), - [ts_builtin_sym_end] = ACTIONS(1013), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [aux_sym_preproc_def_token1] = ACTIONS(1011), - [anon_sym_auto] = ACTIONS(1011), - [anon_sym_inline] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - }, - [173] = { - [anon_sym_EQ] = ACTIONS(1015), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [anon_sym_restrict] = ACTIONS(1019), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1019), - [anon_sym_volatile] = ACTIONS(1019), - [anon_sym_register] = ACTIONS(1019), - [anon_sym_extern] = ACTIONS(1019), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1019), - [anon_sym_const] = ACTIONS(1019), - [anon_sym_LPAREN2] = ACTIONS(1021), - [anon_sym_COLON] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1021), - [anon_sym__Atomic] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1021), - [anon_sym_auto] = ACTIONS(1019), - [anon_sym_inline] = ACTIONS(1019), - [anon_sym___attribute__] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1021), - }, - [175] = { - [anon_sym_RBRACE] = ACTIONS(1023), + [174] = { + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_union] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [sym_identifier] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(994), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(994), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(994), + [anon_sym_const] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [anon_sym__Atomic] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_static] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_if] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_return] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(994), + [sym_number_literal] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_L] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + }, + [175] = { + [sym_function_declarator] = STATE(128), + [sym__declarator] = STATE(128), + [sym_init_declarator] = STATE(129), + [sym_pointer_declarator] = STATE(128), + [sym_array_declarator] = STATE(128), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(346), }, [176] = { - [aux_sym_enumerator_list_repeat1] = STATE(278), - [anon_sym_COMMA] = ACTIONS(1025), - [anon_sym_RBRACE] = ACTIONS(1023), - [sym_comment] = ACTIONS(3), + [anon_sym_case] = ACTIONS(998), + [sym_false] = ACTIONS(998), + [anon_sym_restrict] = ACTIONS(998), + [sym_identifier] = ACTIONS(998), + [anon_sym_goto] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(998), + [anon_sym__Atomic] = ACTIONS(998), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(998), + [anon_sym_signed] = ACTIONS(998), + [anon_sym_long] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(998), + [anon_sym_L] = ACTIONS(998), + [anon_sym___attribute__] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(998), + [anon_sym_unsigned] = ACTIONS(998), + [anon_sym_short] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1002), + [sym_primitive_type] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [aux_sym_preproc_include_token1] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(998), + [anon_sym_switch] = ACTIONS(998), + [sym_true] = ACTIONS(998), + [anon_sym_enum] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [ts_builtin_sym_end] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(998), + [anon_sym_auto] = ACTIONS(998), + [anon_sym_inline] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), }, [177] = { - [anon_sym_restrict] = ACTIONS(1027), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1027), - [anon_sym_volatile] = ACTIONS(1027), - [anon_sym_register] = ACTIONS(1027), - [anon_sym_extern] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_COMMA] = ACTIONS(1029), - [sym_identifier] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [anon_sym_LPAREN2] = ACTIONS(1029), - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym__Atomic] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_auto] = ACTIONS(1027), - [anon_sym_inline] = ACTIONS(1027), - [anon_sym___attribute__] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_restrict] = ACTIONS(1004), + [sym_identifier] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_COMMA] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_COLON] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym__Atomic] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1006), }, [178] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_while_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [179] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_case] = ACTIONS(1042), + [sym_false] = ACTIONS(1042), + [anon_sym_restrict] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1042), + [anon_sym_goto] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1042), + [anon_sym__Atomic] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), + [sym_number_literal] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1042), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), + [anon_sym_L] = ACTIONS(1042), + [anon_sym___attribute__] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1042), + [sym_true] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [sym_null] = ACTIONS(1042), + [ts_builtin_sym_end] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1042), + [anon_sym_auto] = ACTIONS(1042), + [anon_sym_inline] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), }, [180] = { - [anon_sym_case] = ACTIONS(1035), - [sym_null] = ACTIONS(1035), - [anon_sym_restrict] = ACTIONS(1035), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1035), - [anon_sym_const] = ACTIONS(1035), - [anon_sym_typedef] = ACTIONS(1035), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1035), - [anon_sym__Atomic] = ACTIONS(1035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1035), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_volatile] = ACTIONS(1035), - [anon_sym_extern] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1035), - [anon_sym_signed] = ACTIONS(1035), - [anon_sym_long] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(1035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym___attribute__] = ACTIONS(1035), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1035), - [anon_sym_unsigned] = ACTIONS(1035), - [anon_sym_short] = ACTIONS(1035), - [anon_sym_do] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1035), - [anon_sym_LPAREN2] = ACTIONS(1037), - [anon_sym_RBRACE] = ACTIONS(1037), - [anon_sym_else] = ACTIONS(1035), - [sym_true] = ACTIONS(1035), - [sym_primitive_type] = ACTIONS(1035), - [anon_sym_for] = ACTIONS(1035), - [anon_sym_break] = ACTIONS(1035), - [aux_sym_preproc_include_token1] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1035), - [anon_sym_register] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1035), - [sym_false] = ACTIONS(1035), - [anon_sym_enum] = ACTIONS(1035), - [sym_identifier] = ACTIONS(1035), - [ts_builtin_sym_end] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1035), - [anon_sym_continue] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1035), - [anon_sym_auto] = ACTIONS(1035), - [anon_sym_inline] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1046), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), }, [181] = { - [anon_sym_case] = ACTIONS(1039), - [sym_null] = ACTIONS(1039), - [anon_sym_restrict] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_const] = ACTIONS(1039), - [anon_sym_typedef] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1039), - [anon_sym__Atomic] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_volatile] = ACTIONS(1039), - [anon_sym_extern] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1039), - [anon_sym_signed] = ACTIONS(1039), - [anon_sym_long] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym___attribute__] = ACTIONS(1039), - [anon_sym_sizeof] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1039), - [anon_sym_unsigned] = ACTIONS(1039), - [anon_sym_short] = ACTIONS(1039), - [anon_sym_do] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [anon_sym_LPAREN2] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_else] = ACTIONS(1039), - [sym_true] = ACTIONS(1039), - [sym_primitive_type] = ACTIONS(1039), - [anon_sym_for] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(1039), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_register] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_enum] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1039), - [ts_builtin_sym_end] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1039), - [anon_sym_continue] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [anon_sym_auto] = ACTIONS(1039), - [anon_sym_inline] = ACTIONS(1039), - [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1050), + [anon_sym_volatile] = ACTIONS(1050), + [anon_sym_register] = ACTIONS(1050), + [anon_sym_extern] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1052), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_LPAREN2] = ACTIONS(1052), + [anon_sym_COLON] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1050), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1050), + [anon_sym___attribute__] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1052), }, [182] = { - [anon_sym_case] = ACTIONS(1043), - [sym_null] = ACTIONS(1043), - [anon_sym_restrict] = ACTIONS(1043), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1043), - [anon_sym_const] = ACTIONS(1043), - [anon_sym_typedef] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1043), - [anon_sym__Atomic] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [sym_number_literal] = ACTIONS(1045), - [anon_sym_volatile] = ACTIONS(1043), - [anon_sym_extern] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1043), - [anon_sym_signed] = ACTIONS(1043), - [anon_sym_long] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1045), - [anon_sym___attribute__] = ACTIONS(1043), - [anon_sym_sizeof] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1043), - [anon_sym_unsigned] = ACTIONS(1043), - [anon_sym_short] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1045), - [sym_preproc_directive] = ACTIONS(1043), - [anon_sym_AMP] = ACTIONS(1045), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [anon_sym_LPAREN2] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_else] = ACTIONS(1043), - [sym_true] = ACTIONS(1043), - [sym_primitive_type] = ACTIONS(1043), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_break] = ACTIONS(1043), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_register] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(1043), - [sym_false] = ACTIONS(1043), - [anon_sym_enum] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1043), - [ts_builtin_sym_end] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_continue] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1045), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [anon_sym_auto] = ACTIONS(1043), - [anon_sym_inline] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1054), + [sym_comment] = ACTIONS(3), }, [183] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(1047), + [aux_sym_enumerator_list_repeat1] = STATE(285), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1054), }, [184] = { - [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1051), - [anon_sym_sizeof] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym_short] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1049), - [sym_null] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(1051), - [anon_sym_goto] = ACTIONS(1051), - [ts_builtin_sym_end] = ACTIONS(1049), - [anon_sym_TILDE] = ACTIONS(1049), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1049), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_LPAREN2] = ACTIONS(1049), - [anon_sym_typedef] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1049), - [anon_sym__Atomic] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [sym_true] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [aux_sym_preproc_include_token1] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_struct] = ACTIONS(1051), - [anon_sym_switch] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1049), - [sym_number_literal] = ACTIONS(1049), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [sym_false] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_inline] = ACTIONS(1051), - [anon_sym___attribute__] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_restrict] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1058), + [anon_sym_volatile] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1058), + [anon_sym_LPAREN2] = ACTIONS(1060), + [anon_sym_COLON] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1058), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(1058), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1058), + [anon_sym___attribute__] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1060), }, [185] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1053), - [sym_identifier] = ACTIONS(1053), - [anon_sym_RPAREN] = ACTIONS(1055), - [sym_comment] = ACTIONS(3), + [anon_sym_case] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [sym_identifier] = 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_default] = ACTIONS(1062), + [anon_sym__Atomic] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + [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), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [anon_sym_L] = ACTIONS(1062), + [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), + [anon_sym_TILDE] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1062), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_switch] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [sym_null] = 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_auto] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), }, [186] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(1057), - [sym_preproc_arg] = ACTIONS(1059), + [anon_sym_case] = ACTIONS(1066), + [sym_false] = ACTIONS(1066), + [anon_sym_restrict] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1066), + [anon_sym_goto] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1066), + [anon_sym__Atomic] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1066), + [sym_number_literal] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1066), + [anon_sym_signed] = ACTIONS(1066), + [anon_sym_long] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1066), + [anon_sym_L] = ACTIONS(1066), + [anon_sym___attribute__] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1066), + [anon_sym_unsigned] = ACTIONS(1066), + [anon_sym_short] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [aux_sym_preproc_include_token1] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_switch] = ACTIONS(1066), + [sym_true] = ACTIONS(1066), + [anon_sym_enum] = ACTIONS(1066), + [sym_null] = ACTIONS(1066), + [ts_builtin_sym_end] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1066), + [anon_sym_auto] = ACTIONS(1066), + [anon_sym_inline] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), }, [187] = { - [anon_sym_PERCENT] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1063), - [anon_sym_DASH_EQ] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1061), - [anon_sym_LT_EQ] = ACTIONS(1063), - [anon_sym_CARET] = ACTIONS(1061), - [anon_sym_DASH_GT] = ACTIONS(1063), - [anon_sym_SLASH] = ACTIONS(1061), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_PLUS_EQ] = ACTIONS(1063), - [anon_sym_LT_LT_EQ] = ACTIONS(1063), - [anon_sym_QMARK] = ACTIONS(1063), - [anon_sym_GT_EQ] = ACTIONS(1063), - [anon_sym_CARET_EQ] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_GT_GT_EQ] = ACTIONS(1063), - [anon_sym_LT_LT] = ACTIONS(1061), - [anon_sym_PIPE_EQ] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_RBRACK] = ACTIONS(1063), - [anon_sym_AMP_EQ] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1061), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_EQ] = ACTIONS(1061), - [anon_sym_LPAREN2] = ACTIONS(1063), - [anon_sym_GT_GT] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1063), - [anon_sym_COLON] = ACTIONS(1063), - [anon_sym_STAR_EQ] = ACTIONS(1063), - [anon_sym_EQ_EQ] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1061), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_SLASH_EQ] = ACTIONS(1063), - [anon_sym_BANG_EQ] = ACTIONS(1063), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1061), - [anon_sym_DOT] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LF] = ACTIONS(1070), + [sym_comment] = ACTIONS(183), }, [188] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [ts_builtin_sym_end] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_LPAREN2] = ACTIONS(1072), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_L] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), }, [189] = { - [aux_sym_concatenated_string_repeat1] = STATE(189), - [sym_string_literal] = STATE(189), - [anon_sym_PERCENT] = ACTIONS(1067), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1069), - [anon_sym_DASH_EQ] = ACTIONS(1069), - [anon_sym_LT] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_CARET] = ACTIONS(1067), - [anon_sym_DASH_GT] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_PLUS_EQ] = ACTIONS(1069), - [anon_sym_LT_LT_EQ] = ACTIONS(1069), - [anon_sym_QMARK] = ACTIONS(1069), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_CARET_EQ] = ACTIONS(1069), - [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_GT_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_PIPE_EQ] = ACTIONS(1069), - [anon_sym_RPAREN] = ACTIONS(1069), - [anon_sym_RBRACK] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_AMP_EQ] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_AMP_AMP] = ACTIONS(1069), - [anon_sym_EQ] = ACTIONS(1067), - [anon_sym_LPAREN2] = ACTIONS(1069), - [anon_sym_GT_GT] = ACTIONS(1067), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_COLON] = ACTIONS(1069), - [anon_sym_STAR_EQ] = ACTIONS(1069), - [anon_sym_EQ_EQ] = ACTIONS(1069), - [anon_sym_PIPE_PIPE] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1069), - [anon_sym_BANG_EQ] = ACTIONS(1069), - [anon_sym_SEMI] = ACTIONS(1069), - [anon_sym_GT] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1069), - }, - [190] = { - [aux_sym__declaration_specifiers_repeat1] = STATE(103), - [sym_attribute_specifier] = STATE(103), - [sym_type_qualifier] = STATE(103), - [sym_storage_class_specifier] = STATE(103), - [anon_sym_restrict] = ACTIONS(13), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1078), [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_COMMA] = ACTIONS(1074), [sym_identifier] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_COLON] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(1074), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(1074), + }, + [190] = { + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(1080), + [sym_preproc_arg] = ACTIONS(1082), }, [191] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(1078), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1080), - [anon_sym_DASH_EQ] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1080), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1080), - [anon_sym_LT_LT_EQ] = ACTIONS(1080), - [anon_sym_QMARK] = ACTIONS(1080), - [anon_sym_GT_EQ] = ACTIONS(1080), - [anon_sym_CARET_EQ] = ACTIONS(1080), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1080), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_PIPE_EQ] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1080), - [anon_sym_AMP_EQ] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_STAR_EQ] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH_EQ] = ACTIONS(1080), - [anon_sym_BANG_EQ] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_PERCENT] = ACTIONS(1084), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_DASH_GT] = ACTIONS(1086), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1084), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_RBRACK] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_COLON] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1086), }, [192] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), + [anon_sym_SQUOTE] = ACTIONS(1088), [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_AMP_AMP] = ACTIONS(1084), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(1084), - [anon_sym_RBRACE] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_EQ_EQ] = ACTIONS(1084), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(1084), - [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1084), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), }, [193] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_CARET] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_GT_EQ] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(495), }, [194] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_QMARK] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_RPAREN] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), }, [195] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_concatenated_string_repeat1] = STATE(195), + [sym_string_literal] = STATE(195), + [anon_sym_PERCENT] = ACTIONS(1094), + [anon_sym_PERCENT_EQ] = ACTIONS(1096), + [anon_sym_DASH_EQ] = ACTIONS(1096), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_LT_EQ] = ACTIONS(1096), + [anon_sym_CARET] = ACTIONS(1094), + [anon_sym_DASH_GT] = ACTIONS(1096), + [anon_sym_SLASH] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1096), + [anon_sym_LT_LT_EQ] = ACTIONS(1096), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_GT_EQ] = ACTIONS(1096), + [anon_sym_CARET_EQ] = ACTIONS(1096), + [anon_sym_COMMA] = ACTIONS(1096), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_GT_GT_EQ] = ACTIONS(1096), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_PIPE_EQ] = ACTIONS(1096), + [anon_sym_RPAREN] = ACTIONS(1096), + [anon_sym_L] = ACTIONS(1098), + [anon_sym_RBRACK] = ACTIONS(1096), + [anon_sym_AMP_EQ] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1096), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_GT_GT] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_COLON] = ACTIONS(1096), + [anon_sym_STAR_EQ] = ACTIONS(1096), + [anon_sym_EQ_EQ] = ACTIONS(1096), + [anon_sym_PIPE_PIPE] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_SLASH_EQ] = ACTIONS(1096), + [anon_sym_BANG_EQ] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1096), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_DOT] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1096), }, [196] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(1094), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [197] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - }, - [198] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_QMARK] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1080), - [anon_sym_GT_EQ] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_LT_LT] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [199] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_QMARK] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_COMMA] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [200] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_QMARK] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_COMMA] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [201] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_QMARK] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [202] = { - [anon_sym_PERCENT] = ACTIONS(1100), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1102), - [anon_sym_DASH_EQ] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_CARET] = ACTIONS(1100), - [anon_sym_DASH_GT] = ACTIONS(1102), - [anon_sym_SLASH] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_EQ] = ACTIONS(1102), - [anon_sym_LT_LT_EQ] = ACTIONS(1102), - [anon_sym_QMARK] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_CARET_EQ] = ACTIONS(1102), - [anon_sym_COMMA] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_GT_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1100), - [anon_sym_PIPE_EQ] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_RBRACK] = ACTIONS(1102), - [anon_sym_AMP_EQ] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_EQ] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_COLON] = ACTIONS(1102), - [anon_sym_STAR_EQ] = ACTIONS(1102), - [anon_sym_EQ_EQ] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_SLASH_EQ] = ACTIONS(1102), - [anon_sym_BANG_EQ] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_DOT] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - }, - [203] = { - [anon_sym_PERCENT] = ACTIONS(1104), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1106), - [anon_sym_DASH_EQ] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_LT_EQ] = ACTIONS(1106), - [anon_sym_CARET] = ACTIONS(1104), - [anon_sym_DASH_GT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_EQ] = ACTIONS(1106), - [anon_sym_LT_LT_EQ] = ACTIONS(1106), - [anon_sym_QMARK] = ACTIONS(1106), - [anon_sym_GT_EQ] = ACTIONS(1106), - [anon_sym_CARET_EQ] = ACTIONS(1106), + [aux_sym__declaration_specifiers_repeat1] = STATE(107), + [sym_attribute_specifier] = STATE(107), + [sym_type_qualifier] = STATE(107), + [sym_storage_class_specifier] = STATE(107), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(1106), [anon_sym_COMMA] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_GT_GT_EQ] = ACTIONS(1106), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_PIPE_EQ] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(1106), - [anon_sym_RBRACK] = ACTIONS(1106), - [anon_sym_AMP_EQ] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_EQ] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(13), [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1106), [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_STAR_EQ] = ACTIONS(1106), - [anon_sym_EQ_EQ] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_SLASH_EQ] = ACTIONS(1106), - [anon_sym_BANG_EQ] = ACTIONS(1106), [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_GT] = ACTIONS(1104), - [anon_sym_PIPE] = ACTIONS(1104), - [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(1106), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(1106), }, - [204] = { - [aux_sym_for_statement_repeat1] = STATE(289), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), + [197] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(1108), + [anon_sym_PERCENT_EQ] = ACTIONS(1110), + [anon_sym_DASH_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_LT_EQ] = ACTIONS(1110), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1110), + [anon_sym_LT_LT_EQ] = ACTIONS(1110), + [anon_sym_QMARK] = ACTIONS(1110), + [anon_sym_GT_EQ] = ACTIONS(1110), + [anon_sym_CARET_EQ] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1110), + [anon_sym_LT_LT] = ACTIONS(1108), + [anon_sym_PIPE_EQ] = ACTIONS(1110), [anon_sym_RPAREN] = ACTIONS(1110), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_RBRACK] = ACTIONS(1110), + [anon_sym_AMP_EQ] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_AMP_AMP] = ACTIONS(1110), + [anon_sym_EQ] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_STAR_EQ] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1108), + [anon_sym_SLASH_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(340), }, - [205] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(1112), - [anon_sym_LT_EQ] = ACTIONS(1114), + [198] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), [anon_sym_AMP] = ACTIONS(1112), [anon_sym_CARET] = ACTIONS(1114), [anon_sym_AMP_AMP] = ACTIONS(1114), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(1114), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), [anon_sym_COLON] = ACTIONS(1114), [anon_sym_RBRACE] = ACTIONS(1114), + [sym_comment] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(1114), [anon_sym_EQ_EQ] = ACTIONS(1114), - [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(310), [anon_sym_PIPE_PIPE] = ACTIONS(1114), [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), [anon_sym_BANG_EQ] = ACTIONS(1114), [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_GT] = ACTIONS(1112), - [anon_sym_LT_LT] = ACTIONS(1114), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), [anon_sym_PIPE] = ACTIONS(1112), [anon_sym_RPAREN] = ACTIONS(1114), - [anon_sym_DOT] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(318), [anon_sym_RBRACK] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [199] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_LT_EQ] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_CARET] = ACTIONS(1118), + [anon_sym_AMP_AMP] = ACTIONS(1118), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1118), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_GT_EQ] = ACTIONS(1118), + [anon_sym_PIPE_PIPE] = ACTIONS(1118), + [anon_sym_COMMA] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_GT] = ACTIONS(1116), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(1116), + [anon_sym_RPAREN] = ACTIONS(1118), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [200] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [201] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [202] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(1124), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [203] = { + [anon_sym_RPAREN] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1124), + }, + [204] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_LT_EQ] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_CARET] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1110), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_GT_EQ] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_LT_LT] = ACTIONS(1110), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_RPAREN] = ACTIONS(1110), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [205] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_CARET] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [206] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_QMARK] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_COMMA] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [207] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_COLON] = ACTIONS(1116), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [208] = { - [sym_parameter_list] = STATE(218), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_EQ] = ACTIONS(1118), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1118), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_RPAREN] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_PERCENT_EQ] = ACTIONS(1132), + [anon_sym_DASH_EQ] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_LT_EQ] = ACTIONS(1132), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1132), + [anon_sym_SLASH] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1132), + [anon_sym_LT_LT_EQ] = ACTIONS(1132), + [anon_sym_QMARK] = ACTIONS(1132), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_CARET_EQ] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1132), + [anon_sym_GT_GT_EQ] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_PIPE_EQ] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_RBRACK] = ACTIONS(1132), + [anon_sym_AMP_EQ] = ACTIONS(1132), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1132), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_LPAREN2] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_COLON] = ACTIONS(1132), + [anon_sym_STAR_EQ] = ACTIONS(1132), + [anon_sym_EQ_EQ] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_SLASH_EQ] = ACTIONS(1132), + [anon_sym_BANG_EQ] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1132), }, [209] = { - [sym_function_declarator] = STATE(291), - [sym_type_qualifier] = STATE(147), - [sym_pointer_declarator] = STATE(291), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym__declarator] = STATE(291), - [sym_array_declarator] = STATE(291), - [sym_identifier] = ACTIONS(1120), + [anon_sym_PERCENT] = ACTIONS(1134), + [anon_sym_PERCENT_EQ] = ACTIONS(1136), + [anon_sym_DASH_EQ] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_LT_EQ] = ACTIONS(1136), + [anon_sym_CARET] = ACTIONS(1134), + [anon_sym_DASH_GT] = ACTIONS(1136), + [anon_sym_SLASH] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1136), + [anon_sym_LT_LT_EQ] = ACTIONS(1136), + [anon_sym_QMARK] = ACTIONS(1136), + [anon_sym_GT_EQ] = ACTIONS(1136), + [anon_sym_CARET_EQ] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_GT_GT_EQ] = ACTIONS(1136), + [anon_sym_LT_LT] = 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_AMP] = ACTIONS(1134), + [anon_sym_AMP_AMP] = ACTIONS(1136), + [anon_sym_EQ] = ACTIONS(1134), + [anon_sym_LPAREN2] = ACTIONS(1136), + [anon_sym_GT_GT] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_COLON] = ACTIONS(1136), + [anon_sym_STAR_EQ] = ACTIONS(1136), + [anon_sym_EQ_EQ] = ACTIONS(1136), + [anon_sym_PIPE_PIPE] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_SLASH_EQ] = ACTIONS(1136), + [anon_sym_BANG_EQ] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_PIPE] = ACTIONS(1134), + [anon_sym_DOT] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1136), + }, + [210] = { + [aux_sym_for_statement_repeat1] = STATE(297), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [211] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_LT_EQ] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1142), + [anon_sym_CARET] = ACTIONS(1144), + [anon_sym_AMP_AMP] = ACTIONS(1144), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(1144), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1144), + [anon_sym_EQ_EQ] = ACTIONS(1144), + [anon_sym_GT_EQ] = ACTIONS(1144), + [anon_sym_PIPE_PIPE] = ACTIONS(1144), + [anon_sym_COMMA] = ACTIONS(1144), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_GT] = ACTIONS(1142), + [anon_sym_LT_LT] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(1142), + [anon_sym_RPAREN] = ACTIONS(1144), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [212] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(1128), + [anon_sym_RBRACE] = ACTIONS(1128), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [213] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_COLON] = ACTIONS(1146), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [214] = { + [sym_parameter_list] = STATE(224), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_EQ] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(808), + }, + [215] = { + [sym_function_declarator] = STATE(299), + [sym_type_qualifier] = STATE(152), + [sym_pointer_declarator] = STATE(299), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym__declarator] = STATE(299), + [sym_array_declarator] = STATE(299), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(334), + [anon_sym_LPAREN2] = ACTIONS(344), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1150), [anon_sym_volatile] = ACTIONS(13), [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(342), + [sym_comment] = ACTIONS(3), }, - [210] = { - [sym_parameter_list] = STATE(218), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_LPAREN2] = ACTIONS(787), + [216] = { + [sym_parameter_list] = STATE(224), + [anon_sym_RPAREN] = ACTIONS(1152), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(808), }, - [211] = { - [sym_concatenated_string] = STATE(294), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(294), - [sym_math_expression] = STATE(294), - [sym_cast_expression] = STATE(294), - [sym_field_expression] = STATE(35), - [sym_conditional_expression] = STATE(294), - [sym_assignment_expression] = STATE(294), - [sym_relational_expression] = STATE(294), - [sym_shift_expression] = STATE(294), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_initializer_list] = STATE(293), - [sym_string_literal] = STATE(38), - [sym__expression] = STATE(294), - [sym_bitwise_expression] = STATE(294), - [sym_equality_expression] = STATE(294), - [sym_sizeof_expression] = STATE(294), - [sym_compound_literal_expression] = STATE(294), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(294), - [anon_sym_LBRACE] = ACTIONS(900), - [sym_null] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), + [217] = { + [sym_concatenated_string] = STATE(302), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(302), + [sym_math_expression] = STATE(302), + [sym_cast_expression] = STATE(302), + [sym_field_expression] = STATE(36), + [sym_conditional_expression] = STATE(302), + [sym_assignment_expression] = STATE(302), + [sym_relational_expression] = STATE(302), + [sym_shift_expression] = STATE(302), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_initializer_list] = STATE(301), + [sym_string_literal] = STATE(39), + [sym__expression] = STATE(302), + [sym_bitwise_expression] = STATE(302), + [sym_equality_expression] = STATE(302), + [sym_sizeof_expression] = STATE(302), + [sym_compound_literal_expression] = STATE(302), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(302), + [anon_sym_LBRACE] = ACTIONS(922), + [sym_false] = ACTIONS(1154), + [sym_identifier] = ACTIONS(135), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(1124), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1124), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_true] = ACTIONS(1154), + [sym_null] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [212] = { - [anon_sym_case] = ACTIONS(1128), - [sym_null] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_default] = ACTIONS(1128), - [anon_sym__Atomic] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = 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), - [anon_sym_TILDE] = ACTIONS(1130), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_RBRACE] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [sym_identifier] = 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_auto] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), + [218] = { + [anon_sym_case] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_default] = ACTIONS(1158), + [anon_sym__Atomic] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [anon_sym_L] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1160), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [sym_true] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [ts_builtin_sym_end] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1160), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), }, - [213] = { - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_parameter_declaration] = STATE(243), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(246), + [219] = { + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_parameter_declaration] = STATE(250), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym__declaration_specifiers] = STATE(253), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [sym_identifier] = ACTIONS(217), + [anon_sym_short] = ACTIONS(17), + [anon_sym_DOT_DOT_DOT] = ACTIONS(939), [anon_sym_const] = ACTIONS(13), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_static] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), }, - [214] = { - [sym_function_declarator] = STATE(295), - [sym__declarator] = STATE(295), - [sym_init_declarator] = STATE(296), - [sym_pointer_declarator] = STATE(295), - [sym_array_declarator] = STATE(295), - [sym_identifier] = ACTIONS(1132), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), + [220] = { + [sym_function_declarator] = STATE(303), + [sym__declarator] = STATE(303), + [sym_init_declarator] = STATE(304), + [sym_pointer_declarator] = STATE(303), + [sym_array_declarator] = STATE(303), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1162), }, - [215] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(300), - [sym_math_expression] = STATE(300), - [sym_cast_expression] = STATE(300), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(300), - [sym_bitwise_expression] = STATE(300), - [sym_equality_expression] = STATE(300), - [sym_sizeof_expression] = STATE(300), - [sym_compound_literal_expression] = STATE(300), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(300), - [sym_concatenated_string] = STATE(300), - [sym_type_qualifier] = STATE(299), - [aux_sym_type_definition_repeat1] = STATE(299), - [sym_conditional_expression] = STATE(300), - [sym_assignment_expression] = STATE(300), - [sym_relational_expression] = STATE(300), - [sym_shift_expression] = STATE(300), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1134), + [221] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(308), + [sym_math_expression] = STATE(308), + [sym_cast_expression] = STATE(308), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(308), + [sym_bitwise_expression] = STATE(308), + [sym_equality_expression] = STATE(308), + [sym_sizeof_expression] = STATE(308), + [sym_compound_literal_expression] = STATE(308), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(308), + [sym_concatenated_string] = STATE(308), + [sym_type_qualifier] = STATE(307), + [aux_sym_type_definition_repeat1] = STATE(307), + [sym_conditional_expression] = STATE(308), + [sym_assignment_expression] = STATE(308), + [sym_relational_expression] = STATE(308), + [sym_shift_expression] = STATE(308), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1164), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_true] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1166), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1134), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1140), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1164), + [sym_null] = ACTIONS(1164), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [216] = { - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_restrict] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_null] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [anon_sym_goto] = ACTIONS(1144), - [ts_builtin_sym_end] = ACTIONS(1142), - [anon_sym_TILDE] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1144), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_typedef] = ACTIONS(1144), - [anon_sym_DASH_DASH] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1144), - [sym_primitive_type] = ACTIONS(1144), - [sym_true] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1144), - [aux_sym_preproc_include_token1] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_volatile] = ACTIONS(1144), - [anon_sym_register] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1144), - [sym_false] = ACTIONS(1144), - [anon_sym_auto] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1144), - [anon_sym___attribute__] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1144), + [222] = { + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [sym_null] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1172), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1172), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [ts_builtin_sym_end] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [anon_sym__Atomic] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1172), + [sym_number_literal] = ACTIONS(1172), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_L] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), }, - [217] = { - [aux_sym_declaration_repeat1] = STATE(302), - [anon_sym_COMMA] = ACTIONS(789), + [223] = { + [aux_sym_declaration_repeat1] = STATE(310), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(1176), }, - [218] = { - [sym_attribute_specifier] = STATE(303), - [aux_sym_function_declarator_repeat1] = STATE(303), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_EQ] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(1148), - [anon_sym_COMMA] = ACTIONS(1148), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1148), + [224] = { + [sym_attribute_specifier] = STATE(311), + [aux_sym_function_declarator_repeat1] = STATE(311), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_LPAREN2] = ACTIONS(1178), + [anon_sym_COMMA] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1178), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1178), + [anon_sym___attribute__] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1178), }, - [219] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(307), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(307), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(307), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(308), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(308), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(307), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(307), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(307), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(307), - [sym_field_declaration] = STATE(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), + [225] = { + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(315), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(315), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(315), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(316), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(316), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(315), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(315), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(315), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(315), + [sym_field_declaration] = STATE(315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(1160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), + [aux_sym_preproc_if_token2] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [sym_comment] = ACTIONS(3), }, - [220] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(310), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(310), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(310), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(311), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(311), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(310), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(310), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(310), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(310), - [sym_field_declaration] = STATE(310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), + [226] = { + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(318), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(318), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(318), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(319), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(319), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(318), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(318), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(318), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(318), + [sym_field_declaration] = STATE(318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(1166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), + [aux_sym_preproc_if_token2] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - }, - [221] = { - [anon_sym_restrict] = ACTIONS(1168), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_volatile] = ACTIONS(1168), - [anon_sym_register] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_COMMA] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_LPAREN2] = ACTIONS(1170), - [anon_sym_COLON] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym__Atomic] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1170), - [anon_sym_auto] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym___attribute__] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [sym_comment] = ACTIONS(3), }, - [222] = { - [sym__declaration_specifiers] = STATE(132), - [sym_preproc_def] = STATE(222), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(222), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(222), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [sym_preproc_call] = STATE(222), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(222), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(222), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(222), - [sym_field_declaration] = STATE(222), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1175), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1187), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_signed] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1207), - [anon_sym_inline] = ACTIONS(1184), - [anon_sym___attribute__] = ACTIONS(1210), + [227] = { + [anon_sym_restrict] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_volatile] = ACTIONS(1198), + [anon_sym_register] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_COMMA] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(1200), + [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1198), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym___attribute__] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1200), }, - [223] = { - [anon_sym_LPAREN2] = ACTIONS(1213), + [228] = { + [sym__declaration_specifiers] = STATE(136), + [sym_preproc_def] = STATE(228), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(228), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(228), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [sym_preproc_call] = STATE(228), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(228), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(228), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(228), + [sym_field_declaration] = STATE(228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1205), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1217), + [anon_sym_struct] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_signed] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1202), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1240), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1213), - [anon_sym_COLON] = ACTIONS(1213), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1213), }, - [224] = { - [sym_array_field_declarator] = STATE(313), - [sym_type_qualifier] = STATE(312), - [aux_sym_type_definition_repeat1] = STATE(312), - [sym_function_field_declarator] = STATE(313), - [sym_pointer_field_declarator] = STATE(313), - [sym__field_declarator] = STATE(313), - [sym_identifier] = ACTIONS(1215), + [229] = { + [sym_array_field_declarator] = STATE(321), + [sym_type_qualifier] = STATE(320), + [aux_sym_type_definition_repeat1] = STATE(320), + [sym_function_field_declarator] = STATE(321), + [sym_pointer_field_declarator] = STATE(321), + [sym__field_declarator] = STATE(321), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(811), + [anon_sym_LPAREN2] = ACTIONS(832), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1243), [anon_sym_volatile] = ACTIONS(13), [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(830), + [sym_comment] = ACTIONS(3), }, - [225] = { - [sym_pointer_field_declarator] = STATE(314), - [sym_array_field_declarator] = STATE(314), - [sym_function_field_declarator] = STATE(314), - [sym__field_declarator] = STATE(314), - [sym_identifier] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LPAREN2] = ACTIONS(811), + [230] = { + [sym_pointer_field_declarator] = STATE(322), + [sym_array_field_declarator] = STATE(322), + [sym_function_field_declarator] = STATE(322), + [sym__field_declarator] = STATE(322), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_LPAREN2] = ACTIONS(832), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(834), }, - [226] = { - [sym_concatenated_string] = STATE(315), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(315), - [sym_math_expression] = STATE(315), - [sym_cast_expression] = STATE(315), - [sym_field_expression] = STATE(35), - [sym_conditional_expression] = STATE(315), - [sym_assignment_expression] = STATE(315), - [sym_relational_expression] = STATE(315), - [sym_shift_expression] = STATE(315), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym__expression] = STATE(315), - [sym_bitwise_expression] = STATE(315), - [sym_equality_expression] = STATE(315), - [sym_sizeof_expression] = STATE(315), - [sym_compound_literal_expression] = STATE(315), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(315), - [sym_null] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1219), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), + [231] = { + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_COLON] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + }, + [232] = { + [sym_concatenated_string] = STATE(323), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(323), + [sym_math_expression] = STATE(323), + [sym_cast_expression] = STATE(323), + [sym_field_expression] = STATE(36), + [sym_conditional_expression] = STATE(323), + [sym_assignment_expression] = STATE(323), + [sym_relational_expression] = STATE(323), + [sym_shift_expression] = STATE(323), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym__expression] = STATE(323), + [sym_bitwise_expression] = STATE(323), + [sym_equality_expression] = STATE(323), + [sym_sizeof_expression] = STATE(323), + [sym_compound_literal_expression] = STATE(323), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(323), + [sym_false] = ACTIONS(1247), + [sym_identifier] = ACTIONS(135), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(1217), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_true] = ACTIONS(1247), + [sym_null] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [227] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1221), - [sym_preproc_directive] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1221), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [sym_identifier] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), + [233] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_signed] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1253), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), }, - [228] = { + [234] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1255), }, - [229] = { - [aux_sym_field_declaration_repeat1] = STATE(319), - [sym_bitfield_clause] = STATE(320), - [sym_parameter_list] = STATE(321), - [anon_sym_LBRACK] = ACTIONS(1227), + [235] = { + [aux_sym_field_declaration_repeat1] = STATE(327), + [sym_bitfield_clause] = STATE(328), + [sym_parameter_list] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(1257), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(1255), }, - [230] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(238), - [sym_math_expression] = STATE(238), - [sym_cast_expression] = STATE(238), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(238), - [sym_bitwise_expression] = STATE(238), - [sym_equality_expression] = STATE(238), - [sym_sizeof_expression] = STATE(238), - [sym_compound_literal_expression] = STATE(238), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(238), - [sym_concatenated_string] = STATE(238), - [sym_conditional_expression] = STATE(238), - [sym_assignment_expression] = STATE(238), - [sym_relational_expression] = STATE(238), - [sym_shift_expression] = STATE(238), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_initializer_list] = STATE(237), - [sym_string_literal] = STATE(38), - [anon_sym_PERCENT] = ACTIONS(1231), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1231), - [anon_sym_CARET] = ACTIONS(1231), - [anon_sym_DASH_GT] = ACTIONS(1231), - [anon_sym_SLASH] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(1231), - [anon_sym_GT_EQ] = ACTIONS(1231), - [anon_sym_COMMA] = ACTIONS(1231), - [sym_number_literal] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_LT_LT] = ACTIONS(1231), - [anon_sym_RPAREN] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(900), + [236] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(245), + [sym_math_expression] = STATE(245), + [sym_cast_expression] = STATE(245), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(245), + [sym_bitwise_expression] = STATE(245), + [sym_equality_expression] = STATE(245), + [sym_sizeof_expression] = STATE(245), + [sym_compound_literal_expression] = STATE(245), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(245), + [sym_concatenated_string] = STATE(245), + [sym_conditional_expression] = STATE(245), + [sym_assignment_expression] = STATE(245), + [sym_relational_expression] = STATE(245), + [sym_shift_expression] = STATE(245), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_initializer_list] = STATE(244), + [sym_string_literal] = STATE(39), + [anon_sym_PERCENT] = ACTIONS(1261), + [sym_false] = ACTIONS(924), + [sym_identifier] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [sym_number_literal] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(922), [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(1231), - [anon_sym_RBRACE] = ACTIONS(1231), - [anon_sym_COLON] = ACTIONS(1231), - [sym_true] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [sym_false] = ACTIONS(902), - [sym_identifier] = ACTIONS(135), - [anon_sym_BANG_EQ] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(1231), + [sym_true] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(1261), }, - [231] = { - [anon_sym_case] = ACTIONS(1239), - [sym_null] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1239), - [sym_true] = ACTIONS(1239), - [sym_primitive_type] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_switch] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [sym_identifier] = ACTIONS(1239), - [ts_builtin_sym_end] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), + [237] = { + [anon_sym_restrict] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_volatile] = ACTIONS(1269), + [anon_sym_register] = ACTIONS(1269), + [anon_sym_extern] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_COMMA] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(1271), + [anon_sym_COLON] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1269), + [anon_sym___attribute__] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1271), }, - [232] = { - [sym_continue_statement] = STATE(644), - [sym_preproc_function_def] = STATE(644), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(905), - [sym_declaration] = STATE(644), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(644), - [sym_for_statement] = STATE(644), - [sym_comma_expression] = STATE(904), - [sym_equality_expression] = STATE(905), - [sym_type_definition] = STATE(644), - [sym_sizeof_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(905), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(644), - [sym_return_statement] = STATE(644), - [sym_preproc_include] = STATE(644), - [sym_conditional_expression] = STATE(905), - [sym_preproc_ifdef] = STATE(644), - [sym_relational_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(644), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(644), - [sym_while_statement] = STATE(644), - [sym_preproc_def] = STATE(644), - [sym_goto_statement] = STATE(644), - [sym_logical_expression] = STATE(905), - [sym_function_definition] = STATE(644), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(644), - [sym_expression_statement] = STATE(644), - [sym_do_statement] = STATE(644), - [sym__expression] = STATE(905), - [sym_preproc_call] = STATE(644), - [sym_bitwise_expression] = STATE(905), - [sym__declaration_specifiers] = STATE(906), - [sym_compound_literal_expression] = STATE(905), - [sym_char_literal] = STATE(905), - [sym__empty_declaration] = STATE(644), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(644), - [sym_preproc_if] = STATE(644), - [sym_assignment_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_linkage_specification] = STATE(644), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(17), - [sym_null] = ACTIONS(844), + [238] = { + [anon_sym_case] = ACTIONS(1273), + [sym_false] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1273), + [anon_sym__Atomic] = ACTIONS(1273), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [anon_sym_L] = ACTIONS(1273), + [anon_sym___attribute__] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_short] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1273), + [sym_true] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [sym_null] = ACTIONS(1273), + [ts_builtin_sym_end] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [anon_sym_auto] = ACTIONS(1273), + [anon_sym_inline] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + }, + [239] = { + [sym_continue_statement] = STATE(331), + [sym_preproc_function_def] = STATE(331), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(330), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(331), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(331), + [sym_for_statement] = STATE(331), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(331), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(331), + [sym_return_statement] = STATE(331), + [sym_preproc_include] = STATE(331), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(331), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(331), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(331), + [sym_while_statement] = STATE(331), + [sym_preproc_def] = STATE(331), + [sym_goto_statement] = STATE(331), + [sym_preproc_else] = STATE(330), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(331), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(331), + [sym_expression_statement] = STATE(331), + [sym_do_statement] = STATE(331), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(331), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(331), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(331), + [sym_preproc_if] = STATE(331), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(331), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1243), - [sym_preproc_directive] = ACTIONS(852), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(854), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(1277), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(856), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [aux_sym_preproc_ifdef_token1] = ACTIONS(862), - [aux_sym_preproc_include_token1] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(866), - [sym_number_literal] = ACTIONS(868), - [anon_sym_if] = ACTIONS(870), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(884), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, - [233] = { - [sym_continue_statement] = STATE(323), - [sym_preproc_function_def] = STATE(323), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(322), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(323), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(323), - [sym_for_statement] = STATE(323), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(323), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(323), - [sym_return_statement] = STATE(323), - [sym_preproc_include] = STATE(323), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(323), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(323), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(323), - [sym_while_statement] = STATE(323), - [sym_preproc_def] = STATE(323), - [sym_goto_statement] = STATE(323), - [sym_preproc_else] = STATE(322), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(323), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(323), - [sym_expression_statement] = STATE(323), - [sym_do_statement] = STATE(323), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(323), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(323), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(323), - [sym_preproc_if] = STATE(323), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(323), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [240] = { + [sym_continue_statement] = STATE(657), + [sym_preproc_function_def] = STATE(657), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(923), + [sym_declaration] = STATE(657), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(657), + [sym_for_statement] = STATE(657), + [sym_comma_expression] = STATE(922), + [sym_equality_expression] = STATE(923), + [sym_type_definition] = STATE(657), + [sym_sizeof_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(923), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(657), + [sym_return_statement] = STATE(657), + [sym_preproc_include] = STATE(657), + [sym_conditional_expression] = STATE(923), + [sym_preproc_ifdef] = STATE(657), + [sym_relational_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(657), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(657), + [sym_while_statement] = STATE(657), + [sym_preproc_def] = STATE(657), + [sym_goto_statement] = STATE(657), + [sym_logical_expression] = STATE(923), + [sym_function_definition] = STATE(657), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(657), + [sym_expression_statement] = STATE(657), + [sym_do_statement] = STATE(657), + [sym__expression] = STATE(923), + [sym_preproc_call] = STATE(657), + [sym_bitwise_expression] = STATE(923), + [sym__declaration_specifiers] = STATE(924), + [sym_compound_literal_expression] = STATE(923), + [sym_char_literal] = STATE(923), + [sym__empty_declaration] = STATE(657), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(657), + [sym_preproc_if] = STATE(657), + [sym_assignment_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_linkage_specification] = STATE(657), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(870), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_inline] = ACTIONS(19), + [sym_false] = ACTIONS(872), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(874), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(35), + [aux_sym_preproc_if_token2] = ACTIONS(1279), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(882), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), - }, - [234] = { - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_null] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1249), - [ts_builtin_sym_end] = ACTIONS(1247), - [anon_sym_TILDE] = ACTIONS(1247), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1247), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), - }, - [235] = { - [aux_sym_preproc_if_token2] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - }, - [236] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(331), - [sym_math_expression] = STATE(331), - [sym_cast_expression] = STATE(331), - [sym_field_expression] = STATE(35), - [sym_subscript_designator] = STATE(329), - [sym_field_designator] = STATE(329), - [sym__expression] = STATE(331), - [sym_bitwise_expression] = STATE(331), - [sym_equality_expression] = STATE(331), - [sym_sizeof_expression] = STATE(331), - [sym_compound_literal_expression] = STATE(331), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(331), - [sym_concatenated_string] = STATE(331), - [aux_sym_initializer_pair_repeat1] = STATE(329), - [sym_conditional_expression] = STATE(331), - [sym_assignment_expression] = STATE(331), - [sym_relational_expression] = STATE(331), - [sym_shift_expression] = STATE(331), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_initializer_list] = STATE(330), - [sym_initializer_pair] = STATE(330), - [sym_string_literal] = STATE(38), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(1253), - [sym_null] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(884), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(886), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1257), - [sym_true] = ACTIONS(1255), - [anon_sym_COMMA] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [aux_sym_preproc_ifdef_token1] = ACTIONS(892), + [aux_sym_preproc_include_token1] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(896), + [sym_number_literal] = ACTIONS(898), + [anon_sym_if] = ACTIONS(900), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(872), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1255), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [237] = { - [anon_sym_PERCENT] = ACTIONS(1265), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1267), - [anon_sym_DASH_EQ] = ACTIONS(1267), - [anon_sym_LT] = ACTIONS(1265), - [anon_sym_LT_EQ] = ACTIONS(1267), - [anon_sym_CARET] = ACTIONS(1265), - [anon_sym_DASH_GT] = ACTIONS(1267), - [anon_sym_SLASH] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1267), - [anon_sym_PLUS_EQ] = ACTIONS(1267), - [anon_sym_LT_LT_EQ] = ACTIONS(1267), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_GT_EQ] = ACTIONS(1267), - [anon_sym_CARET_EQ] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(1267), - [anon_sym_PLUS_PLUS] = ACTIONS(1267), - [anon_sym_GT_GT_EQ] = ACTIONS(1267), - [anon_sym_LT_LT] = ACTIONS(1265), - [anon_sym_PIPE_EQ] = ACTIONS(1267), - [anon_sym_RPAREN] = ACTIONS(1267), - [anon_sym_RBRACK] = ACTIONS(1267), - [anon_sym_AMP_EQ] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_AMP_AMP] = ACTIONS(1267), - [anon_sym_EQ] = ACTIONS(1265), - [anon_sym_LPAREN2] = ACTIONS(1267), - [anon_sym_GT_GT] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1267), - [anon_sym_COLON] = ACTIONS(1267), - [anon_sym_STAR_EQ] = ACTIONS(1267), - [anon_sym_EQ_EQ] = ACTIONS(1267), - [anon_sym_PIPE_PIPE] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_SLASH_EQ] = ACTIONS(1267), - [anon_sym_BANG_EQ] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym_GT] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1267), - }, - [238] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1271), - [anon_sym_DASH_EQ] = ACTIONS(1271), - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_LT_EQ] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1269), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1271), - [anon_sym_LT_LT_EQ] = ACTIONS(1271), - [anon_sym_QMARK] = ACTIONS(1271), - [anon_sym_GT_EQ] = ACTIONS(1271), - [anon_sym_CARET_EQ] = ACTIONS(1271), - [anon_sym_COMMA] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1271), - [anon_sym_LT_LT] = ACTIONS(1269), - [anon_sym_PIPE_EQ] = ACTIONS(1271), - [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_RBRACK] = ACTIONS(1271), - [anon_sym_AMP_EQ] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1271), - [anon_sym_EQ] = ACTIONS(1269), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1271), - [anon_sym_COLON] = ACTIONS(1271), - [anon_sym_STAR_EQ] = ACTIONS(1271), - [anon_sym_EQ_EQ] = ACTIONS(1271), - [anon_sym_PIPE_PIPE] = ACTIONS(1271), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_SLASH_EQ] = ACTIONS(1271), - [anon_sym_BANG_EQ] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_GT] = ACTIONS(1269), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [239] = { - [sym_parameter_list] = STATE(252), - [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(931), - }, - [240] = { - [sym_abstract_pointer_declarator] = STATE(332), - [sym_abstract_array_declarator] = STATE(332), - [sym_abstract_function_declarator] = STATE(332), - [sym__abstract_declarator] = STATE(332), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_parameter_list] = STATE(152), - [anon_sym_const] = ACTIONS(454), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_restrict] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(454), - [anon_sym__Atomic] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(892), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_L] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(83), }, [241] = { - [sym_parameter_list] = STATE(252), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_LPAREN2] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [sym_null] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [sym_identifier] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1281), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1281), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [ts_builtin_sym_end] = ACTIONS(1281), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym__Atomic] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1281), + [sym_number_literal] = ACTIONS(1281), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_L] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), }, [242] = { - [sym_abstract_pointer_declarator] = STATE(333), - [sym_abstract_array_declarator] = STATE(333), - [sym_abstract_function_declarator] = STATE(333), - [sym__abstract_declarator] = STATE(333), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_parameter_list] = STATE(152), - [anon_sym_const] = ACTIONS(454), - [anon_sym_LPAREN2] = ACTIONS(456), - [anon_sym_restrict] = ACTIONS(454), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(454), - [anon_sym__Atomic] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_LBRACK] = ACTIONS(462), + [aux_sym_preproc_if_token2] = ACTIONS(1285), + [sym_comment] = ACTIONS(3), }, [243] = { - [aux_sym_parameter_list_repeat1] = STATE(336), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1279), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(339), + [sym_math_expression] = STATE(339), + [sym_cast_expression] = STATE(339), + [sym_field_expression] = STATE(36), + [sym_subscript_designator] = STATE(337), + [sym_field_designator] = STATE(337), + [sym__expression] = STATE(339), + [sym_bitwise_expression] = STATE(339), + [sym_equality_expression] = STATE(339), + [sym_sizeof_expression] = STATE(339), + [sym_compound_literal_expression] = STATE(339), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(339), + [sym_concatenated_string] = STATE(339), + [aux_sym_initializer_pair_repeat1] = STATE(337), + [sym_conditional_expression] = STATE(339), + [sym_assignment_expression] = STATE(339), + [sym_relational_expression] = STATE(339), + [sym_shift_expression] = STATE(339), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_initializer_list] = STATE(338), + [sym_initializer_pair] = STATE(338), + [sym_string_literal] = STATE(39), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(1287), + [sym_false] = ACTIONS(1289), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1291), [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1289), + [sym_null] = ACTIONS(1289), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [244] = { - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_COLON] = ACTIONS(1281), - [anon_sym_RPAREN] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1299), + [anon_sym_PERCENT_EQ] = ACTIONS(1301), + [anon_sym_DASH_EQ] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_LT_EQ] = ACTIONS(1301), + [anon_sym_CARET] = ACTIONS(1299), + [anon_sym_DASH_GT] = ACTIONS(1301), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1301), + [anon_sym_LT_LT_EQ] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1301), + [anon_sym_GT_EQ] = ACTIONS(1301), + [anon_sym_CARET_EQ] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_GT_GT_EQ] = ACTIONS(1301), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_PIPE_EQ] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_AMP_EQ] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_GT_GT] = ACTIONS(1299), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(1301), + [anon_sym_STAR_EQ] = ACTIONS(1301), + [anon_sym_EQ_EQ] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_SLASH_EQ] = ACTIONS(1301), + [anon_sym_BANG_EQ] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1301), }, [245] = { - [sym_parameter_list] = STATE(252), - [anon_sym_RPAREN] = ACTIONS(1283), - [anon_sym_LPAREN2] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(931), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(1303), + [anon_sym_PERCENT_EQ] = ACTIONS(1305), + [anon_sym_DASH_EQ] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym_CARET] = ACTIONS(1303), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1305), + [anon_sym_LT_LT_EQ] = ACTIONS(1305), + [anon_sym_QMARK] = ACTIONS(1305), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_CARET_EQ] = ACTIONS(1305), + [anon_sym_COMMA] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1305), + [anon_sym_LT_LT] = ACTIONS(1303), + [anon_sym_PIPE_EQ] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1305), + [anon_sym_RBRACK] = ACTIONS(1305), + [anon_sym_AMP_EQ] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_AMP_AMP] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1305), + [anon_sym_STAR_EQ] = ACTIONS(1305), + [anon_sym_EQ_EQ] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_SLASH_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(340), }, [246] = { - [sym_function_declarator] = STATE(341), - [sym__abstract_declarator] = STATE(340), - [sym_pointer_declarator] = STATE(341), - [sym_parameter_list] = STATE(152), - [sym__declarator] = STATE(341), - [sym_abstract_array_declarator] = STATE(340), - [sym_abstract_function_declarator] = STATE(340), - [sym_array_declarator] = STATE(341), - [sym_abstract_pointer_declarator] = STATE(340), - [sym_identifier] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_COMMA] = ACTIONS(1287), + [sym_parameter_list] = STATE(259), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(953), }, [247] = { - [sym_pointer_expression] = STATE(60), - [sym_logical_expression] = STATE(60), - [sym_math_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym__expression] = STATE(60), - [sym_bitwise_expression] = STATE(60), - [sym_equality_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_char_literal] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_relational_expression] = STATE(60), - [sym_shift_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [sym_false] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [sym_abstract_pointer_declarator] = STATE(340), + [sym_abstract_array_declarator] = STATE(340), + [sym_abstract_function_declarator] = STATE(340), + [sym__abstract_declarator] = STATE(340), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_parameter_list] = STATE(157), + [anon_sym_const] = ACTIONS(464), + [anon_sym_LPAREN2] = ACTIONS(466), + [anon_sym_restrict] = ACTIONS(464), + [anon_sym_volatile] = ACTIONS(464), + [anon_sym__Atomic] = ACTIONS(464), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(470), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(472), }, [248] = { - [anon_sym_RPAREN] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1295), + [sym_parameter_list] = STATE(259), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1295), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(953), }, [249] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(344), - [sym_math_expression] = STATE(344), - [sym_cast_expression] = STATE(344), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(344), - [sym_bitwise_expression] = STATE(344), - [sym_equality_expression] = STATE(344), - [sym_sizeof_expression] = STATE(344), - [sym_compound_literal_expression] = STATE(344), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(344), - [sym_concatenated_string] = STATE(344), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_conditional_expression] = STATE(344), - [sym_assignment_expression] = STATE(344), - [sym_relational_expression] = STATE(344), - [sym_shift_expression] = STATE(344), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(13), + [sym_abstract_pointer_declarator] = STATE(341), + [sym_abstract_array_declarator] = STATE(341), + [sym_abstract_function_declarator] = STATE(341), + [sym__abstract_declarator] = STATE(341), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_parameter_list] = STATE(157), + [anon_sym_const] = ACTIONS(464), + [anon_sym_LPAREN2] = ACTIONS(466), + [anon_sym_restrict] = ACTIONS(464), + [anon_sym_volatile] = ACTIONS(464), + [anon_sym__Atomic] = ACTIONS(464), + [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(470), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_true] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1297), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(472), }, [250] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_parameter_list_repeat1] = STATE(344), + [anon_sym_RPAREN] = ACTIONS(1311), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1313), }, [251] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(344), - [sym_math_expression] = STATE(344), - [sym_cast_expression] = STATE(344), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(344), - [sym_bitwise_expression] = STATE(344), - [sym_equality_expression] = STATE(344), - [sym_sizeof_expression] = STATE(344), - [sym_compound_literal_expression] = STATE(344), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(344), - [sym_concatenated_string] = STATE(344), - [sym_type_qualifier] = STATE(345), - [aux_sym_type_definition_repeat1] = STATE(345), - [sym_conditional_expression] = STATE(344), - [sym_assignment_expression] = STATE(344), - [sym_relational_expression] = STATE(344), - [sym_shift_expression] = STATE(344), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1315), + [anon_sym_COLON] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_RPAREN] = ACTIONS(1315), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_true] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1297), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1315), }, [252] = { - [anon_sym_RPAREN] = ACTIONS(1303), - [anon_sym_LPAREN2] = ACTIONS(1303), + [sym_parameter_list] = STATE(259), + [anon_sym_RPAREN] = ACTIONS(1317), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(953), }, [253] = { - [aux_sym_type_definition_repeat2] = STATE(347), - [sym_parameter_list] = STATE(261), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(937), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(941), + [sym_function_declarator] = STATE(349), + [sym__abstract_declarator] = STATE(348), + [sym_pointer_declarator] = STATE(349), + [sym_parameter_list] = STATE(157), + [sym__declarator] = STATE(349), + [sym_abstract_array_declarator] = STATE(348), + [sym_abstract_function_declarator] = STATE(348), + [sym_array_declarator] = STATE(349), + [sym_abstract_pointer_declarator] = STATE(348), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_COMMA] = ACTIONS(1319), + [sym_identifier] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(472), }, [254] = { - [sym_array_type_declarator] = STATE(348), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_function_type_declarator] = STATE(348), - [sym_pointer_type_declarator] = STATE(348), - [sym__type_declarator] = STATE(348), - [sym_identifier] = ACTIONS(935), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(473), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(471), + [sym_pointer_expression] = STATE(62), + [sym_logical_expression] = STATE(62), + [sym_math_expression] = STATE(62), + [sym_cast_expression] = STATE(62), + [sym_field_expression] = STATE(62), + [sym__expression] = STATE(62), + [sym_bitwise_expression] = STATE(62), + [sym_equality_expression] = STATE(62), + [sym_sizeof_expression] = STATE(62), + [sym_compound_literal_expression] = STATE(62), + [sym_parenthesized_expression] = STATE(62), + [sym_char_literal] = STATE(62), + [sym_concatenated_string] = STATE(62), + [sym_conditional_expression] = STATE(62), + [sym_assignment_expression] = STATE(62), + [sym_relational_expression] = STATE(62), + [sym_shift_expression] = STATE(62), + [sym_subscript_expression] = STATE(62), + [sym_call_expression] = STATE(62), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(189), + [sym_identifier] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [255] = { - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1329), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_COMMA] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), }, [256] = { - [sym_parameter_list] = STATE(261), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_LPAREN2] = ACTIONS(787), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(352), + [sym_math_expression] = STATE(352), + [sym_cast_expression] = STATE(352), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(352), + [sym_bitwise_expression] = STATE(352), + [sym_equality_expression] = STATE(352), + [sym_sizeof_expression] = STATE(352), + [sym_compound_literal_expression] = STATE(352), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(352), + [sym_concatenated_string] = STATE(352), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_conditional_expression] = STATE(352), + [sym_assignment_expression] = STATE(352), + [sym_relational_expression] = STATE(352), + [sym_shift_expression] = STATE(352), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1331), + [sym_null] = ACTIONS(1331), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [257] = { - [anon_sym_case] = ACTIONS(1311), - [sym_null] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_default] = ACTIONS(1311), - [anon_sym__Atomic] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1313), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1313), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1311), - [ts_builtin_sym_end] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1313), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [258] = { - [sym_array_type_declarator] = STATE(350), - [sym_pointer_type_declarator] = STATE(350), - [sym_function_type_declarator] = STATE(350), - [sym__type_declarator] = STATE(350), - [sym_identifier] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - }, - [259] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(354), - [sym_math_expression] = STATE(354), - [sym_cast_expression] = STATE(354), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(354), - [sym_bitwise_expression] = STATE(354), - [sym_equality_expression] = STATE(354), - [sym_sizeof_expression] = STATE(354), - [sym_compound_literal_expression] = STATE(354), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(354), - [sym_concatenated_string] = STATE(354), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(352), + [sym_math_expression] = STATE(352), + [sym_cast_expression] = STATE(352), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(352), + [sym_bitwise_expression] = STATE(352), + [sym_equality_expression] = STATE(352), + [sym_sizeof_expression] = STATE(352), + [sym_compound_literal_expression] = STATE(352), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(352), + [sym_concatenated_string] = STATE(352), [sym_type_qualifier] = STATE(353), [aux_sym_type_definition_repeat1] = STATE(353), - [sym_conditional_expression] = STATE(354), - [sym_assignment_expression] = STATE(354), - [sym_relational_expression] = STATE(354), - [sym_shift_expression] = STATE(354), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1315), + [sym_conditional_expression] = STATE(352), + [sym_assignment_expression] = STATE(352), + [sym_relational_expression] = STATE(352), + [sym_shift_expression] = STATE(352), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1331), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_true] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1333), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1315), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1331), + [sym_null] = ACTIONS(1331), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [259] = { + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_LPAREN2] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), }, [260] = { [aux_sym_type_definition_repeat2] = STATE(355), - [anon_sym_COMMA] = ACTIONS(937), + [sym_parameter_list] = STATE(268), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(1339), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(963), }, [261] = { - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_RPAREN] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_COMMA] = ACTIONS(1323), + [sym_array_type_declarator] = STATE(356), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_function_type_declarator] = STATE(356), + [sym_pointer_type_declarator] = STATE(356), + [sym__type_declarator] = STATE(356), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(481), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(957), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(479), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1323), }, [262] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(357), - [sym_math_expression] = STATE(357), - [sym_cast_expression] = STATE(357), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(357), - [sym_bitwise_expression] = STATE(357), - [sym_equality_expression] = STATE(357), - [sym_sizeof_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(357), - [sym_concatenated_string] = STATE(357), - [sym_conditional_expression] = STATE(357), - [sym_assignment_expression] = STATE(357), - [sym_relational_expression] = STATE(357), - [sym_shift_expression] = STATE(357), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1325), + [sym_parameter_list] = STATE(268), + [anon_sym_LBRACK] = ACTIONS(963), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1325), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), }, [263] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [264] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(359), - [sym_math_expression] = STATE(359), - [sym_cast_expression] = STATE(359), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(359), - [sym_bitwise_expression] = STATE(359), - [sym_equality_expression] = STATE(359), - [sym_sizeof_expression] = STATE(359), - [sym_compound_literal_expression] = STATE(359), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(359), - [sym_concatenated_string] = STATE(359), - [sym_conditional_expression] = STATE(359), - [sym_assignment_expression] = STATE(359), - [sym_relational_expression] = STATE(359), - [sym_shift_expression] = STATE(359), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1333), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1333), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [265] = { - [aux_sym_declaration_repeat1] = STATE(217), - [sym_parameter_list] = STATE(218), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(789), + [sym_parameter_list] = STATE(268), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(785), - }, - [266] = { - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_null] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [ts_builtin_sym_end] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1337), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [sym_true] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1337), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(963), }, - [267] = { - [aux_sym_preproc_if_token2] = ACTIONS(1341), + [264] = { + [anon_sym_case] = ACTIONS(1345), + [sym_false] = ACTIONS(1345), + [anon_sym_restrict] = ACTIONS(1345), + [sym_identifier] = ACTIONS(1345), + [anon_sym_goto] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1345), + [anon_sym__Atomic] = ACTIONS(1345), [sym_comment] = ACTIONS(3), - }, - [268] = { - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), + [sym_number_literal] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), + [anon_sym_L] = ACTIONS(1345), + [anon_sym___attribute__] = ACTIONS(1345), [anon_sym_sizeof] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1345), [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), [anon_sym_short] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_null] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1345), [anon_sym_do] = ACTIONS(1345), - [anon_sym_goto] = ACTIONS(1345), - [ts_builtin_sym_end] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1347), [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1347), [aux_sym_preproc_if_token1] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1347), + [anon_sym_RBRACE] = ACTIONS(1347), [sym_primitive_type] = ACTIONS(1345), - [sym_true] = ACTIONS(1345), [anon_sym_for] = ACTIONS(1345), [anon_sym_break] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), [aux_sym_preproc_include_token1] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1347), [anon_sym_static] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), [anon_sym_register] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1347), [anon_sym_if] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), [anon_sym_switch] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1345), + [sym_true] = ACTIONS(1345), [anon_sym_enum] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [sym_null] = ACTIONS(1345), + [ts_builtin_sym_end] = ACTIONS(1347), [anon_sym_return] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), [anon_sym_continue] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1347), [aux_sym_preproc_def_token1] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), [anon_sym_auto] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1343), [anon_sym_inline] = ACTIONS(1345), - [anon_sym___attribute__] = ACTIONS(1345), [anon_sym_DASH] = ACTIONS(1345), }, - [269] = { - [sym_continue_statement] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(482), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(482), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_preproc_include] = STATE(482), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(482), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_preproc_def] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(482), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(482), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(482), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(482), - [sym_preproc_if] = STATE(482), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(482), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(17), - [sym_null] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), + [265] = { + [sym_array_type_declarator] = STATE(358), + [sym_pointer_type_declarator] = STATE(358), + [sym_function_type_declarator] = STATE(358), + [sym__type_declarator] = STATE(358), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(481), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(483), + }, + [266] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(362), + [sym_math_expression] = STATE(362), + [sym_cast_expression] = STATE(362), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(362), + [sym_bitwise_expression] = STATE(362), + [sym_equality_expression] = STATE(362), + [sym_sizeof_expression] = STATE(362), + [sym_compound_literal_expression] = STATE(362), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(362), + [sym_concatenated_string] = STATE(362), + [sym_type_qualifier] = STATE(361), + [aux_sym_type_definition_repeat1] = STATE(361), + [sym_conditional_expression] = STATE(362), + [sym_assignment_expression] = STATE(362), + [sym_relational_expression] = STATE(362), + [sym_shift_expression] = STATE(362), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1349), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(93), - [sym_number_literal] = ACTIONS(91), - [anon_sym_if] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_sizeof] = ACTIONS(81), - }, - [270] = { - [sym_while_statement] = STATE(362), - [sym_continue_statement] = STATE(362), - [sym_goto_statement] = STATE(362), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(362), - [sym_expression_statement] = STATE(362), - [sym_if_statement] = STATE(362), - [sym_do_statement] = STATE(362), - [sym_for_statement] = STATE(362), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(362), - [sym_return_statement] = STATE(362), - [sym_break_statement] = STATE(362), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(362), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(507), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [271] = { - [sym_concatenated_string] = STATE(363), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(363), - [sym_math_expression] = STATE(363), - [sym_cast_expression] = STATE(363), - [sym_field_expression] = STATE(35), - [sym_conditional_expression] = STATE(363), - [sym_assignment_expression] = STATE(363), - [sym_relational_expression] = STATE(363), - [sym_shift_expression] = STATE(363), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym__expression] = STATE(363), - [sym_bitwise_expression] = STATE(363), - [sym_equality_expression] = STATE(363), - [sym_sizeof_expression] = STATE(363), - [sym_compound_literal_expression] = STATE(363), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(363), - [sym_null] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(55), [sym_number_literal] = ACTIONS(1351), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(1349), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(41), [sym_true] = ACTIONS(1349), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_null] = ACTIONS(1349), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [272] = { - [anon_sym_case] = ACTIONS(1353), - [sym_null] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1353), - [anon_sym__Atomic] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_else] = ACTIONS(1353), - [sym_true] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1353), - [ts_builtin_sym_end] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), + [267] = { + [aux_sym_type_definition_repeat2] = STATE(363), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(1339), }, - [273] = { + [268] = { + [anon_sym_LBRACK] = ACTIONS(1357), [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1357), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_COMMA] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1357), }, - [274] = { - [sym_while_statement] = STATE(366), - [sym_continue_statement] = STATE(366), - [sym_goto_statement] = STATE(366), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(366), - [sym_expression_statement] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_do_statement] = STATE(366), - [sym_for_statement] = STATE(366), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(366), - [sym_return_statement] = STATE(366), - [sym_break_statement] = STATE(366), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(366), - [sym_labeled_statement] = STATE(366), - [sym_case_statement] = STATE(366), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_case] = ACTIONS(979), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), + [269] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(365), + [sym_math_expression] = STATE(365), + [sym_cast_expression] = STATE(365), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(365), + [sym_bitwise_expression] = STATE(365), + [sym_equality_expression] = STATE(365), + [sym_sizeof_expression] = STATE(365), + [sym_compound_literal_expression] = STATE(365), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(365), + [sym_concatenated_string] = STATE(365), + [sym_conditional_expression] = STATE(365), + [sym_assignment_expression] = STATE(365), + [sym_relational_expression] = STATE(365), + [sym_shift_expression] = STATE(365), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1359), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_default] = ACTIONS(989), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1359), + [sym_null] = ACTIONS(1359), + [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [275] = { - [sym_concatenated_string] = STATE(367), - [sym_pointer_expression] = STATE(35), + [270] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [271] = { + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(367), [sym_math_expression] = STATE(367), [sym_cast_expression] = STATE(367), - [sym_field_expression] = STATE(35), - [sym_conditional_expression] = STATE(367), - [sym_assignment_expression] = STATE(367), - [sym_relational_expression] = STATE(367), - [sym_shift_expression] = STATE(367), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), + [sym_field_expression] = STATE(36), [sym__expression] = STATE(367), [sym_bitwise_expression] = STATE(367), [sym_equality_expression] = STATE(367), [sym_sizeof_expression] = STATE(367), [sym_compound_literal_expression] = STATE(367), - [sym_parenthesized_expression] = STATE(35), + [sym_parenthesized_expression] = STATE(36), [sym_char_literal] = STATE(367), - [sym_null] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1363), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_concatenated_string] = STATE(367), + [sym_conditional_expression] = STATE(367), + [sym_assignment_expression] = STATE(367), + [sym_relational_expression] = STATE(367), + [sym_shift_expression] = STATE(367), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1367), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(1361), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [276] = { - [anon_sym_restrict] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_volatile] = ACTIONS(1365), - [anon_sym_register] = ACTIONS(1365), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_COLON] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_auto] = ACTIONS(1365), - [anon_sym_inline] = ACTIONS(1365), - [anon_sym___attribute__] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1367), - }, - [277] = { - [sym_enumerator] = STATE(369), - [sym_identifier] = ACTIONS(519), - [anon_sym_RBRACE] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1367), + [sym_null] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [278] = { - [aux_sym_enumerator_list_repeat1] = STATE(371), - [anon_sym_COMMA] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1369), + [272] = { + [aux_sym_declaration_repeat1] = STATE(223), + [sym_parameter_list] = STATE(224), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(814), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(808), }, - [279] = { + [273] = { + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_sizeof] = ACTIONS(1373), + [anon_sym_unsigned] = ACTIONS(1373), [anon_sym_restrict] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [sym_true] = ACTIONS(1373), + [sym_false] = ACTIONS(1373), + [sym_null] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1371), + [sym_preproc_directive] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [aux_sym_preproc_if_token1] = ACTIONS(1373), + [ts_builtin_sym_end] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_LPAREN2] = ACTIONS(1371), + [anon_sym_typedef] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym__Atomic] = ACTIONS(1373), + [sym_primitive_type] = ACTIONS(1373), [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1371), [anon_sym_static] = ACTIONS(1373), [anon_sym_volatile] = ACTIONS(1373), [anon_sym_register] = ACTIONS(1373), [anon_sym_extern] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_COMMA] = ACTIONS(1375), - [sym_identifier] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_LPAREN2] = ACTIONS(1375), - [anon_sym_COLON] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym__Atomic] = ACTIONS(1373), - [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_signed] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1371), + [sym_number_literal] = ACTIONS(1371), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1371), [anon_sym_auto] = ACTIONS(1373), + [anon_sym_L] = ACTIONS(1373), [anon_sym_inline] = ACTIONS(1373), [anon_sym___attribute__] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1373), }, - [280] = { + [274] = { + [aux_sym_preproc_if_token2] = ACTIONS(1375), + [sym_comment] = ACTIONS(3), + }, + [275] = { [anon_sym_LBRACE] = ACTIONS(1377), [anon_sym_union] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(1379), [anon_sym_unsigned] = ACTIONS(1379), [anon_sym_restrict] = ACTIONS(1379), [anon_sym_short] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1377), + [sym_true] = ACTIONS(1379), + [sym_false] = ACTIONS(1379), [sym_null] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1379), [anon_sym_do] = ACTIONS(1379), [anon_sym_goto] = ACTIONS(1379), - [ts_builtin_sym_end] = ACTIONS(1377), + [sym_identifier] = ACTIONS(1379), [anon_sym_TILDE] = ACTIONS(1377), [sym_preproc_directive] = ACTIONS(1379), [anon_sym_AMP] = ACTIONS(1377), [aux_sym_preproc_if_token1] = ACTIONS(1379), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1377), [anon_sym_const] = ACTIONS(1379), [anon_sym_LPAREN2] = ACTIONS(1377), [anon_sym_typedef] = ACTIONS(1379), [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), [anon_sym__Atomic] = ACTIONS(1379), [sym_primitive_type] = ACTIONS(1379), - [sym_true] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), [anon_sym_for] = ACTIONS(1379), [anon_sym_break] = ACTIONS(1379), [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), @@ -16323,7098 +16007,7812 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1377), [sym_number_literal] = ACTIONS(1377), [aux_sym_preproc_def_token1] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), - [anon_sym_auto] = ACTIONS(1379), [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_L] = ACTIONS(1379), [anon_sym_inline] = ACTIONS(1379), [anon_sym___attribute__] = ACTIONS(1379), [anon_sym_DASH] = ACTIONS(1379), }, - [281] = { - [aux_sym_preproc_params_repeat1] = STATE(374), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_RPAREN] = ACTIONS(1383), - [sym_comment] = ACTIONS(3), + [276] = { + [sym_continue_statement] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(491), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(491), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_preproc_include] = STATE(491), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(491), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_preproc_def] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(491), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(491), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(491), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(491), + [sym_preproc_if] = STATE(491), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(491), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(19), + [sym_false] = ACTIONS(85), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(87), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(97), + [sym_number_literal] = ACTIONS(95), + [anon_sym_if] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(85), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_L] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(83), }, - [282] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(1385), - [sym_preproc_arg] = ACTIONS(1387), + [277] = { + [sym_while_statement] = STATE(370), + [sym_continue_statement] = STATE(370), + [sym_goto_statement] = STATE(370), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(370), + [sym_expression_statement] = STATE(370), + [sym_if_statement] = STATE(370), + [sym_do_statement] = STATE(370), + [sym_for_statement] = STATE(370), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(370), + [sym_return_statement] = STATE(370), + [sym_break_statement] = STATE(370), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(370), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(386), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [283] = { + [278] = { + [sym_concatenated_string] = STATE(371), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(371), + [sym_math_expression] = STATE(371), + [sym_cast_expression] = STATE(371), + [sym_field_expression] = STATE(36), + [sym_conditional_expression] = STATE(371), + [sym_assignment_expression] = STATE(371), + [sym_relational_expression] = STATE(371), + [sym_shift_expression] = STATE(371), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym__expression] = STATE(371), + [sym_bitwise_expression] = STATE(371), + [sym_equality_expression] = STATE(371), + [sym_sizeof_expression] = STATE(371), + [sym_compound_literal_expression] = STATE(371), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(371), + [sym_false] = ACTIONS(1383), + [sym_identifier] = ACTIONS(135), + [sym_number_literal] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_true] = ACTIONS(1383), + [sym_null] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [279] = { + [anon_sym_case] = ACTIONS(1387), + [sym_false] = ACTIONS(1387), + [anon_sym_restrict] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1387), + [anon_sym_goto] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_typedef] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1387), + [anon_sym__Atomic] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), + [sym_number_literal] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), + [anon_sym_L] = ACTIONS(1387), + [anon_sym___attribute__] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1387), [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_sizeof] = ACTIONS(1391), - [anon_sym_unsigned] = ACTIONS(1391), - [anon_sym_restrict] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_null] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_goto] = ACTIONS(1391), - [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), [anon_sym_TILDE] = ACTIONS(1389), - [sym_preproc_directive] = ACTIONS(1391), + [sym_preproc_directive] = ACTIONS(1387), [anon_sym_AMP] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1391), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1391), + [aux_sym_preproc_if_token1] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_typedef] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym__Atomic] = ACTIONS(1391), - [sym_primitive_type] = ACTIONS(1391), - [sym_true] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1391), - [aux_sym_preproc_include_token1] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_else] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [aux_sym_preproc_include_token1] = ACTIONS(1387), [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_volatile] = ACTIONS(1391), - [anon_sym_register] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [sym_true] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [sym_null] = ACTIONS(1387), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), [anon_sym_SEMI] = ACTIONS(1389), - [sym_number_literal] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1391), - [sym_false] = ACTIONS(1391), - [anon_sym_auto] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_inline] = ACTIONS(1391), - [anon_sym___attribute__] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), + [aux_sym_preproc_def_token1] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), }, - [284] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(1393), + [280] = { + [anon_sym_COLON] = ACTIONS(1391), + [sym_comment] = ACTIONS(3), }, - [285] = { - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_unsigned] = ACTIONS(1397), - [anon_sym_restrict] = ACTIONS(1397), - [anon_sym_short] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_LPAREN2] = ACTIONS(1395), - [anon_sym_COLON] = ACTIONS(1395), - [anon_sym__Atomic] = ACTIONS(1397), - [sym_primitive_type] = ACTIONS(1397), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_volatile] = ACTIONS(1397), - [anon_sym_register] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_signed] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_long] = ACTIONS(1397), - [sym_identifier] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_auto] = ACTIONS(1397), - [anon_sym_inline] = ACTIONS(1397), - [anon_sym___attribute__] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1395), + [281] = { + [sym_while_statement] = STATE(374), + [sym_continue_statement] = STATE(374), + [sym_goto_statement] = STATE(374), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(374), + [sym_expression_statement] = STATE(374), + [sym_if_statement] = STATE(374), + [sym_do_statement] = STATE(374), + [sym_for_statement] = STATE(374), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(374), + [sym_return_statement] = STATE(374), + [sym_break_statement] = STATE(374), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(374), + [sym_labeled_statement] = STATE(374), + [sym_case_statement] = STATE(374), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [286] = { - [anon_sym_PERCENT] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1401), - [anon_sym_DASH_EQ] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1399), - [anon_sym_DASH_GT] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1401), - [anon_sym_LT_LT_EQ] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_CARET_EQ] = ACTIONS(1401), + [282] = { + [sym_concatenated_string] = STATE(375), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(375), + [sym_math_expression] = STATE(375), + [sym_cast_expression] = STATE(375), + [sym_field_expression] = STATE(36), + [sym_conditional_expression] = STATE(375), + [sym_assignment_expression] = STATE(375), + [sym_relational_expression] = STATE(375), + [sym_shift_expression] = STATE(375), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym__expression] = STATE(375), + [sym_bitwise_expression] = STATE(375), + [sym_equality_expression] = STATE(375), + [sym_sizeof_expression] = STATE(375), + [sym_compound_literal_expression] = STATE(375), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(375), + [sym_false] = ACTIONS(1395), + [sym_identifier] = ACTIONS(135), + [sym_number_literal] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_true] = ACTIONS(1395), + [sym_null] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [283] = { + [anon_sym_restrict] = ACTIONS(1399), + [sym_identifier] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_volatile] = ACTIONS(1399), + [anon_sym_register] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1401), [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_GT_GT_EQ] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1401), - [anon_sym_RPAREN] = ACTIONS(1401), - [anon_sym_RBRACK] = ACTIONS(1401), - [anon_sym_AMP_EQ] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), [anon_sym_LPAREN2] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1401), [anon_sym_COLON] = ACTIONS(1401), - [anon_sym_STAR_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_PIPE_PIPE] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1399), + [anon_sym__Atomic] = ACTIONS(1399), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(1399), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1399), + [anon_sym___attribute__] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(1401), }, - [287] = { - [sym_concatenated_string] = STATE(376), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(376), - [sym_math_expression] = STATE(376), - [sym_cast_expression] = STATE(376), - [sym_field_expression] = STATE(35), - [sym_conditional_expression] = STATE(376), - [sym_assignment_expression] = STATE(376), - [sym_relational_expression] = STATE(376), - [sym_shift_expression] = STATE(376), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym__expression] = STATE(376), - [sym_bitwise_expression] = STATE(376), - [sym_equality_expression] = STATE(376), - [sym_sizeof_expression] = STATE(376), - [sym_compound_literal_expression] = STATE(376), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(376), - [sym_null] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1405), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(1403), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [284] = { + [sym_enumerator] = STATE(377), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(1403), }, - [288] = { - [anon_sym_PERCENT] = ACTIONS(1407), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1409), - [anon_sym_DASH_EQ] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_LT_EQ] = ACTIONS(1409), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_DASH_GT] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_PLUS_EQ] = ACTIONS(1409), - [anon_sym_LT_LT_EQ] = ACTIONS(1409), - [anon_sym_QMARK] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1409), - [anon_sym_CARET_EQ] = ACTIONS(1409), - [anon_sym_COMMA] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_GT_GT_EQ] = ACTIONS(1409), - [anon_sym_LT_LT] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1409), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_RBRACK] = ACTIONS(1409), - [anon_sym_AMP_EQ] = ACTIONS(1409), + [285] = { + [aux_sym_enumerator_list_repeat1] = STATE(379), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1403), + }, + [286] = { + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1409), + [anon_sym_unsigned] = ACTIONS(1409), + [anon_sym_restrict] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [sym_null] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_goto] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1409), [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_EQ] = ACTIONS(1407), - [anon_sym_LPAREN2] = ACTIONS(1409), - [anon_sym_GT_GT] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_COLON] = ACTIONS(1409), - [anon_sym_STAR_EQ] = ACTIONS(1409), - [anon_sym_EQ_EQ] = ACTIONS(1409), - [anon_sym_PIPE_PIPE] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1409), + [ts_builtin_sym_end] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_LPAREN2] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1409), + [sym_primitive_type] = ACTIONS(1409), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), + [aux_sym_preproc_include_token1] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_volatile] = ACTIONS(1409), + [anon_sym_register] = ACTIONS(1409), + [anon_sym_extern] = ACTIONS(1409), [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1409), - [anon_sym_BANG_EQ] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_struct] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1409), + [anon_sym_L] = ACTIONS(1409), + [anon_sym_inline] = ACTIONS(1409), + [anon_sym___attribute__] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), }, - [289] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_COMMA] = ACTIONS(1108), + [287] = { + [aux_sym_preproc_params_repeat1] = STATE(382), + [anon_sym_COMMA] = ACTIONS(1411), + [anon_sym_RPAREN] = ACTIONS(1413), [sym_comment] = ACTIONS(3), }, + [288] = { + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(1415), + [sym_preproc_arg] = ACTIONS(1417), + }, + [289] = { + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_sizeof] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [sym_true] = ACTIONS(1421), + [sym_false] = ACTIONS(1421), + [sym_null] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_goto] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1419), + [sym_preproc_directive] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [aux_sym_preproc_if_token1] = ACTIONS(1421), + [ts_builtin_sym_end] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_typedef] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1421), + [sym_primitive_type] = ACTIONS(1421), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), + [aux_sym_preproc_include_token1] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_number_literal] = ACTIONS(1419), + [aux_sym_preproc_def_token1] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_auto] = ACTIONS(1421), + [anon_sym_L] = ACTIONS(1421), + [anon_sym_inline] = ACTIONS(1421), + [anon_sym___attribute__] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + }, [290] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(379), - [sym_math_expression] = STATE(379), - [sym_cast_expression] = STATE(379), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(379), - [sym_bitwise_expression] = STATE(379), - [sym_equality_expression] = STATE(379), - [sym_sizeof_expression] = STATE(379), - [sym_compound_literal_expression] = STATE(379), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(379), - [sym_concatenated_string] = STATE(379), - [sym_conditional_expression] = STATE(379), - [sym_assignment_expression] = STATE(379), - [sym_relational_expression] = STATE(379), - [sym_shift_expression] = STATE(379), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1415), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(1413), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LF] = ACTIONS(1423), + [sym_comment] = ACTIONS(183), }, [291] = { - [sym_parameter_list] = STATE(218), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_EQ] = ACTIONS(1417), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1417), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1427), + [anon_sym_DASH_EQ] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_DASH_GT] = ACTIONS(1427), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1427), + [anon_sym_LT_LT_EQ] = ACTIONS(1427), + [anon_sym_QMARK] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1427), + [anon_sym_CARET_EQ] = ACTIONS(1427), + [anon_sym_COMMA] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_GT_GT_EQ] = ACTIONS(1427), + [anon_sym_LT_LT] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_RBRACK] = ACTIONS(1427), + [anon_sym_AMP_EQ] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_LPAREN2] = ACTIONS(1427), + [anon_sym_GT_GT] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_COLON] = ACTIONS(1427), + [anon_sym_STAR_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1427), }, [292] = { - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1419), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_COMMA] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_RPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_restrict] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1429), + [anon_sym_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_DASH_GT] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym__Atomic] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [anon_sym_LT_LT_EQ] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_CARET_EQ] = ACTIONS(1431), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_volatile] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_signed] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_GT_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_PIPE_EQ] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_L] = ACTIONS(1429), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym___attribute__] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_unsigned] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_AMP_EQ] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_GT_GT] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_COLON] = ACTIONS(1431), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_auto] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_inline] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1431), }, [293] = { - [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_unsigned] = ACTIONS(1435), + [anon_sym_restrict] = ACTIONS(1435), + [anon_sym_short] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_LPAREN2] = ACTIONS(1433), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym__Atomic] = ACTIONS(1435), + [sym_primitive_type] = ACTIONS(1435), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_volatile] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_signed] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_long] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_auto] = ACTIONS(1435), + [anon_sym_inline] = ACTIONS(1435), + [anon_sym___attribute__] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1433), }, [294] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(1421), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_PERCENT_EQ] = ACTIONS(1439), + [anon_sym_DASH_EQ] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1439), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1439), + [anon_sym_LT_LT_EQ] = ACTIONS(1439), + [anon_sym_QMARK] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1439), + [anon_sym_CARET_EQ] = ACTIONS(1439), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_GT_GT_EQ] = ACTIONS(1439), + [anon_sym_LT_LT] = ACTIONS(1437), + [anon_sym_PIPE_EQ] = ACTIONS(1439), + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_RBRACK] = ACTIONS(1439), + [anon_sym_AMP_EQ] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_LPAREN2] = ACTIONS(1439), + [anon_sym_GT_GT] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_COLON] = ACTIONS(1439), + [anon_sym_STAR_EQ] = ACTIONS(1439), + [anon_sym_EQ_EQ] = ACTIONS(1439), + [anon_sym_PIPE_PIPE] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_SLASH_EQ] = ACTIONS(1439), + [anon_sym_BANG_EQ] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1439), }, [295] = { - [sym_parameter_list] = STATE(218), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1423), + [sym_concatenated_string] = STATE(384), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(384), + [sym_math_expression] = STATE(384), + [sym_cast_expression] = STATE(384), + [sym_field_expression] = STATE(36), + [sym_conditional_expression] = STATE(384), + [sym_assignment_expression] = STATE(384), + [sym_relational_expression] = STATE(384), + [sym_shift_expression] = STATE(384), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym__expression] = STATE(384), + [sym_bitwise_expression] = STATE(384), + [sym_equality_expression] = STATE(384), + [sym_sizeof_expression] = STATE(384), + [sym_compound_literal_expression] = STATE(384), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(384), + [sym_false] = ACTIONS(1441), + [sym_identifier] = ACTIONS(135), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_true] = ACTIONS(1441), + [sym_null] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [296] = { - [anon_sym_COMMA] = ACTIONS(1423), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_PERCENT] = ACTIONS(1445), + [anon_sym_PERCENT_EQ] = ACTIONS(1447), + [anon_sym_DASH_EQ] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1445), + [anon_sym_DASH_GT] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1447), + [anon_sym_LT_LT_EQ] = ACTIONS(1447), + [anon_sym_QMARK] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_CARET_EQ] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_GT_GT_EQ] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(1445), + [anon_sym_PIPE_EQ] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_RBRACK] = ACTIONS(1447), + [anon_sym_AMP_EQ] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_COLON] = ACTIONS(1447), + [anon_sym_STAR_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_SLASH_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1447), }, [297] = { - [sym_pointer_expression] = STATE(60), - [sym_logical_expression] = STATE(60), - [sym_math_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym__expression] = STATE(60), - [sym_bitwise_expression] = STATE(60), - [sym_equality_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_char_literal] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_relational_expression] = STATE(60), - [sym_shift_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [sym_false] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), }, [298] = { - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_EQ] = ACTIONS(1427), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_COMMA] = ACTIONS(1427), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(387), + [sym_math_expression] = STATE(387), + [sym_cast_expression] = STATE(387), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(387), + [sym_bitwise_expression] = STATE(387), + [sym_equality_expression] = STATE(387), + [sym_sizeof_expression] = STATE(387), + [sym_compound_literal_expression] = STATE(387), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(387), + [sym_concatenated_string] = STATE(387), + [sym_conditional_expression] = STATE(387), + [sym_assignment_expression] = STATE(387), + [sym_relational_expression] = STATE(387), + [sym_shift_expression] = STATE(387), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1451), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1451), + [sym_null] = ACTIONS(1451), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [299] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(382), - [sym_math_expression] = STATE(382), - [sym_cast_expression] = STATE(382), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(382), - [sym_bitwise_expression] = STATE(382), - [sym_equality_expression] = STATE(382), - [sym_sizeof_expression] = STATE(382), - [sym_compound_literal_expression] = STATE(382), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(382), - [sym_concatenated_string] = STATE(382), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_conditional_expression] = STATE(382), - [sym_assignment_expression] = STATE(382), - [sym_relational_expression] = STATE(382), - [sym_shift_expression] = STATE(382), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1429), - [anon_sym_restrict] = ACTIONS(13), + [sym_parameter_list] = STATE(224), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1455), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_true] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1431), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1429), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(808), }, [300] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_LPAREN2] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1457), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), }, [301] = { - [anon_sym_case] = ACTIONS(1435), - [sym_null] = ACTIONS(1435), - [anon_sym_restrict] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1459), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_typedef] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1435), - [anon_sym__Atomic] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), - [sym_number_literal] = ACTIONS(1437), - [anon_sym_volatile] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym___attribute__] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_unsigned] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [sym_true] = ACTIONS(1435), - [sym_primitive_type] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [aux_sym_preproc_include_token1] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_register] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [sym_false] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1435), - [ts_builtin_sym_end] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1435), - [anon_sym_auto] = ACTIONS(1435), - [anon_sym_inline] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1459), }, [302] = { - [aux_sym_declaration_repeat1] = STATE(302), - [anon_sym_COMMA] = ACTIONS(1439), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1423), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [303] = { - [sym_attribute_specifier] = STATE(383), - [aux_sym_function_declarator_repeat1] = STATE(383), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_EQ] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_RPAREN] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1442), + [sym_parameter_list] = STATE(224), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_EQ] = ACTIONS(806), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(808), }, [304] = { - [sym__declaration_specifiers] = STATE(851), - [sym_preproc_def] = STATE(384), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(384), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(384), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [sym_preproc_call] = STATE(384), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(384), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(384), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(384), - [sym_field_declaration] = STATE(384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(15), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(1461), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1461), }, [305] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), + [sym_pointer_expression] = STATE(62), + [sym_logical_expression] = STATE(62), + [sym_math_expression] = STATE(62), + [sym_cast_expression] = STATE(62), + [sym_field_expression] = STATE(62), + [sym__expression] = STATE(62), + [sym_bitwise_expression] = STATE(62), + [sym_equality_expression] = STATE(62), + [sym_sizeof_expression] = STATE(62), + [sym_compound_literal_expression] = STATE(62), + [sym_parenthesized_expression] = STATE(62), + [sym_char_literal] = STATE(62), + [sym_concatenated_string] = STATE(62), + [sym_conditional_expression] = STATE(62), + [sym_assignment_expression] = STATE(62), + [sym_relational_expression] = STATE(62), + [sym_shift_expression] = STATE(62), + [sym_subscript_expression] = STATE(62), + [sym_call_expression] = STATE(62), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(189), + [sym_identifier] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [306] = { + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_LPAREN2] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1465), [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1465), }, [307] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(521), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(521), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(387), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(387), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(521), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(521), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(521), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), - [sym_field_declaration] = STATE(521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(390), + [sym_math_expression] = STATE(390), + [sym_cast_expression] = STATE(390), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(390), + [sym_bitwise_expression] = STATE(390), + [sym_equality_expression] = STATE(390), + [sym_sizeof_expression] = STATE(390), + [sym_compound_literal_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(390), + [sym_concatenated_string] = STATE(390), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_conditional_expression] = STATE(390), + [sym_assignment_expression] = STATE(390), + [sym_relational_expression] = STATE(390), + [sym_shift_expression] = STATE(390), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1467), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1469), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1467), + [sym_null] = ACTIONS(1467), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [308] = { - [aux_sym_preproc_if_token2] = ACTIONS(1462), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [309] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_signed] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1473), + [sym_false] = ACTIONS(1473), + [anon_sym_restrict] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1473), + [anon_sym_goto] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_typedef] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1473), + [anon_sym__Atomic] = ACTIONS(1473), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1473), + [sym_number_literal] = ACTIONS(1475), + [anon_sym_volatile] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_signed] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1473), + [anon_sym_L] = ACTIONS(1473), + [anon_sym___attribute__] = ACTIONS(1473), + [anon_sym_sizeof] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_unsigned] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1475), + [sym_preproc_directive] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1475), + [aux_sym_preproc_if_token1] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [sym_primitive_type] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [aux_sym_preproc_include_token1] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [sym_true] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [sym_null] = ACTIONS(1473), + [ts_builtin_sym_end] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [aux_sym_preproc_def_token1] = ACTIONS(1473), + [anon_sym_auto] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), }, [310] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(521), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(521), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(389), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(389), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(521), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(521), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(521), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), - [sym_field_declaration] = STATE(521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), + [aux_sym_declaration_repeat1] = STATE(310), + [anon_sym_COMMA] = ACTIONS(1477), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_SEMI] = ACTIONS(1461), }, [311] = { - [aux_sym_preproc_if_token2] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), + [sym_attribute_specifier] = STATE(391), + [aux_sym_function_declarator_repeat1] = STATE(391), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1180), + [anon_sym_LBRACK] = ACTIONS(1480), }, [312] = { - [sym_array_field_declarator] = STATE(390), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_function_field_declarator] = STATE(390), - [sym_pointer_field_declarator] = STATE(390), - [sym__field_declarator] = STATE(390), - [sym_identifier] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(811), + [sym__declaration_specifiers] = STATE(868), + [sym_preproc_def] = STATE(392), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(392), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(392), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [sym_preproc_call] = STATE(392), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(392), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(392), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(392), + [sym_field_declaration] = STATE(392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1490), [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(809), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [sym_comment] = ACTIONS(3), }, [313] = { - [sym_parameter_list] = STATE(321), - [anon_sym_LPAREN2] = ACTIONS(787), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_COLON] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1227), }, [314] = { - [sym_parameter_list] = STATE(321), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(787), + [sym_preproc_arg] = ACTIONS(1496), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1227), }, [315] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(316), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(530), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(530), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(530), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(395), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(395), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(530), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(530), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(530), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(530), + [sym_field_declaration] = STATE(530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [aux_sym_preproc_if_token2] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [sym_comment] = ACTIONS(3), }, [316] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsigned] = ACTIONS(1478), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym_short] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1478), - [sym_preproc_directive] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1478), - [aux_sym_preproc_if_token1] = ACTIONS(1478), - [anon_sym_long] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), - [aux_sym_preproc_def_token1] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym_auto] = ACTIONS(1478), - [sym_primitive_type] = ACTIONS(1478), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym___attribute__] = ACTIONS(1478), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), }, [317] = { - [sym_pointer_field_declarator] = STATE(392), - [sym_array_field_declarator] = STATE(392), - [sym_function_field_declarator] = STATE(392), - [sym__field_declarator] = STATE(392), - [sym_identifier] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LPAREN2] = ACTIONS(811), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), [sym_comment] = ACTIONS(3), }, [318] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(396), - [sym_math_expression] = STATE(396), - [sym_cast_expression] = STATE(396), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(396), - [sym_bitwise_expression] = STATE(396), - [sym_equality_expression] = STATE(396), - [sym_sizeof_expression] = STATE(396), - [sym_compound_literal_expression] = STATE(396), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(396), - [sym_concatenated_string] = STATE(396), - [sym_type_qualifier] = STATE(395), - [aux_sym_type_definition_repeat1] = STATE(395), - [sym_conditional_expression] = STATE(396), - [sym_assignment_expression] = STATE(396), - [sym_relational_expression] = STATE(396), - [sym_shift_expression] = STATE(396), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1482), + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(530), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(530), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(530), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(397), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(397), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(530), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(530), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(530), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(530), + [sym_field_declaration] = STATE(530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), + [aux_sym_preproc_if_token2] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), [anon_sym__Atomic] = ACTIONS(13), - [sym_true] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1482), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [sym_comment] = ACTIONS(3), }, [319] = { - [aux_sym_field_declaration_repeat1] = STATE(398), - [sym_bitfield_clause] = STATE(399), + [aux_sym_preproc_if_token2] = ACTIONS(1508), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(1490), }, [320] = { + [sym_array_field_declarator] = STATE(398), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_function_field_declarator] = STATE(398), + [sym_pointer_field_declarator] = STATE(398), + [sym__field_declarator] = STATE(398), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(832), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1490), }, [321] = { - [anon_sym_LPAREN2] = ACTIONS(1492), + [sym_parameter_list] = STATE(329), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_COLON] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1257), }, [322] = { - [aux_sym_preproc_if_token2] = ACTIONS(1494), + [sym_parameter_list] = STATE(329), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1257), }, [323] = { - [sym_continue_statement] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(400), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(575), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(575), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_preproc_include] = STATE(575), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(575), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(575), - [sym_while_statement] = STATE(575), - [sym_preproc_def] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_preproc_else] = STATE(400), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(575), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(575), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(575), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(575), - [sym_preproc_if] = STATE(575), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(575), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [324] = { - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_null] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [ts_builtin_sym_end] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1498), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym__Atomic] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [sym_true] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [sym_number_literal] = ACTIONS(1498), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), }, [325] = { - [sym_concatenated_string] = STATE(401), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(401), - [sym_math_expression] = STATE(401), - [sym_cast_expression] = STATE(401), - [sym_field_expression] = STATE(35), - [sym_conditional_expression] = STATE(401), - [sym_assignment_expression] = STATE(401), - [sym_relational_expression] = STATE(401), - [sym_shift_expression] = STATE(401), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym__expression] = STATE(401), - [sym_bitwise_expression] = STATE(401), - [sym_equality_expression] = STATE(401), - [sym_sizeof_expression] = STATE(401), - [sym_compound_literal_expression] = STATE(401), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(401), - [sym_null] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(1502), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_pointer_field_declarator] = STATE(400), + [sym_array_field_declarator] = STATE(400), + [sym_function_field_declarator] = STATE(400), + [sym__field_declarator] = STATE(400), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_LPAREN2] = ACTIONS(832), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(834), }, [326] = { - [anon_sym_RBRACE] = ACTIONS(1506), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_sizeof_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(404), + [sym_concatenated_string] = STATE(404), + [sym_type_qualifier] = STATE(403), + [aux_sym_type_definition_repeat1] = STATE(403), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1520), + [sym_null] = ACTIONS(1520), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [327] = { - [anon_sym_PERCENT] = ACTIONS(1508), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1510), - [anon_sym_DASH_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1508), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_EQ] = ACTIONS(1510), - [anon_sym_LT_LT_EQ] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_CARET_EQ] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_GT_GT_EQ] = ACTIONS(1510), - [anon_sym_LT_LT] = ACTIONS(1508), - [anon_sym_PIPE_EQ] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_AMP_EQ] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_COLON] = ACTIONS(1510), - [anon_sym_STAR_EQ] = ACTIONS(1510), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_SLASH_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1510), + [aux_sym_field_declaration_repeat1] = STATE(406), + [sym_bitfield_clause] = STATE(407), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(1528), }, [328] = { - [sym_identifier] = ACTIONS(1512), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1528), }, [329] = { - [sym_subscript_designator] = STATE(405), - [sym_field_designator] = STATE(405), - [aux_sym_initializer_pair_repeat1] = STATE(405), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_COLON] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), }, [330] = { - [aux_sym_initializer_list_repeat1] = STATE(407), - [anon_sym_COMMA] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1506), + [aux_sym_preproc_if_token2] = ACTIONS(1532), [sym_comment] = ACTIONS(3), }, [331] = { - [aux_sym_initializer_list_repeat1] = STATE(407), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_continue_statement] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(408), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(586), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(586), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(586), + [sym_return_statement] = STATE(586), + [sym_preproc_include] = STATE(586), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(586), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_goto_statement] = STATE(586), + [sym_preproc_else] = STATE(408), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(586), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_do_statement] = STATE(586), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(586), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(586), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(586), + [sym_preproc_if] = STATE(586), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(586), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [332] = { - [sym_parameter_list] = STATE(252), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1538), + [anon_sym_unsigned] = ACTIONS(1538), + [anon_sym_restrict] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1538), + [sym_true] = ACTIONS(1538), + [sym_false] = ACTIONS(1538), + [sym_null] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_goto] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1538), + [ts_builtin_sym_end] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_volatile] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1538), + [anon_sym_L] = ACTIONS(1538), + [anon_sym_inline] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), }, [333] = { - [sym_parameter_list] = STATE(252), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(787), + [sym_concatenated_string] = STATE(409), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(409), + [sym_math_expression] = STATE(409), + [sym_cast_expression] = STATE(409), + [sym_field_expression] = STATE(36), + [sym_conditional_expression] = STATE(409), + [sym_assignment_expression] = STATE(409), + [sym_relational_expression] = STATE(409), + [sym_shift_expression] = STATE(409), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym__expression] = STATE(409), + [sym_bitwise_expression] = STATE(409), + [sym_equality_expression] = STATE(409), + [sym_sizeof_expression] = STATE(409), + [sym_compound_literal_expression] = STATE(409), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(409), + [sym_false] = ACTIONS(1540), + [sym_identifier] = ACTIONS(135), + [sym_number_literal] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_true] = ACTIONS(1540), + [sym_null] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [334] = { - [sym_struct_specifier] = STATE(44), - [sym_macro_type_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_parameter_declaration] = STATE(408), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(246), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), - [anon_sym_const] = ACTIONS(13), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), }, [335] = { - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_EQ] = ACTIONS(1526), - [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_PERCENT_EQ] = ACTIONS(1548), + [anon_sym_DASH_EQ] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_LT_EQ] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1548), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_COLON] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym___attribute__] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_PLUS_EQ] = ACTIONS(1548), + [anon_sym_LT_LT_EQ] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_GT_EQ] = ACTIONS(1548), + [anon_sym_CARET_EQ] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_GT_GT_EQ] = ACTIONS(1548), + [anon_sym_LT_LT] = ACTIONS(1546), + [anon_sym_PIPE_EQ] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_AMP_EQ] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_AMP_AMP] = ACTIONS(1548), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_GT_GT] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_COLON] = ACTIONS(1548), + [anon_sym_STAR_EQ] = ACTIONS(1548), + [anon_sym_EQ_EQ] = ACTIONS(1548), + [anon_sym_PIPE_PIPE] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_SLASH_EQ] = ACTIONS(1548), + [anon_sym_BANG_EQ] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1548), }, [336] = { - [aux_sym_parameter_list_repeat1] = STATE(410), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1279), + [sym_identifier] = ACTIONS(1550), [sym_comment] = ACTIONS(3), }, [337] = { - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1530), + [sym_subscript_designator] = STATE(413), + [sym_field_designator] = STATE(413), + [aux_sym_initializer_pair_repeat1] = STATE(413), + [anon_sym_EQ] = ACTIONS(1552), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1287), }, [338] = { - [sym_function_declarator] = STATE(208), - [sym_type_qualifier] = STATE(411), - [aux_sym_type_definition_repeat1] = STATE(411), - [sym_parameter_list] = STATE(152), - [sym__declarator] = STATE(208), - [sym_abstract_function_declarator] = STATE(241), - [sym_array_declarator] = STATE(208), - [sym__abstract_declarator] = STATE(241), - [sym_pointer_declarator] = STATE(208), - [sym_abstract_array_declarator] = STATE(241), - [sym_abstract_pointer_declarator] = STATE(241), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(915), + [aux_sym_initializer_list_repeat1] = STATE(415), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(1289), - [sym_identifier] = ACTIONS(775), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1544), }, [339] = { - [sym__declarator] = STATE(210), - [sym_abstract_function_declarator] = STATE(245), - [sym_array_declarator] = STATE(210), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(246), - [sym_abstract_pointer_declarator] = STATE(245), - [sym_function_declarator] = STATE(210), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_parameter_list] = STATE(152), - [sym_parameter_declaration] = STATE(243), - [sym_attribute_specifier] = STATE(40), - [sym__abstract_declarator] = STATE(245), - [sym_pointer_declarator] = STATE(210), - [sym_abstract_array_declarator] = STATE(245), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(1532), - [anon_sym_long] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(462), + [aux_sym_initializer_list_repeat1] = STATE(415), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [340] = { - [sym_parameter_list] = STATE(252), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1534), + [sym_parameter_list] = STATE(259), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(953), }, [341] = { - [sym_parameter_list] = STATE(218), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1534), + [sym_parameter_list] = STATE(259), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(953), }, [342] = { - [anon_sym_RPAREN] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1536), + [sym_struct_specifier] = STATE(45), + [sym_macro_type_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_parameter_declaration] = STATE(416), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym__declaration_specifiers] = STATE(253), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(19), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), }, [343] = { - [sym_pointer_expression] = STATE(60), - [sym_logical_expression] = STATE(60), - [sym_math_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym__expression] = STATE(60), - [sym_bitwise_expression] = STATE(60), - [sym_equality_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_char_literal] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_relational_expression] = STATE(60), - [sym_shift_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [sym_false] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_LPAREN2] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_COLON] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym___attribute__] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), }, [344] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_parameter_list_repeat1] = STATE(418), + [anon_sym_RPAREN] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1313), }, [345] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_sizeof_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1540), - [anon_sym_restrict] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(1568), + [anon_sym_LPAREN2] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_true] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1542), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1540), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), }, [346] = { - [anon_sym_case] = ACTIONS(1546), - [sym_null] = ACTIONS(1546), - [anon_sym_restrict] = ACTIONS(1546), + [sym_function_declarator] = STATE(214), + [sym_type_qualifier] = STATE(419), + [aux_sym_type_definition_repeat1] = STATE(419), + [sym_parameter_list] = STATE(157), + [sym__declarator] = STATE(214), + [sym_abstract_function_declarator] = STATE(248), + [sym_array_declarator] = STATE(214), + [sym__abstract_declarator] = STATE(248), + [sym_pointer_declarator] = STATE(214), + [sym_abstract_array_declarator] = STATE(248), + [sym_abstract_pointer_declarator] = STATE(248), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(798), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(937), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_typedef] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1546), - [anon_sym__Atomic] = ACTIONS(1546), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1546), - [sym_number_literal] = ACTIONS(1548), - [anon_sym_volatile] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1548), - [anon_sym_struct] = ACTIONS(1546), - [anon_sym_signed] = ACTIONS(1546), - [anon_sym_long] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(1548), - [anon_sym___attribute__] = ACTIONS(1546), - [anon_sym_sizeof] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsigned] = ACTIONS(1546), - [anon_sym_short] = ACTIONS(1546), - [anon_sym_do] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1548), - [sym_preproc_directive] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1548), - [aux_sym_preproc_if_token1] = ACTIONS(1546), - [anon_sym_LPAREN2] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [sym_true] = ACTIONS(1546), - [sym_primitive_type] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [aux_sym_preproc_include_token1] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_register] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_switch] = ACTIONS(1546), - [sym_false] = ACTIONS(1546), - [anon_sym_enum] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1546), - [ts_builtin_sym_end] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1548), - [aux_sym_preproc_def_token1] = ACTIONS(1546), - [anon_sym_auto] = ACTIONS(1546), - [anon_sym_inline] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(472), }, [347] = { - [aux_sym_type_definition_repeat2] = STATE(355), - [anon_sym_COMMA] = ACTIONS(937), + [sym__declarator] = STATE(216), + [sym_abstract_function_declarator] = STATE(252), + [sym_array_declarator] = STATE(216), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym__declaration_specifiers] = STATE(253), + [sym_abstract_pointer_declarator] = STATE(252), + [sym_function_declarator] = STATE(216), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_parameter_list] = STATE(157), + [sym_parameter_declaration] = STATE(250), + [sym_attribute_specifier] = STATE(41), + [sym__abstract_declarator] = STATE(252), + [sym_pointer_declarator] = STATE(216), + [sym_abstract_array_declarator] = STATE(252), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(1570), + [anon_sym_short] = ACTIONS(17), + [anon_sym_DOT_DOT_DOT] = ACTIONS(939), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1550), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(472), }, [348] = { - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1552), + [sym_parameter_list] = STATE(259), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(953), }, [349] = { - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_RPAREN] = ACTIONS(1554), - [anon_sym_LPAREN2] = ACTIONS(1554), - [anon_sym_COMMA] = ACTIONS(1554), + [sym_parameter_list] = STATE(224), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(808), }, [350] = { - [sym_parameter_list] = STATE(261), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_LPAREN2] = ACTIONS(1574), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1574), }, [351] = { - [sym_pointer_expression] = STATE(60), - [sym_logical_expression] = STATE(60), - [sym_math_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym__expression] = STATE(60), - [sym_bitwise_expression] = STATE(60), - [sym_equality_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_char_literal] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_relational_expression] = STATE(60), - [sym_shift_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(179), + [sym_pointer_expression] = STATE(62), + [sym_logical_expression] = STATE(62), + [sym_math_expression] = STATE(62), + [sym_cast_expression] = STATE(62), + [sym_field_expression] = STATE(62), + [sym__expression] = STATE(62), + [sym_bitwise_expression] = STATE(62), + [sym_equality_expression] = STATE(62), + [sym_sizeof_expression] = STATE(62), + [sym_compound_literal_expression] = STATE(62), + [sym_parenthesized_expression] = STATE(62), + [sym_char_literal] = STATE(62), + [sym_concatenated_string] = STATE(62), + [sym_conditional_expression] = STATE(62), + [sym_assignment_expression] = STATE(62), + [sym_relational_expression] = STATE(62), + [sym_shift_expression] = STATE(62), + [sym_subscript_expression] = STATE(62), + [sym_call_expression] = STATE(62), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(189), + [sym_identifier] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [sym_false] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [352] = { - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_LPAREN2] = ACTIONS(1560), - [anon_sym_COMMA] = ACTIONS(1560), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1560), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [353] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(419), - [sym_math_expression] = STATE(419), - [sym_cast_expression] = STATE(419), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(419), - [sym_bitwise_expression] = STATE(419), - [sym_equality_expression] = STATE(419), - [sym_sizeof_expression] = STATE(419), - [sym_compound_literal_expression] = STATE(419), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(419), - [sym_concatenated_string] = STATE(419), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_conditional_expression] = STATE(419), - [sym_assignment_expression] = STATE(419), - [sym_relational_expression] = STATE(419), - [sym_shift_expression] = STATE(419), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1562), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(423), + [sym_math_expression] = STATE(423), + [sym_cast_expression] = STATE(423), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(423), + [sym_bitwise_expression] = STATE(423), + [sym_equality_expression] = STATE(423), + [sym_sizeof_expression] = STATE(423), + [sym_compound_literal_expression] = STATE(423), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(423), + [sym_concatenated_string] = STATE(423), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_conditional_expression] = STATE(423), + [sym_assignment_expression] = STATE(423), + [sym_relational_expression] = STATE(423), + [sym_shift_expression] = STATE(423), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1578), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_true] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1580), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1562), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1578), + [sym_null] = ACTIONS(1578), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [354] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_case] = ACTIONS(1584), + [sym_false] = ACTIONS(1584), + [anon_sym_restrict] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1584), + [anon_sym_goto] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [anon_sym_typedef] = ACTIONS(1584), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_default] = ACTIONS(1584), + [anon_sym__Atomic] = ACTIONS(1584), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(1586), + [anon_sym_volatile] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_struct] = ACTIONS(1584), + [anon_sym_signed] = ACTIONS(1584), + [anon_sym_long] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1584), + [anon_sym_L] = ACTIONS(1584), + [anon_sym___attribute__] = ACTIONS(1584), + [anon_sym_sizeof] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_union] = ACTIONS(1584), + [anon_sym_unsigned] = ACTIONS(1584), + [anon_sym_short] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1586), + [sym_preproc_directive] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [aux_sym_preproc_if_token1] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1586), + [anon_sym_LPAREN2] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [sym_primitive_type] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [aux_sym_preproc_include_token1] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(1584), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_switch] = ACTIONS(1584), + [sym_true] = ACTIONS(1584), + [anon_sym_enum] = ACTIONS(1584), + [sym_null] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1586), + [aux_sym_preproc_def_token1] = ACTIONS(1584), + [anon_sym_auto] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), }, [355] = { - [aux_sym_type_definition_repeat2] = STATE(355), - [anon_sym_COMMA] = ACTIONS(1568), + [aux_sym_type_definition_repeat2] = STATE(363), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(1588), }, [356] = { - [sym_while_statement] = STATE(420), - [sym_continue_statement] = STATE(420), - [sym_goto_statement] = STATE(420), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(420), - [sym_expression_statement] = STATE(420), - [sym_if_statement] = STATE(420), - [sym_do_statement] = STATE(420), - [sym_for_statement] = STATE(420), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(420), - [sym_return_statement] = STATE(420), - [sym_break_statement] = STATE(420), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(420), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [sym_parameter_list] = STATE(268), + [anon_sym_LBRACK] = ACTIONS(963), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(507), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), }, [357] = { - [aux_sym_for_statement_repeat1] = STATE(422), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_LBRACK] = ACTIONS(1592), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), }, [358] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(423), - [sym_math_expression] = STATE(423), - [sym_cast_expression] = STATE(423), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(423), - [sym_bitwise_expression] = STATE(423), - [sym_equality_expression] = STATE(423), - [sym_sizeof_expression] = STATE(423), - [sym_compound_literal_expression] = STATE(423), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(423), - [sym_concatenated_string] = STATE(423), - [sym_conditional_expression] = STATE(423), - [sym_assignment_expression] = STATE(423), - [sym_relational_expression] = STATE(423), - [sym_shift_expression] = STATE(423), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1573), + [sym_parameter_list] = STATE(268), + [anon_sym_SEMI] = ACTIONS(1594), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1573), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(963), }, [359] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_pointer_expression] = STATE(62), + [sym_logical_expression] = STATE(62), + [sym_math_expression] = STATE(62), + [sym_cast_expression] = STATE(62), + [sym_field_expression] = STATE(62), + [sym__expression] = STATE(62), + [sym_bitwise_expression] = STATE(62), + [sym_equality_expression] = STATE(62), + [sym_sizeof_expression] = STATE(62), + [sym_compound_literal_expression] = STATE(62), + [sym_parenthesized_expression] = STATE(62), + [sym_char_literal] = STATE(62), + [sym_concatenated_string] = STATE(62), + [sym_conditional_expression] = STATE(62), + [sym_assignment_expression] = STATE(62), + [sym_relational_expression] = STATE(62), + [sym_shift_expression] = STATE(62), + [sym_subscript_expression] = STATE(62), + [sym_call_expression] = STATE(62), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(189), + [sym_identifier] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [360] = { - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_null] = ACTIONS(1581), - [sym_identifier] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_goto] = ACTIONS(1581), - [ts_builtin_sym_end] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1579), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1579), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [sym_true] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1579), - [sym_number_literal] = ACTIONS(1579), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [sym_false] = ACTIONS(1581), - [anon_sym_auto] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1598), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), }, [361] = { - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1583), - [sym_null] = ACTIONS(1585), - [sym_identifier] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [ts_builtin_sym_end] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [sym_preproc_directive] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym__Atomic] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [sym_true] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1583), - [sym_number_literal] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [anon_sym_auto] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(427), + [sym_math_expression] = STATE(427), + [sym_cast_expression] = STATE(427), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(427), + [sym_bitwise_expression] = STATE(427), + [sym_equality_expression] = STATE(427), + [sym_sizeof_expression] = STATE(427), + [sym_compound_literal_expression] = STATE(427), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(427), + [sym_concatenated_string] = STATE(427), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_conditional_expression] = STATE(427), + [sym_assignment_expression] = STATE(427), + [sym_relational_expression] = STATE(427), + [sym_shift_expression] = STATE(427), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1600), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1602), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1600), + [sym_null] = ACTIONS(1600), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [362] = { - [anon_sym_case] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), - [anon_sym_restrict] = ACTIONS(1587), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1587), - [anon_sym__Atomic] = ACTIONS(1587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1587), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_volatile] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_signed] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym___attribute__] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_unsigned] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1589), - [sym_preproc_directive] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1587), - [sym_true] = ACTIONS(1587), - [sym_primitive_type] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [aux_sym_preproc_include_token1] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [anon_sym_enum] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1587), - [ts_builtin_sym_end] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1587), - [anon_sym_auto] = ACTIONS(1587), - [anon_sym_inline] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [363] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(316), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_COLON] = ACTIONS(1591), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_type_definition_repeat2] = STATE(363), + [anon_sym_COMMA] = ACTIONS(1606), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1594), }, [364] = { - [sym_while_statement] = STATE(426), - [sym_continue_statement] = STATE(426), - [sym_goto_statement] = STATE(426), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_declaration] = STATE(426), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(426), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_expression_statement] = STATE(426), - [sym_if_statement] = STATE(426), - [sym_do_statement] = STATE(426), - [sym_for_statement] = STATE(426), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_type_definition] = STATE(426), - [sym_sizeof_expression] = STATE(42), - [sym__declaration_specifiers] = STATE(162), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(42), - [sym_char_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(426), - [sym_return_statement] = STATE(426), - [sym_break_statement] = STATE(426), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [aux_sym_case_statement_repeat1] = STATE(426), - [sym_labeled_statement] = STATE(426), + [sym_while_statement] = STATE(428), + [sym_continue_statement] = STATE(428), + [sym_goto_statement] = STATE(428), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(428), + [sym_expression_statement] = STATE(428), + [sym_if_statement] = STATE(428), + [sym_do_statement] = STATE(428), + [sym_for_statement] = STATE(428), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(428), + [sym_return_statement] = STATE(428), + [sym_break_statement] = STATE(428), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(428), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_union] = ACTIONS(7), - [anon_sym_case] = ACTIONS(1593), - [sym_null] = ACTIONS(11), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(386), [anon_sym_do] = ACTIONS(21), [anon_sym_goto] = ACTIONS(23), - [sym_comment] = ACTIONS(3), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_default] = ACTIONS(1593), - [sym_true] = ACTIONS(11), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [anon_sym_register] = ACTIONS(17), - [sym_identifier] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [365] = { - [anon_sym_case] = ACTIONS(1599), - [sym_null] = ACTIONS(1599), - [anon_sym_restrict] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1599), - [anon_sym__Atomic] = ACTIONS(1599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1599), - [sym_number_literal] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1599), - [anon_sym_extern] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1599), - [anon_sym_signed] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_unsigned] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [sym_preproc_directive] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1601), - [anon_sym_RBRACE] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1599), - [sym_true] = ACTIONS(1599), - [sym_primitive_type] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [aux_sym_preproc_include_token1] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_register] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [anon_sym_enum] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [ts_builtin_sym_end] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [aux_sym_preproc_def_token1] = ACTIONS(1599), - [anon_sym_auto] = ACTIONS(1599), - [anon_sym_inline] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), + [aux_sym_for_statement_repeat1] = STATE(430), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [366] = { - [sym_while_statement] = STATE(366), - [sym_continue_statement] = STATE(366), - [sym_goto_statement] = STATE(366), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(366), - [sym_expression_statement] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_do_statement] = STATE(366), - [sym_for_statement] = STATE(366), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(366), - [sym_return_statement] = STATE(366), - [sym_break_statement] = STATE(366), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(366), - [sym_labeled_statement] = STATE(366), - [sym_case_statement] = STATE(366), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_case] = ACTIONS(1606), - [sym_null] = ACTIONS(1609), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_goto] = ACTIONS(1615), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1627), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_default] = ACTIONS(1632), - [sym_true] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1635), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_BANG] = ACTIONS(1641), - [sym_number_literal] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1653), - [sym_false] = ACTIONS(1609), - [sym_identifier] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_SQUOTE] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1677), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(431), + [sym_math_expression] = STATE(431), + [sym_cast_expression] = STATE(431), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(431), + [sym_bitwise_expression] = STATE(431), + [sym_equality_expression] = STATE(431), + [sym_sizeof_expression] = STATE(431), + [sym_compound_literal_expression] = STATE(431), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(431), + [sym_concatenated_string] = STATE(431), + [sym_conditional_expression] = STATE(431), + [sym_assignment_expression] = STATE(431), + [sym_relational_expression] = STATE(431), + [sym_shift_expression] = STATE(431), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1611), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1613), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [367] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(1680), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [368] = { - [anon_sym_restrict] = ACTIONS(1682), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_volatile] = ACTIONS(1682), - [anon_sym_register] = ACTIONS(1682), - [anon_sym_extern] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_COMMA] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_LPAREN2] = ACTIONS(1684), - [anon_sym_COLON] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym__Atomic] = ACTIONS(1682), - [anon_sym_RPAREN] = ACTIONS(1684), - [anon_sym_auto] = ACTIONS(1682), - [anon_sym_inline] = ACTIONS(1682), - [anon_sym___attribute__] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_sizeof] = ACTIONS(1619), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_restrict] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [sym_true] = ACTIONS(1619), + [sym_false] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_goto] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1617), + [sym_preproc_directive] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [aux_sym_preproc_if_token1] = ACTIONS(1619), + [ts_builtin_sym_end] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_LPAREN2] = ACTIONS(1617), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [anon_sym__Atomic] = ACTIONS(1619), + [sym_primitive_type] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1619), + [aux_sym_preproc_include_token1] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1617), + [sym_number_literal] = ACTIONS(1617), + [aux_sym_preproc_def_token1] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_auto] = ACTIONS(1619), + [anon_sym_L] = ACTIONS(1619), + [anon_sym_inline] = ACTIONS(1619), + [anon_sym___attribute__] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), }, [369] = { - [anon_sym_COMMA] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_restrict] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), + [sym_true] = ACTIONS(1623), + [sym_false] = ACTIONS(1623), + [sym_null] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_goto] = ACTIONS(1623), + [sym_identifier] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1621), + [sym_preproc_directive] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [aux_sym_preproc_if_token1] = ACTIONS(1623), + [ts_builtin_sym_end] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym__Atomic] = ACTIONS(1623), + [sym_primitive_type] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1623), + [aux_sym_preproc_include_token1] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1623), + [anon_sym_volatile] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_struct] = ACTIONS(1623), + [anon_sym_switch] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1621), + [sym_number_literal] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_auto] = ACTIONS(1623), + [anon_sym_L] = ACTIONS(1623), + [anon_sym_inline] = ACTIONS(1623), + [anon_sym___attribute__] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1623), }, [370] = { - [sym_enumerator] = STATE(369), - [sym_identifier] = ACTIONS(519), - [anon_sym_RBRACE] = ACTIONS(1688), - [sym_comment] = ACTIONS(3), + [anon_sym_case] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [anon_sym_restrict] = ACTIONS(1625), + [sym_identifier] = ACTIONS(1625), + [anon_sym_goto] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_typedef] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_default] = ACTIONS(1625), + [anon_sym__Atomic] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), + [sym_number_literal] = ACTIONS(1627), + [anon_sym_volatile] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_signed] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), + [anon_sym_L] = ACTIONS(1625), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym_sizeof] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_unsigned] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_TILDE] = ACTIONS(1627), + [sym_preproc_directive] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1627), + [aux_sym_preproc_if_token1] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_else] = ACTIONS(1625), + [sym_primitive_type] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [aux_sym_preproc_include_token1] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [sym_true] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [ts_builtin_sym_end] = ACTIONS(1627), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [aux_sym_preproc_def_token1] = ACTIONS(1625), + [anon_sym_auto] = ACTIONS(1625), + [anon_sym_inline] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), }, [371] = { - [aux_sym_enumerator_list_repeat1] = STATE(371), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_COLON] = ACTIONS(1629), + [anon_sym_DOT] = ACTIONS(318), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [372] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1693), - [sym_identifier] = ACTIONS(1693), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(434), + [sym_continue_statement] = STATE(434), + [sym_goto_statement] = STATE(434), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_declaration] = STATE(434), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(434), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_expression_statement] = STATE(434), + [sym_if_statement] = STATE(434), + [sym_do_statement] = STATE(434), + [sym_for_statement] = STATE(434), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_type_definition] = STATE(434), + [sym_sizeof_expression] = STATE(43), + [sym__declaration_specifiers] = STATE(169), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(43), + [sym_char_literal] = STATE(43), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(434), + [sym_return_statement] = STATE(434), + [sym_break_statement] = STATE(434), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [aux_sym_case_statement_repeat1] = STATE(434), + [sym_labeled_statement] = STATE(434), + [anon_sym_LBRACE] = ACTIONS(5), + [anon_sym_union] = ACTIONS(7), + [anon_sym_case] = ACTIONS(1631), + [sym_false] = ACTIONS(11), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_const] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_default] = ACTIONS(1631), + [anon_sym_typedef] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_static] = ACTIONS(19), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [sym_null] = ACTIONS(11), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_L] = ACTIONS(9), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [373] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(1695), - [sym_preproc_arg] = ACTIONS(1697), + [anon_sym_case] = ACTIONS(1637), + [sym_false] = ACTIONS(1637), + [anon_sym_restrict] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1637), + [anon_sym_goto] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1637), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1637), + [anon_sym__Atomic] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), + [sym_number_literal] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_signed] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), + [anon_sym_L] = ACTIONS(1637), + [anon_sym___attribute__] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1639), + [sym_preproc_directive] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1639), + [aux_sym_preproc_if_token1] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1637), + [sym_primitive_type] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [sym_true] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [sym_null] = ACTIONS(1637), + [ts_builtin_sym_end] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_auto] = ACTIONS(1637), + [anon_sym_inline] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), }, [374] = { - [aux_sym_preproc_params_repeat1] = STATE(431), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_RPAREN] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(374), + [sym_continue_statement] = STATE(374), + [sym_goto_statement] = STATE(374), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(374), + [sym_expression_statement] = STATE(374), + [sym_if_statement] = STATE(374), + [sym_do_statement] = STATE(374), + [sym_for_statement] = STATE(374), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(374), + [sym_return_statement] = STATE(374), + [sym_break_statement] = STATE(374), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(374), + [sym_labeled_statement] = STATE(374), + [sym_case_statement] = STATE(374), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_case] = ACTIONS(1644), + [sym_false] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1650), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_LPAREN2] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1679), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1685), + [sym_number_literal] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1700), + [sym_true] = ACTIONS(1647), + [sym_null] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_L] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_sizeof] = ACTIONS(1718), }, [375] = { - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_sizeof] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym_null] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_goto] = ACTIONS(1703), - [ts_builtin_sym_end] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1701), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym__Atomic] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [sym_true] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_switch] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1701), - [sym_number_literal] = ACTIONS(1701), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [sym_false] = ACTIONS(1703), - [anon_sym_auto] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [376] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_restrict] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1723), + [anon_sym_static] = ACTIONS(1723), + [anon_sym_volatile] = ACTIONS(1723), + [anon_sym_register] = ACTIONS(1723), + [anon_sym_extern] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_COMMA] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1723), + [anon_sym_LPAREN2] = ACTIONS(1725), + [anon_sym_COLON] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym__Atomic] = ACTIONS(1723), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1725), + [anon_sym_inline] = ACTIONS(1723), + [anon_sym___attribute__] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1725), }, [377] = { - [anon_sym_PERCENT] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1709), - [anon_sym_DASH_EQ] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_DASH_GT] = ACTIONS(1709), - [anon_sym_SLASH] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_PLUS_EQ] = ACTIONS(1709), - [anon_sym_LT_LT_EQ] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_CARET_EQ] = ACTIONS(1709), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_GT_GT_EQ] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1707), - [anon_sym_PIPE_EQ] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_RBRACK] = ACTIONS(1709), - [anon_sym_AMP_EQ] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_EQ] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_COLON] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), }, [378] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1705), + [sym_enumerator] = STATE(377), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(1729), }, [379] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_COLON] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1714), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_enumerator_list_repeat1] = STATE(379), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), }, [380] = { - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_EQ] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(1716), - [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1734), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_LBRACK] = ACTIONS(1716), }, [381] = { - [sym_pointer_expression] = STATE(60), - [sym_logical_expression] = STATE(60), - [sym_math_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym__expression] = STATE(60), - [sym_bitwise_expression] = STATE(60), - [sym_equality_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_char_literal] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_relational_expression] = STATE(60), - [sym_shift_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [sym_false] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1718), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(1736), + [sym_preproc_arg] = ACTIONS(1738), }, [382] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1718), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_preproc_params_repeat1] = STATE(439), + [anon_sym_COMMA] = ACTIONS(1411), + [anon_sym_RPAREN] = ACTIONS(1740), + [sym_comment] = ACTIONS(3), }, [383] = { - [sym_attribute_specifier] = STATE(383), - [aux_sym_function_declarator_repeat1] = STATE(383), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_EQ] = ACTIONS(1720), - [anon_sym_LPAREN2] = ACTIONS(1720), - [anon_sym_COMMA] = ACTIONS(1720), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_sizeof] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [sym_null] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_goto] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1744), + [anon_sym_TILDE] = ACTIONS(1742), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1742), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1742), + [anon_sym_typedef] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [anon_sym__Atomic] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [aux_sym_preproc_include_token1] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1742), + [sym_number_literal] = ACTIONS(1742), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_L] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), }, [384] = { - [sym__declaration_specifiers] = STATE(851), - [sym_preproc_def] = STATE(593), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(593), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(593), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [sym_preproc_call] = STATE(593), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(593), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(593), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(593), - [sym_field_declaration] = STATE(593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(15), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [385] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(433), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(433), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(433), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(434), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(434), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(433), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(433), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(433), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(433), - [sym_field_declaration] = STATE(433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token2] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_PERCENT] = ACTIONS(1748), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_CARET] = ACTIONS(1748), + [anon_sym_DASH_GT] = ACTIONS(1750), + [anon_sym_SLASH] = ACTIONS(1748), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_QMARK] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1748), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_RBRACK] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1748), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1748), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_COLON] = ACTIONS(1750), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1748), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1750), }, [386] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_unsigned] = ACTIONS(1729), - [anon_sym_restrict] = ACTIONS(1729), - [anon_sym_short] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_volatile] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1729), - [sym_preproc_directive] = ACTIONS(1729), - [anon_sym_signed] = ACTIONS(1729), - [aux_sym_preproc_if_token1] = ACTIONS(1729), - [anon_sym_long] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [sym_identifier] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1729), - [aux_sym_preproc_def_token1] = ACTIONS(1729), - [anon_sym__Atomic] = ACTIONS(1729), - [anon_sym_auto] = ACTIONS(1729), - [sym_primitive_type] = ACTIONS(1729), - [anon_sym_inline] = ACTIONS(1729), - [anon_sym___attribute__] = ACTIONS(1729), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1746), + [sym_comment] = ACTIONS(3), }, [387] = { - [aux_sym_preproc_if_token2] = ACTIONS(1733), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_COLON] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1755), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(1755), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [388] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1735), - [aux_sym_preproc_def_token1] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym_auto] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_EQ] = ACTIONS(1757), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1757), }, [389] = { - [aux_sym_preproc_if_token2] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), + [sym_pointer_expression] = STATE(62), + [sym_logical_expression] = STATE(62), + [sym_math_expression] = STATE(62), + [sym_cast_expression] = STATE(62), + [sym_field_expression] = STATE(62), + [sym__expression] = STATE(62), + [sym_bitwise_expression] = STATE(62), + [sym_equality_expression] = STATE(62), + [sym_sizeof_expression] = STATE(62), + [sym_compound_literal_expression] = STATE(62), + [sym_parenthesized_expression] = STATE(62), + [sym_char_literal] = STATE(62), + [sym_concatenated_string] = STATE(62), + [sym_conditional_expression] = STATE(62), + [sym_assignment_expression] = STATE(62), + [sym_relational_expression] = STATE(62), + [sym_shift_expression] = STATE(62), + [sym_subscript_expression] = STATE(62), + [sym_call_expression] = STATE(62), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(189), + [sym_identifier] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [390] = { - [sym_parameter_list] = STATE(321), - [anon_sym_LPAREN2] = ACTIONS(787), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1741), - [anon_sym_COLON] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1227), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [391] = { - [anon_sym_LPAREN2] = ACTIONS(1743), + [sym_attribute_specifier] = STATE(391), + [aux_sym_function_declarator_repeat1] = STATE(391), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_EQ] = ACTIONS(1761), + [anon_sym_LPAREN2] = ACTIONS(1761), + [anon_sym_COMMA] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1743), - [anon_sym_COLON] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_RPAREN] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym___attribute__] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1761), }, [392] = { - [sym_parameter_list] = STATE(321), - [anon_sym_LBRACK] = ACTIONS(1227), + [sym__declaration_specifiers] = STATE(868), + [sym_preproc_def] = STATE(604), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(604), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(604), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [sym_preproc_call] = STATE(604), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(604), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(604), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(604), + [sym_field_declaration] = STATE(604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_if_token2] = ACTIONS(1766), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1745), - [anon_sym_COLON] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), }, [393] = { - [sym_pointer_expression] = STATE(60), - [sym_logical_expression] = STATE(60), - [sym_math_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym__expression] = STATE(60), - [sym_bitwise_expression] = STATE(60), - [sym_equality_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_char_literal] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_relational_expression] = STATE(60), - [sym_shift_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [sym_false] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(441), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(441), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(442), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(442), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(441), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(441), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(441), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), + [sym_field_declaration] = STATE(441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [aux_sym_preproc_if_token2] = ACTIONS(1768), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [sym_comment] = ACTIONS(3), }, [394] = { - [anon_sym_LPAREN2] = ACTIONS(1749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1770), + [anon_sym_union] = ACTIONS(1770), + [anon_sym_unsigned] = ACTIONS(1770), + [anon_sym_restrict] = ACTIONS(1770), + [anon_sym_short] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1770), + [anon_sym_volatile] = ACTIONS(1770), + [anon_sym_register] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1770), + [anon_sym_struct] = ACTIONS(1770), + [sym_preproc_directive] = ACTIONS(1770), + [anon_sym_signed] = ACTIONS(1770), + [aux_sym_preproc_if_token1] = ACTIONS(1770), + [anon_sym_long] = ACTIONS(1770), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1770), + [aux_sym_preproc_def_token1] = ACTIONS(1770), + [anon_sym__Atomic] = ACTIONS(1770), + [anon_sym_auto] = ACTIONS(1770), + [sym_primitive_type] = ACTIONS(1770), + [anon_sym_inline] = ACTIONS(1770), + [anon_sym___attribute__] = ACTIONS(1770), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1749), - [anon_sym_COLON] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1749), }, [395] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(439), - [sym_math_expression] = STATE(439), - [sym_cast_expression] = STATE(439), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(439), - [sym_bitwise_expression] = STATE(439), - [sym_equality_expression] = STATE(439), - [sym_sizeof_expression] = STATE(439), - [sym_compound_literal_expression] = STATE(439), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(439), - [sym_concatenated_string] = STATE(439), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_conditional_expression] = STATE(439), - [sym_assignment_expression] = STATE(439), - [sym_relational_expression] = STATE(439), - [sym_shift_expression] = STATE(439), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1751), - [anon_sym_restrict] = ACTIONS(13), + [aux_sym_preproc_if_token2] = ACTIONS(1774), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_true] = ACTIONS(1751), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1753), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1751), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), }, [396] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_unsigned] = ACTIONS(1776), + [anon_sym_restrict] = ACTIONS(1776), + [anon_sym_short] = ACTIONS(1776), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_volatile] = ACTIONS(1776), + [anon_sym_register] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [sym_identifier] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [sym_preproc_directive] = ACTIONS(1776), + [anon_sym_signed] = ACTIONS(1776), + [aux_sym_preproc_if_token1] = ACTIONS(1776), + [anon_sym_long] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1776), + [aux_sym_preproc_def_token1] = ACTIONS(1776), + [anon_sym__Atomic] = ACTIONS(1776), + [anon_sym_auto] = ACTIONS(1776), + [sym_primitive_type] = ACTIONS(1776), + [anon_sym_inline] = ACTIONS(1776), + [anon_sym___attribute__] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), }, [397] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_restrict] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_volatile] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1757), - [sym_preproc_directive] = ACTIONS(1757), - [anon_sym_signed] = ACTIONS(1757), - [aux_sym_preproc_if_token1] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1757), - [aux_sym_preproc_def_token1] = ACTIONS(1757), - [anon_sym__Atomic] = ACTIONS(1757), - [anon_sym_auto] = ACTIONS(1757), - [sym_primitive_type] = ACTIONS(1757), - [anon_sym_inline] = ACTIONS(1757), - [anon_sym___attribute__] = ACTIONS(1757), + [aux_sym_preproc_if_token2] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), }, [398] = { - [aux_sym_field_declaration_repeat1] = STATE(398), + [sym_parameter_list] = STATE(329), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_COLON] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1761), - [anon_sym_COLON] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1257), }, [399] = { + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1784), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_RPAREN] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1784), }, [400] = { - [aux_sym_preproc_if_token2] = ACTIONS(1766), + [sym_parameter_list] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(1257), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_COLON] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), }, [401] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(316), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_pointer_expression] = STATE(62), + [sym_logical_expression] = STATE(62), + [sym_math_expression] = STATE(62), + [sym_cast_expression] = STATE(62), + [sym_field_expression] = STATE(62), + [sym__expression] = STATE(62), + [sym_bitwise_expression] = STATE(62), + [sym_equality_expression] = STATE(62), + [sym_sizeof_expression] = STATE(62), + [sym_compound_literal_expression] = STATE(62), + [sym_parenthesized_expression] = STATE(62), + [sym_char_literal] = STATE(62), + [sym_concatenated_string] = STATE(62), + [sym_conditional_expression] = STATE(62), + [sym_assignment_expression] = STATE(62), + [sym_relational_expression] = STATE(62), + [sym_shift_expression] = STATE(62), + [sym_subscript_expression] = STATE(62), + [sym_call_expression] = STATE(62), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(189), + [sym_identifier] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [402] = { - [anon_sym_PERCENT] = ACTIONS(1770), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1772), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_DASH_GT] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1772), - [anon_sym_LT_LT_EQ] = ACTIONS(1772), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1772), - [anon_sym_CARET_EQ] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_GT_GT_EQ] = ACTIONS(1772), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_PIPE_EQ] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_AMP_EQ] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1772), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_COLON] = ACTIONS(1772), - [anon_sym_STAR_EQ] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1790), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), }, [403] = { - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_DOT] = ACTIONS(1774), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(447), + [sym_math_expression] = STATE(447), + [sym_cast_expression] = STATE(447), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(447), + [sym_bitwise_expression] = STATE(447), + [sym_equality_expression] = STATE(447), + [sym_sizeof_expression] = STATE(447), + [sym_compound_literal_expression] = STATE(447), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(447), + [sym_concatenated_string] = STATE(447), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_conditional_expression] = STATE(447), + [sym_assignment_expression] = STATE(447), + [sym_relational_expression] = STATE(447), + [sym_shift_expression] = STATE(447), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1792), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1794), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1792), + [sym_null] = ACTIONS(1792), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [404] = { - [sym_concatenated_string] = STATE(443), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(443), - [sym_math_expression] = STATE(443), - [sym_cast_expression] = STATE(443), - [sym_field_expression] = STATE(35), - [sym_conditional_expression] = STATE(443), - [sym_assignment_expression] = STATE(443), - [sym_relational_expression] = STATE(443), - [sym_shift_expression] = STATE(443), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_initializer_list] = STATE(442), - [sym_string_literal] = STATE(38), - [sym__expression] = STATE(443), - [sym_bitwise_expression] = STATE(443), - [sym_equality_expression] = STATE(443), - [sym_sizeof_expression] = STATE(443), - [sym_compound_literal_expression] = STATE(443), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(443), - [anon_sym_LBRACE] = ACTIONS(900), - [sym_null] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(1776), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [405] = { - [sym_subscript_designator] = STATE(405), - [sym_field_designator] = STATE(405), - [aux_sym_initializer_pair_repeat1] = STATE(405), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_unsigned] = ACTIONS(1798), + [anon_sym_restrict] = ACTIONS(1798), + [anon_sym_short] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_volatile] = ACTIONS(1798), + [anon_sym_register] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1798), + [anon_sym_struct] = ACTIONS(1798), + [sym_preproc_directive] = ACTIONS(1798), + [anon_sym_signed] = ACTIONS(1798), + [aux_sym_preproc_if_token1] = ACTIONS(1798), + [anon_sym_long] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), + [aux_sym_preproc_def_token1] = ACTIONS(1798), + [anon_sym__Atomic] = ACTIONS(1798), + [anon_sym_auto] = ACTIONS(1798), + [sym_primitive_type] = ACTIONS(1798), + [anon_sym_inline] = ACTIONS(1798), + [anon_sym___attribute__] = ACTIONS(1798), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1785), }, [406] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(446), - [sym_math_expression] = STATE(446), - [sym_cast_expression] = STATE(446), - [sym_field_expression] = STATE(35), - [sym_subscript_designator] = STATE(329), - [sym_field_designator] = STATE(329), - [sym__expression] = STATE(446), - [sym_bitwise_expression] = STATE(446), - [sym_equality_expression] = STATE(446), - [sym_sizeof_expression] = STATE(446), - [sym_compound_literal_expression] = STATE(446), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(446), - [sym_concatenated_string] = STATE(446), - [aux_sym_initializer_pair_repeat1] = STATE(329), - [sym_conditional_expression] = STATE(446), - [sym_assignment_expression] = STATE(446), - [sym_relational_expression] = STATE(446), - [sym_shift_expression] = STATE(446), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_initializer_list] = STATE(445), - [sym_initializer_pair] = STATE(445), - [sym_string_literal] = STATE(38), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(1253), - [sym_null] = ACTIONS(1788), + [aux_sym_field_declaration_repeat1] = STATE(406), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1790), - [sym_true] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1788), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_COLON] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), }, [407] = { - [aux_sym_initializer_list_repeat1] = STATE(448), - [anon_sym_COMMA] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1790), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1805), }, [408] = { - [anon_sym_COMMA] = ACTIONS(1796), - [anon_sym_RPAREN] = ACTIONS(1796), + [aux_sym_preproc_if_token2] = ACTIONS(1807), [sym_comment] = ACTIONS(3), }, [409] = { - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_EQ] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_COLON] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [410] = { - [aux_sym_parameter_list_repeat1] = STATE(410), - [anon_sym_COMMA] = ACTIONS(1800), - [anon_sym_RPAREN] = ACTIONS(1796), - [sym_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(1811), + [anon_sym_PERCENT_EQ] = ACTIONS(1813), + [anon_sym_DASH_EQ] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_LT_EQ] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_DASH_GT] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1813), + [anon_sym_LT_LT_EQ] = ACTIONS(1813), + [anon_sym_QMARK] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(1813), + [anon_sym_CARET_EQ] = ACTIONS(1813), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1813), + [anon_sym_GT_GT_EQ] = ACTIONS(1813), + [anon_sym_LT_LT] = ACTIONS(1811), + [anon_sym_PIPE_EQ] = ACTIONS(1813), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_RBRACK] = ACTIONS(1813), + [anon_sym_AMP_EQ] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_AMP_AMP] = ACTIONS(1813), + [anon_sym_EQ] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(1813), + [anon_sym_GT_GT] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_COLON] = ACTIONS(1813), + [anon_sym_STAR_EQ] = ACTIONS(1813), + [anon_sym_EQ_EQ] = ACTIONS(1813), + [anon_sym_PIPE_PIPE] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_SLASH_EQ] = ACTIONS(1813), + [anon_sym_BANG_EQ] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1811), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1813), }, [411] = { - [sym_function_declarator] = STATE(291), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_parameter_list] = STATE(152), - [sym__declarator] = STATE(291), - [sym_abstract_function_declarator] = STATE(333), - [sym_array_declarator] = STATE(291), - [sym__abstract_declarator] = STATE(333), - [sym_pointer_declarator] = STATE(291), - [sym_abstract_array_declarator] = STATE(333), - [sym_abstract_pointer_declarator] = STATE(333), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1815), [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(1289), - [sym_identifier] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_DOT] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1815), }, [412] = { - [anon_sym_restrict] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(446), - [anon_sym_static] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(446), - [sym_comment] = ACTIONS(3), - [sym_identifier] = ACTIONS(237), - [anon_sym_const] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym__Atomic] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(1807), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_inline] = ACTIONS(237), - [anon_sym___attribute__] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(1807), + [sym_concatenated_string] = STATE(451), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(451), + [sym_math_expression] = STATE(451), + [sym_cast_expression] = STATE(451), + [sym_field_expression] = STATE(36), + [sym_conditional_expression] = STATE(451), + [sym_assignment_expression] = STATE(451), + [sym_relational_expression] = STATE(451), + [sym_shift_expression] = STATE(451), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_initializer_list] = STATE(450), + [sym_string_literal] = STATE(39), + [sym__expression] = STATE(451), + [sym_bitwise_expression] = STATE(451), + [sym_equality_expression] = STATE(451), + [sym_sizeof_expression] = STATE(451), + [sym_compound_literal_expression] = STATE(451), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(451), + [anon_sym_LBRACE] = ACTIONS(922), + [sym_false] = ACTIONS(1817), + [sym_identifier] = ACTIONS(135), + [sym_number_literal] = ACTIONS(1819), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [sym_true] = ACTIONS(1817), + [sym_null] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [413] = { - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LPAREN2] = ACTIONS(1810), + [sym_subscript_designator] = STATE(413), + [sym_field_designator] = STATE(413), + [aux_sym_initializer_pair_repeat1] = STATE(413), + [anon_sym_EQ] = ACTIONS(1821), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1826), }, [414] = { - [sym_pointer_expression] = STATE(60), - [sym_logical_expression] = STATE(60), - [sym_math_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym__expression] = STATE(60), - [sym_bitwise_expression] = STATE(60), - [sym_equality_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_char_literal] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_relational_expression] = STATE(60), - [sym_shift_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(179), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(454), + [sym_math_expression] = STATE(454), + [sym_cast_expression] = STATE(454), + [sym_field_expression] = STATE(36), + [sym_subscript_designator] = STATE(337), + [sym_field_designator] = STATE(337), + [sym__expression] = STATE(454), + [sym_bitwise_expression] = STATE(454), + [sym_equality_expression] = STATE(454), + [sym_sizeof_expression] = STATE(454), + [sym_compound_literal_expression] = STATE(454), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(454), + [sym_concatenated_string] = STATE(454), + [aux_sym_initializer_pair_repeat1] = STATE(337), + [sym_conditional_expression] = STATE(454), + [sym_assignment_expression] = STATE(454), + [sym_relational_expression] = STATE(454), + [sym_shift_expression] = STATE(454), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_initializer_list] = STATE(453), + [sym_initializer_pair] = STATE(453), + [sym_string_literal] = STATE(39), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(1287), + [sym_false] = ACTIONS(1829), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1831), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [sym_false] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1829), + [sym_null] = ACTIONS(1829), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [415] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_initializer_list_repeat1] = STATE(456), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1831), }, [416] = { - [anon_sym_case] = ACTIONS(1814), - [sym_null] = ACTIONS(1814), - [anon_sym_restrict] = ACTIONS(1814), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_typedef] = ACTIONS(1814), - [anon_sym_DASH_DASH] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1814), - [anon_sym__Atomic] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1814), - [sym_number_literal] = ACTIONS(1816), - [anon_sym_volatile] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym_PLUS_PLUS] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1814), - [anon_sym_signed] = ACTIONS(1814), - [anon_sym_long] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DQUOTE] = ACTIONS(1816), - [anon_sym___attribute__] = ACTIONS(1814), - [anon_sym_sizeof] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1814), - [anon_sym_unsigned] = ACTIONS(1814), - [anon_sym_short] = ACTIONS(1814), - [anon_sym_do] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1816), - [sym_preproc_directive] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1816), - [aux_sym_preproc_if_token1] = ACTIONS(1814), - [anon_sym_LPAREN2] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1816), - [sym_true] = ACTIONS(1814), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [aux_sym_preproc_include_token1] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1814), - [anon_sym_register] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_switch] = ACTIONS(1814), - [sym_false] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1814), - [ts_builtin_sym_end] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [anon_sym_SEMI] = ACTIONS(1816), - [aux_sym_preproc_def_token1] = ACTIONS(1814), - [anon_sym_auto] = ACTIONS(1814), - [anon_sym_inline] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [sym_comment] = ACTIONS(3), }, [417] = { - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_EQ] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym___attribute__] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), }, [418] = { - [sym_pointer_expression] = STATE(60), - [sym_logical_expression] = STATE(60), - [sym_math_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym__expression] = STATE(60), - [sym_bitwise_expression] = STATE(60), - [sym_equality_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_char_literal] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_relational_expression] = STATE(60), - [sym_shift_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [sym_false] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [aux_sym_parameter_list_repeat1] = STATE(418), + [anon_sym_COMMA] = ACTIONS(1841), + [anon_sym_RPAREN] = ACTIONS(1837), + [sym_comment] = ACTIONS(3), }, [419] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_function_declarator] = STATE(299), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_parameter_list] = STATE(157), + [sym__declarator] = STATE(299), + [sym_abstract_function_declarator] = STATE(341), + [sym_array_declarator] = STATE(299), + [sym__abstract_declarator] = STATE(341), + [sym_pointer_declarator] = STATE(299), + [sym_abstract_array_declarator] = STATE(341), + [sym_abstract_pointer_declarator] = STATE(341), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(1150), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(472), }, [420] = { - [anon_sym_case] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym_sizeof] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1824), - [sym_preproc_directive] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [sym_true] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1822), - [ts_builtin_sym_end] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_restrict] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(456), + [anon_sym_static] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [anon_sym_register] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(456), + [sym_identifier] = ACTIONS(149), + [anon_sym_const] = ACTIONS(149), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym__Atomic] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [anon_sym_inline] = ACTIONS(149), + [anon_sym___attribute__] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(1848), }, [421] = { - [sym_while_statement] = STATE(451), - [sym_continue_statement] = STATE(451), - [sym_goto_statement] = STATE(451), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(451), - [sym_expression_statement] = STATE(451), - [sym_if_statement] = STATE(451), - [sym_do_statement] = STATE(451), - [sym_for_statement] = STATE(451), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(451), - [sym_return_statement] = STATE(451), - [sym_break_statement] = STATE(451), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(451), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [anon_sym_RPAREN] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(1851), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + }, + [422] = { + [sym_pointer_expression] = STATE(62), + [sym_logical_expression] = STATE(62), + [sym_math_expression] = STATE(62), + [sym_cast_expression] = STATE(62), + [sym_field_expression] = STATE(62), + [sym__expression] = STATE(62), + [sym_bitwise_expression] = STATE(62), + [sym_equality_expression] = STATE(62), + [sym_sizeof_expression] = STATE(62), + [sym_compound_literal_expression] = STATE(62), + [sym_parenthesized_expression] = STATE(62), + [sym_char_literal] = STATE(62), + [sym_concatenated_string] = STATE(62), + [sym_conditional_expression] = STATE(62), + [sym_assignment_expression] = STATE(62), + [sym_relational_expression] = STATE(62), + [sym_shift_expression] = STATE(62), + [sym_subscript_expression] = STATE(62), + [sym_call_expression] = STATE(62), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(189), + [sym_identifier] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), + }, + [423] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [424] = { + [anon_sym_case] = ACTIONS(1855), + [sym_false] = ACTIONS(1855), + [anon_sym_restrict] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1855), + [anon_sym_goto] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_typedef] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1855), + [anon_sym__Atomic] = ACTIONS(1855), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1855), + [sym_number_literal] = ACTIONS(1857), + [anon_sym_volatile] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_signed] = ACTIONS(1855), + [anon_sym_long] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1855), + [anon_sym_L] = ACTIONS(1855), + [anon_sym___attribute__] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1855), + [anon_sym_unsigned] = ACTIONS(1855), + [anon_sym_short] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1857), + [sym_preproc_directive] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1857), + [aux_sym_preproc_if_token1] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [sym_primitive_type] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [aux_sym_preproc_include_token1] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(1855), + [sym_true] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [sym_null] = ACTIONS(1855), + [ts_builtin_sym_end] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1857), + [aux_sym_preproc_def_token1] = ACTIONS(1855), + [anon_sym_auto] = ACTIONS(1855), + [anon_sym_inline] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + }, + [425] = { + [anon_sym_LBRACK] = ACTIONS(1859), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1859), + }, + [426] = { + [sym_pointer_expression] = STATE(62), + [sym_logical_expression] = STATE(62), + [sym_math_expression] = STATE(62), + [sym_cast_expression] = STATE(62), + [sym_field_expression] = STATE(62), + [sym__expression] = STATE(62), + [sym_bitwise_expression] = STATE(62), + [sym_equality_expression] = STATE(62), + [sym_sizeof_expression] = STATE(62), + [sym_compound_literal_expression] = STATE(62), + [sym_parenthesized_expression] = STATE(62), + [sym_char_literal] = STATE(62), + [sym_concatenated_string] = STATE(62), + [sym_conditional_expression] = STATE(62), + [sym_assignment_expression] = STATE(62), + [sym_relational_expression] = STATE(62), + [sym_shift_expression] = STATE(62), + [sym_subscript_expression] = STATE(62), + [sym_call_expression] = STATE(62), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(189), + [sym_identifier] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), + }, + [427] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [428] = { + [anon_sym_case] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), + [anon_sym_restrict] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1863), + [anon_sym_goto] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_typedef] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_default] = ACTIONS(1863), + [anon_sym__Atomic] = ACTIONS(1863), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), + [sym_number_literal] = ACTIONS(1865), + [anon_sym_volatile] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_struct] = ACTIONS(1863), + [anon_sym_signed] = ACTIONS(1863), + [anon_sym_long] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), + [anon_sym_L] = ACTIONS(1863), + [anon_sym___attribute__] = ACTIONS(1863), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1863), + [anon_sym_unsigned] = ACTIONS(1863), + [anon_sym_short] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1865), + [sym_preproc_directive] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1865), + [aux_sym_preproc_if_token1] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1865), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1863), + [sym_primitive_type] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [aux_sym_preproc_include_token1] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [ts_builtin_sym_end] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1865), + [aux_sym_preproc_def_token1] = ACTIONS(1863), + [anon_sym_auto] = ACTIONS(1863), + [anon_sym_inline] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + }, + [429] = { + [sym_while_statement] = STATE(459), + [sym_continue_statement] = STATE(459), + [sym_goto_statement] = STATE(459), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(459), + [sym_expression_statement] = STATE(459), + [sym_if_statement] = STATE(459), + [sym_do_statement] = STATE(459), + [sym_for_statement] = STATE(459), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(459), + [sym_return_statement] = STATE(459), + [sym_break_statement] = STATE(459), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(386), [anon_sym_do] = ACTIONS(21), [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(507), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [422] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(1826), - [anon_sym_COMMA] = ACTIONS(1108), + [430] = { + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(1867), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), }, - [423] = { - [aux_sym_for_statement_repeat1] = STATE(453), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [431] = { + [aux_sym_for_statement_repeat1] = STATE(461), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, - [424] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(454), - [sym_math_expression] = STATE(454), - [sym_cast_expression] = STATE(454), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(454), - [sym_bitwise_expression] = STATE(454), - [sym_equality_expression] = STATE(454), - [sym_sizeof_expression] = STATE(454), - [sym_compound_literal_expression] = STATE(454), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(454), - [sym_concatenated_string] = STATE(454), - [sym_conditional_expression] = STATE(454), - [sym_assignment_expression] = STATE(454), - [sym_relational_expression] = STATE(454), - [sym_shift_expression] = STATE(454), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(1828), - [sym_comment] = ACTIONS(3), + [432] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(462), + [sym_math_expression] = STATE(462), + [sym_cast_expression] = STATE(462), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(462), + [sym_bitwise_expression] = STATE(462), + [sym_equality_expression] = STATE(462), + [sym_sizeof_expression] = STATE(462), + [sym_compound_literal_expression] = STATE(462), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(462), + [sym_concatenated_string] = STATE(462), + [sym_conditional_expression] = STATE(462), + [sym_assignment_expression] = STATE(462), + [sym_relational_expression] = STATE(462), + [sym_shift_expression] = STATE(462), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(1869), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1828), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1869), + [sym_null] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [425] = { - [sym_while_statement] = STATE(455), - [sym_continue_statement] = STATE(455), - [sym_goto_statement] = STATE(455), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_declaration] = STATE(455), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(455), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_expression_statement] = STATE(455), - [sym_if_statement] = STATE(455), - [sym_do_statement] = STATE(455), - [sym_for_statement] = STATE(455), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_type_definition] = STATE(455), - [sym_sizeof_expression] = STATE(42), - [sym__declaration_specifiers] = STATE(162), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(42), - [sym_char_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(455), - [sym_return_statement] = STATE(455), - [sym_break_statement] = STATE(455), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [aux_sym_case_statement_repeat1] = STATE(455), - [sym_labeled_statement] = STATE(455), + [433] = { + [sym_while_statement] = STATE(463), + [sym_continue_statement] = STATE(463), + [sym_goto_statement] = STATE(463), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_declaration] = STATE(463), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(463), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_expression_statement] = STATE(463), + [sym_if_statement] = STATE(463), + [sym_do_statement] = STATE(463), + [sym_for_statement] = STATE(463), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_type_definition] = STATE(463), + [sym_sizeof_expression] = STATE(43), + [sym__declaration_specifiers] = STATE(169), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(43), + [sym_char_literal] = STATE(43), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(463), + [sym_return_statement] = STATE(463), + [sym_break_statement] = STATE(463), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [aux_sym_case_statement_repeat1] = STATE(463), + [sym_labeled_statement] = STATE(463), [anon_sym_LBRACE] = ACTIONS(5), [anon_sym_union] = ACTIONS(7), - [anon_sym_case] = ACTIONS(1832), - [sym_null] = ACTIONS(11), + [anon_sym_case] = ACTIONS(1873), + [sym_false] = ACTIONS(11), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_identifier] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), [anon_sym_do] = ACTIONS(21), [anon_sym_goto] = ACTIONS(23), - [sym_comment] = ACTIONS(3), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_default] = ACTIONS(1832), - [sym_true] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_typedef] = ACTIONS(39), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_static] = ACTIONS(19), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [anon_sym_register] = ACTIONS(17), - [sym_identifier] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [sym_null] = ACTIONS(11), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_L] = ACTIONS(9), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [426] = { - [sym_while_statement] = STATE(456), - [sym_continue_statement] = STATE(456), - [sym_goto_statement] = STATE(456), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_declaration] = STATE(456), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(456), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_expression_statement] = STATE(456), - [sym_if_statement] = STATE(456), - [sym_do_statement] = STATE(456), - [sym_for_statement] = STATE(456), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_type_definition] = STATE(456), - [sym_sizeof_expression] = STATE(42), - [sym__declaration_specifiers] = STATE(162), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(42), - [sym_char_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(456), - [sym_return_statement] = STATE(456), - [sym_break_statement] = STATE(456), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [aux_sym_case_statement_repeat1] = STATE(456), - [sym_labeled_statement] = STATE(456), + [434] = { + [sym_while_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_declaration] = STATE(464), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(464), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_expression_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_type_definition] = STATE(464), + [sym_sizeof_expression] = STATE(43), + [sym__declaration_specifiers] = STATE(169), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(43), + [sym_char_literal] = STATE(43), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [aux_sym_case_statement_repeat1] = STATE(464), + [sym_labeled_statement] = STATE(464), [anon_sym_LBRACE] = ACTIONS(5), [anon_sym_union] = ACTIONS(7), - [anon_sym_case] = ACTIONS(1832), - [sym_null] = ACTIONS(11), + [anon_sym_case] = ACTIONS(1873), + [sym_false] = ACTIONS(11), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_identifier] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), [anon_sym_do] = ACTIONS(21), [anon_sym_goto] = ACTIONS(23), - [sym_comment] = ACTIONS(3), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_default] = ACTIONS(1832), - [sym_true] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_typedef] = ACTIONS(39), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_static] = ACTIONS(19), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [anon_sym_register] = ACTIONS(17), - [sym_identifier] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [sym_null] = ACTIONS(11), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_L] = ACTIONS(9), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [427] = { - [anon_sym_restrict] = ACTIONS(1836), - [sym_comment] = ACTIONS(3), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_volatile] = ACTIONS(1836), - [anon_sym_register] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_COMMA] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_LPAREN2] = ACTIONS(1838), - [anon_sym_COLON] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym__Atomic] = ACTIONS(1836), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_auto] = ACTIONS(1836), - [anon_sym_inline] = ACTIONS(1836), - [anon_sym___attribute__] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1838), + [435] = { + [anon_sym_restrict] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_volatile] = ACTIONS(1877), + [anon_sym_register] = ACTIONS(1877), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_LPAREN2] = ACTIONS(1879), + [anon_sym_COLON] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym__Atomic] = ACTIONS(1877), + [sym_comment] = ACTIONS(3), + [anon_sym_auto] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1877), + [anon_sym___attribute__] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1879), }, - [428] = { - [sym_enumerator] = STATE(369), - [sym_identifier] = ACTIONS(519), + [436] = { + [sym_enumerator] = STATE(377), + [sym_identifier] = ACTIONS(537), [sym_comment] = ACTIONS(3), }, - [429] = { - [anon_sym_COMMA] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), + [437] = { + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(1842), - [sym_preproc_arg] = ACTIONS(1844), + [438] = { + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(1883), + [sym_preproc_arg] = ACTIONS(1885), }, - [431] = { - [aux_sym_preproc_params_repeat1] = STATE(431), - [anon_sym_COMMA] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1840), + [439] = { + [aux_sym_preproc_params_repeat1] = STATE(439), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1881), [sym_comment] = ACTIONS(3), }, - [432] = { - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1849), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), + [440] = { + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), }, - [433] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(521), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(521), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(457), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(457), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(521), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(521), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(521), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), - [sym_field_declaration] = STATE(521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), + [441] = { + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(530), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(530), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(530), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(465), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(465), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(530), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(530), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(530), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(530), + [sym_field_declaration] = STATE(530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [aux_sym_preproc_if_token2] = ACTIONS(1851), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [aux_sym_preproc_if_token2] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - }, - [434] = { - [aux_sym_preproc_if_token2] = ACTIONS(1853), - [sym_comment] = ACTIONS(3), - }, - [435] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1855), - [anon_sym_union] = ACTIONS(1855), - [anon_sym_unsigned] = ACTIONS(1855), - [anon_sym_restrict] = ACTIONS(1855), - [anon_sym_short] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_volatile] = ACTIONS(1855), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1855), - [sym_preproc_directive] = ACTIONS(1855), - [anon_sym_signed] = ACTIONS(1855), - [aux_sym_preproc_if_token1] = ACTIONS(1855), - [anon_sym_long] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1857), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1855), - [aux_sym_preproc_def_token1] = ACTIONS(1855), - [anon_sym__Atomic] = ACTIONS(1855), - [anon_sym_auto] = ACTIONS(1855), - [sym_primitive_type] = ACTIONS(1855), - [anon_sym_inline] = ACTIONS(1855), - [anon_sym___attribute__] = ACTIONS(1855), - }, - [436] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1859), - [anon_sym_union] = ACTIONS(1859), - [anon_sym_unsigned] = ACTIONS(1859), - [anon_sym_restrict] = ACTIONS(1859), - [anon_sym_short] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1859), - [anon_sym_volatile] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1859), - [sym_preproc_directive] = ACTIONS(1859), - [anon_sym_signed] = ACTIONS(1859), - [aux_sym_preproc_if_token1] = ACTIONS(1859), - [anon_sym_long] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1861), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1859), - [aux_sym_preproc_def_token1] = ACTIONS(1859), - [anon_sym__Atomic] = ACTIONS(1859), - [anon_sym_auto] = ACTIONS(1859), - [sym_primitive_type] = ACTIONS(1859), - [anon_sym_inline] = ACTIONS(1859), - [anon_sym___attribute__] = ACTIONS(1859), - }, - [437] = { - [anon_sym_LPAREN2] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1863), - [anon_sym_COLON] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - }, - [438] = { - [sym_pointer_expression] = STATE(60), - [sym_logical_expression] = STATE(60), - [sym_math_expression] = STATE(60), - [sym_cast_expression] = STATE(60), - [sym_field_expression] = STATE(60), - [sym__expression] = STATE(60), - [sym_bitwise_expression] = STATE(60), - [sym_equality_expression] = STATE(60), - [sym_sizeof_expression] = STATE(60), - [sym_compound_literal_expression] = STATE(60), - [sym_parenthesized_expression] = STATE(60), - [sym_char_literal] = STATE(60), - [sym_concatenated_string] = STATE(60), - [sym_conditional_expression] = STATE(60), - [sym_assignment_expression] = STATE(60), - [sym_relational_expression] = STATE(60), - [sym_shift_expression] = STATE(60), - [sym_subscript_expression] = STATE(60), - [sym_call_expression] = STATE(60), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(169), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [sym_false] = ACTIONS(169), - [sym_identifier] = ACTIONS(169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), - }, - [439] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_RBRACK] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [440] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1867), - [sym_preproc_directive] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [aux_sym_preproc_if_token1] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [sym_identifier] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1869), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1867), - [aux_sym_preproc_def_token1] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym_auto] = ACTIONS(1867), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym___attribute__] = ACTIONS(1867), - }, - [441] = { - [anon_sym_EQ] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(1871), }, [442] = { - [anon_sym_COMMA] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), + [aux_sym_preproc_if_token2] = ACTIONS(1894), [sym_comment] = ACTIONS(3), }, [443] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(1873), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_unsigned] = ACTIONS(1896), + [anon_sym_restrict] = ACTIONS(1896), + [anon_sym_short] = ACTIONS(1896), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_volatile] = ACTIONS(1896), + [anon_sym_register] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [sym_preproc_directive] = ACTIONS(1896), + [anon_sym_signed] = ACTIONS(1896), + [aux_sym_preproc_if_token1] = ACTIONS(1896), + [anon_sym_long] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1898), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1896), + [aux_sym_preproc_def_token1] = ACTIONS(1896), + [anon_sym__Atomic] = ACTIONS(1896), + [anon_sym_auto] = ACTIONS(1896), + [sym_primitive_type] = ACTIONS(1896), + [anon_sym_inline] = ACTIONS(1896), + [anon_sym___attribute__] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), }, [444] = { - [anon_sym_PERCENT] = ACTIONS(1875), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1877), - [anon_sym_DASH_EQ] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_LT_EQ] = ACTIONS(1877), - [anon_sym_CARET] = ACTIONS(1875), - [anon_sym_DASH_GT] = ACTIONS(1877), - [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_PLUS_EQ] = ACTIONS(1877), - [anon_sym_LT_LT_EQ] = ACTIONS(1877), - [anon_sym_QMARK] = ACTIONS(1877), - [anon_sym_GT_EQ] = ACTIONS(1877), - [anon_sym_CARET_EQ] = ACTIONS(1877), - [anon_sym_COMMA] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), - [anon_sym_GT_GT_EQ] = ACTIONS(1877), - [anon_sym_LT_LT] = ACTIONS(1875), - [anon_sym_PIPE_EQ] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_RBRACK] = ACTIONS(1877), - [anon_sym_AMP_EQ] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_AMP_AMP] = ACTIONS(1877), - [anon_sym_EQ] = ACTIONS(1875), - [anon_sym_LPAREN2] = ACTIONS(1877), - [anon_sym_GT_GT] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_COLON] = ACTIONS(1877), - [anon_sym_STAR_EQ] = ACTIONS(1877), - [anon_sym_EQ_EQ] = ACTIONS(1877), - [anon_sym_PIPE_PIPE] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_SLASH_EQ] = ACTIONS(1877), - [anon_sym_BANG_EQ] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_GT] = ACTIONS(1875), - [anon_sym_PIPE] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsigned] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [anon_sym_short] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [sym_preproc_directive] = ACTIONS(1900), + [anon_sym_signed] = ACTIONS(1900), + [aux_sym_preproc_if_token1] = ACTIONS(1900), + [anon_sym_long] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1902), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), + [aux_sym_preproc_def_token1] = ACTIONS(1900), + [anon_sym__Atomic] = ACTIONS(1900), + [anon_sym_auto] = ACTIONS(1900), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_inline] = ACTIONS(1900), + [anon_sym___attribute__] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), }, [445] = { - [anon_sym_COMMA] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LPAREN2] = ACTIONS(1904), + [anon_sym_COMMA] = ACTIONS(1904), + [anon_sym_COLON] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1904), [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), }, [446] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(1879), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [447] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(446), - [sym_math_expression] = STATE(446), - [sym_cast_expression] = STATE(446), - [sym_field_expression] = STATE(35), - [sym_subscript_designator] = STATE(329), - [sym_field_designator] = STATE(329), - [sym__expression] = STATE(446), - [sym_bitwise_expression] = STATE(446), - [sym_equality_expression] = STATE(446), - [sym_sizeof_expression] = STATE(446), - [sym_compound_literal_expression] = STATE(446), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(446), - [sym_concatenated_string] = STATE(446), - [aux_sym_initializer_pair_repeat1] = STATE(329), - [sym_conditional_expression] = STATE(446), - [sym_assignment_expression] = STATE(446), - [sym_relational_expression] = STATE(446), - [sym_shift_expression] = STATE(446), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_initializer_list] = STATE(445), - [sym_initializer_pair] = STATE(445), - [sym_string_literal] = STATE(38), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(1253), - [sym_null] = ACTIONS(1788), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), + [sym_pointer_expression] = STATE(62), + [sym_logical_expression] = STATE(62), + [sym_math_expression] = STATE(62), + [sym_cast_expression] = STATE(62), + [sym_field_expression] = STATE(62), + [sym__expression] = STATE(62), + [sym_bitwise_expression] = STATE(62), + [sym_equality_expression] = STATE(62), + [sym_sizeof_expression] = STATE(62), + [sym_compound_literal_expression] = STATE(62), + [sym_parenthesized_expression] = STATE(62), + [sym_char_literal] = STATE(62), + [sym_concatenated_string] = STATE(62), + [sym_conditional_expression] = STATE(62), + [sym_assignment_expression] = STATE(62), + [sym_relational_expression] = STATE(62), + [sym_shift_expression] = STATE(62), + [sym_subscript_expression] = STATE(62), + [sym_call_expression] = STATE(62), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(189), + [sym_identifier] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(1881), - [sym_true] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(1788), - [sym_identifier] = ACTIONS(135), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), + }, + [447] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [448] = { - [aux_sym_initializer_list_repeat1] = STATE(448), - [anon_sym_COMMA] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [sym_preproc_directive] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_def_token1] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), [sym_comment] = ACTIONS(3), }, [449] = { - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_EQ] = ACTIONS(1912), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), }, [450] = { - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_LPAREN2] = ACTIONS(1888), - [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1888), }, [451] = { - [anon_sym_case] = ACTIONS(1890), - [sym_null] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_typedef] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1890), - [anon_sym__Atomic] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym_sizeof] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_TILDE] = ACTIONS(1892), - [sym_preproc_directive] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1892), - [aux_sym_preproc_if_token1] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1890), - [sym_true] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [aux_sym_preproc_include_token1] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1890), - [sym_false] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1890), - [ts_builtin_sym_end] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1892), - [aux_sym_preproc_def_token1] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [452] = { - [sym_while_statement] = STATE(461), - [sym_continue_statement] = STATE(461), - [sym_goto_statement] = STATE(461), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(461), - [sym_expression_statement] = STATE(461), - [sym_if_statement] = STATE(461), - [sym_do_statement] = STATE(461), - [sym_for_statement] = STATE(461), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(461), - [sym_return_statement] = STATE(461), - [sym_break_statement] = STATE(461), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(461), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(507), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(1916), + [anon_sym_PERCENT_EQ] = ACTIONS(1918), + [anon_sym_DASH_EQ] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_LT_EQ] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1916), + [anon_sym_DASH_GT] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1918), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1918), + [anon_sym_LT_LT_EQ] = ACTIONS(1918), + [anon_sym_QMARK] = ACTIONS(1918), + [anon_sym_GT_EQ] = ACTIONS(1918), + [anon_sym_CARET_EQ] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1918), + [anon_sym_GT_GT_EQ] = ACTIONS(1918), + [anon_sym_LT_LT] = ACTIONS(1916), + [anon_sym_PIPE_EQ] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_RBRACK] = ACTIONS(1918), + [anon_sym_AMP_EQ] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_AMP_AMP] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_GT_GT] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_COLON] = ACTIONS(1918), + [anon_sym_STAR_EQ] = ACTIONS(1918), + [anon_sym_EQ_EQ] = ACTIONS(1918), + [anon_sym_PIPE_PIPE] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_SLASH_EQ] = ACTIONS(1918), + [anon_sym_BANG_EQ] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_GT] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_DOT] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), }, [453] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_COMMA] = ACTIONS(1108), + [anon_sym_COMMA] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), [sym_comment] = ACTIONS(3), }, [454] = { - [aux_sym_for_statement_repeat1] = STATE(463), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(1920), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [455] = { - [sym_while_statement] = STATE(456), - [sym_continue_statement] = STATE(456), - [sym_goto_statement] = STATE(456), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_declaration] = STATE(456), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(456), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_expression_statement] = STATE(456), - [sym_if_statement] = STATE(456), - [sym_do_statement] = STATE(456), - [sym_for_statement] = STATE(456), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_type_definition] = STATE(456), - [sym_sizeof_expression] = STATE(42), - [sym__declaration_specifiers] = STATE(162), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(42), - [sym_char_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(456), - [sym_return_statement] = STATE(456), - [sym_break_statement] = STATE(456), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [aux_sym_case_statement_repeat1] = STATE(456), - [sym_labeled_statement] = STATE(456), - [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_union] = ACTIONS(7), - [anon_sym_case] = ACTIONS(1896), - [sym_null] = ACTIONS(11), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [sym_comment] = ACTIONS(3), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(454), + [sym_math_expression] = STATE(454), + [sym_cast_expression] = STATE(454), + [sym_field_expression] = STATE(36), + [sym_subscript_designator] = STATE(337), + [sym_field_designator] = STATE(337), + [sym__expression] = STATE(454), + [sym_bitwise_expression] = STATE(454), + [sym_equality_expression] = STATE(454), + [sym_sizeof_expression] = STATE(454), + [sym_compound_literal_expression] = STATE(454), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(454), + [sym_concatenated_string] = STATE(454), + [aux_sym_initializer_pair_repeat1] = STATE(337), + [sym_conditional_expression] = STATE(454), + [sym_assignment_expression] = STATE(454), + [sym_relational_expression] = STATE(454), + [sym_shift_expression] = STATE(454), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_initializer_list] = STATE(453), + [sym_initializer_pair] = STATE(453), + [sym_string_literal] = STATE(39), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(1287), + [sym_false] = ACTIONS(1829), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_default] = ACTIONS(1896), - [sym_true] = ACTIONS(11), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1922), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [anon_sym_register] = ACTIONS(17), - [sym_identifier] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(17), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(1829), + [sym_null] = ACTIONS(1829), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [456] = { - [sym_while_statement] = STATE(456), - [sym_continue_statement] = STATE(456), - [sym_goto_statement] = STATE(456), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_declaration] = STATE(456), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(456), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_expression_statement] = STATE(456), - [sym_if_statement] = STATE(456), - [sym_do_statement] = STATE(456), - [sym_for_statement] = STATE(456), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_type_definition] = STATE(456), - [sym_sizeof_expression] = STATE(42), - [sym__declaration_specifiers] = STATE(162), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(42), - [sym_char_literal] = STATE(42), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(456), - [sym_return_statement] = STATE(456), - [sym_break_statement] = STATE(456), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [aux_sym_case_statement_repeat1] = STATE(456), - [sym_labeled_statement] = STATE(456), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1906), - [anon_sym_unsigned] = ACTIONS(1908), - [anon_sym_restrict] = ACTIONS(1911), - [anon_sym_short] = ACTIONS(1908), - [anon_sym_sizeof] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym_null] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_goto] = ACTIONS(1926), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_LPAREN2] = ACTIONS(1935), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_default] = ACTIONS(1906), - [anon_sym__Atomic] = ACTIONS(1911), - [sym_primitive_type] = ACTIONS(1946), - [sym_true] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_volatile] = ACTIONS(1911), - [anon_sym_register] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_switch] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_long] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_PLUS_PLUS] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1982), - [sym_number_literal] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1988), - [sym_false] = ACTIONS(1920), - [sym_identifier] = ACTIONS(1991), - [anon_sym_auto] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1958), - [anon_sym___attribute__] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1973), + [aux_sym_initializer_list_repeat1] = STATE(456), + [anon_sym_COMMA] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1920), + [sym_comment] = ACTIONS(3), }, [457] = { - [aux_sym_preproc_if_token2] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_LPAREN2] = ACTIONS(1927), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1927), }, [458] = { - [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(1929), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2002), - [anon_sym_COLON] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LPAREN2] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_COMMA] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), }, [459] = { - [anon_sym_PERCENT] = ACTIONS(2004), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(2006), - [anon_sym_DASH_EQ] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2004), - [anon_sym_LT_EQ] = ACTIONS(2006), - [anon_sym_CARET] = ACTIONS(2004), - [anon_sym_DASH_GT] = ACTIONS(2006), - [anon_sym_SLASH] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2006), - [anon_sym_PLUS_EQ] = ACTIONS(2006), - [anon_sym_LT_LT_EQ] = ACTIONS(2006), - [anon_sym_QMARK] = ACTIONS(2006), - [anon_sym_GT_EQ] = ACTIONS(2006), - [anon_sym_CARET_EQ] = ACTIONS(2006), - [anon_sym_COMMA] = ACTIONS(2006), - [anon_sym_PLUS_PLUS] = ACTIONS(2006), - [anon_sym_GT_GT_EQ] = ACTIONS(2006), - [anon_sym_LT_LT] = ACTIONS(2004), - [anon_sym_PIPE_EQ] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2006), - [anon_sym_RBRACK] = ACTIONS(2006), - [anon_sym_AMP_EQ] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_AMP_AMP] = ACTIONS(2006), - [anon_sym_EQ] = ACTIONS(2004), - [anon_sym_LPAREN2] = ACTIONS(2006), - [anon_sym_GT_GT] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_COLON] = ACTIONS(2006), - [anon_sym_STAR_EQ] = ACTIONS(2006), - [anon_sym_EQ_EQ] = ACTIONS(2006), - [anon_sym_PIPE_PIPE] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_SLASH_EQ] = ACTIONS(2006), - [anon_sym_BANG_EQ] = ACTIONS(2006), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_GT] = ACTIONS(2004), - [anon_sym_PIPE] = ACTIONS(2004), - [anon_sym_DOT] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_case] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_default] = ACTIONS(1931), + [anon_sym__Atomic] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [anon_sym_L] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1933), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1933), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [aux_sym_preproc_include_token1] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [sym_null] = ACTIONS(1931), + [ts_builtin_sym_end] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [anon_sym_auto] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), }, [460] = { - [sym_concatenated_string] = STATE(446), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(446), - [sym_math_expression] = STATE(446), - [sym_cast_expression] = STATE(446), - [aux_sym_initializer_pair_repeat1] = STATE(329), - [sym_field_expression] = STATE(35), - [sym_subscript_designator] = STATE(329), - [sym_field_designator] = STATE(329), - [sym_conditional_expression] = STATE(446), - [sym_assignment_expression] = STATE(446), - [sym_relational_expression] = STATE(446), - [sym_shift_expression] = STATE(446), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_initializer_list] = STATE(445), - [sym_initializer_pair] = STATE(445), - [sym_string_literal] = STATE(38), - [sym__expression] = STATE(446), - [sym_bitwise_expression] = STATE(446), - [sym_equality_expression] = STATE(446), - [sym_sizeof_expression] = STATE(446), - [sym_compound_literal_expression] = STATE(446), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(446), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(81), - [sym_null] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(1792), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_while_statement] = STATE(469), + [sym_continue_statement] = STATE(469), + [sym_goto_statement] = STATE(469), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(469), + [sym_expression_statement] = STATE(469), + [sym_if_statement] = STATE(469), + [sym_do_statement] = STATE(469), + [sym_for_statement] = STATE(469), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(469), + [sym_return_statement] = STATE(469), + [sym_break_statement] = STATE(469), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(469), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(386), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), - [sym_false] = ACTIONS(1788), [anon_sym_AMP] = ACTIONS(31), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [461] = { - [anon_sym_case] = ACTIONS(2008), - [sym_null] = ACTIONS(2008), - [anon_sym_restrict] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2008), - [anon_sym_DASH_DASH] = ACTIONS(2010), - [anon_sym_default] = ACTIONS(2008), - [anon_sym__Atomic] = ACTIONS(2008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), - [sym_number_literal] = ACTIONS(2010), - [anon_sym_volatile] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2010), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2008), - [anon_sym_long] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2010), - [anon_sym_DQUOTE] = ACTIONS(2010), - [anon_sym___attribute__] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsigned] = ACTIONS(2008), - [anon_sym_short] = ACTIONS(2008), - [anon_sym_do] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2010), - [sym_preproc_directive] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2010), - [aux_sym_preproc_if_token1] = ACTIONS(2008), - [anon_sym_LPAREN2] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_else] = ACTIONS(2008), - [sym_true] = ACTIONS(2008), - [sym_primitive_type] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [aux_sym_preproc_include_token1] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_register] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_switch] = ACTIONS(2008), - [sym_false] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2008), - [ts_builtin_sym_end] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2010), - [aux_sym_preproc_def_token1] = ACTIONS(2008), - [anon_sym_auto] = ACTIONS(2008), - [anon_sym_inline] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2008), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(1935), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), }, [462] = { + [aux_sym_for_statement_repeat1] = STATE(471), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(1935), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [463] = { [sym_while_statement] = STATE(464), [sym_continue_statement] = STATE(464), [sym_goto_statement] = STATE(464), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_declaration] = STATE(464), + [sym_field_expression] = STATE(36), [sym_compound_statement] = STATE(464), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), [sym_expression_statement] = STATE(464), [sym_if_statement] = STATE(464), [sym_do_statement] = STATE(464), [sym_for_statement] = STATE(464), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_type_definition] = STATE(464), + [sym_sizeof_expression] = STATE(43), + [sym__declaration_specifiers] = STATE(169), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(43), + [sym_char_literal] = STATE(43), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), [sym_switch_statement] = STATE(464), [sym_return_statement] = STATE(464), [sym_break_statement] = STATE(464), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [aux_sym_case_statement_repeat1] = STATE(464), [sym_labeled_statement] = STATE(464), [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), + [anon_sym_union] = ACTIONS(7), + [anon_sym_case] = ACTIONS(1937), + [sym_false] = ACTIONS(11), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), [anon_sym_do] = ACTIONS(21), [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_const] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_default] = ACTIONS(1937), + [anon_sym_typedef] = ACTIONS(39), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_static] = ACTIONS(19), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(507), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [463] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_COMMA] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [anon_sym_volatile] = ACTIONS(13), + [sym_null] = ACTIONS(11), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_L] = ACTIONS(9), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [464] = { - [anon_sym_case] = ACTIONS(2014), - [sym_null] = ACTIONS(2014), - [anon_sym_restrict] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2014), - [anon_sym_const] = ACTIONS(2014), - [anon_sym_typedef] = ACTIONS(2014), - [anon_sym_DASH_DASH] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2014), - [anon_sym__Atomic] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2014), - [sym_number_literal] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2014), - [anon_sym_PLUS_PLUS] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2014), - [anon_sym_signed] = ACTIONS(2014), - [anon_sym_long] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2014), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2016), - [anon_sym___attribute__] = ACTIONS(2014), - [anon_sym_sizeof] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2014), - [anon_sym_unsigned] = ACTIONS(2014), - [anon_sym_short] = ACTIONS(2014), - [anon_sym_do] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2016), - [sym_preproc_directive] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_else] = ACTIONS(2014), - [sym_true] = ACTIONS(2014), - [sym_primitive_type] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2014), - [anon_sym_register] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_switch] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), + [sym_while_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_declaration] = STATE(464), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(464), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_expression_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_type_definition] = STATE(464), + [sym_sizeof_expression] = STATE(43), + [sym__declaration_specifiers] = STATE(169), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(43), + [sym_char_literal] = STATE(43), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [aux_sym_case_statement_repeat1] = STATE(464), + [sym_labeled_statement] = STATE(464), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1949), + [anon_sym_restrict] = ACTIONS(1952), + [anon_sym_short] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1955), + [sym_false] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1961), + [anon_sym_do] = ACTIONS(1964), + [anon_sym_goto] = ACTIONS(1967), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1976), + [anon_sym_typedef] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_DASH_DASH] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1987), + [anon_sym__Atomic] = ACTIONS(1952), + [sym_primitive_type] = ACTIONS(1990), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_volatile] = ACTIONS(1952), + [anon_sym_register] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2011), + [anon_sym_signed] = ACTIONS(1949), [anon_sym_enum] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2014), - [ts_builtin_sym_end] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2014), - [anon_sym_continue] = ACTIONS(2014), - [anon_sym_SEMI] = ACTIONS(2016), - [aux_sym_preproc_def_token1] = ACTIONS(2014), - [anon_sym_auto] = ACTIONS(2014), - [anon_sym_inline] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_long] = ACTIONS(1949), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_PLUS_PLUS] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2026), + [sym_number_literal] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2035), + [sym_true] = ACTIONS(1958), + [sym_null] = ACTIONS(1958), + [anon_sym_auto] = ACTIONS(2002), + [anon_sym_L] = ACTIONS(2038), + [anon_sym_inline] = ACTIONS(2002), + [anon_sym___attribute__] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2017), }, [465] = { - [sym_while_statement] = STATE(466), - [sym_continue_statement] = STATE(466), - [sym_goto_statement] = STATE(466), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(466), - [sym_expression_statement] = STATE(466), - [sym_if_statement] = STATE(466), - [sym_do_statement] = STATE(466), - [sym_for_statement] = STATE(466), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(466), - [sym_return_statement] = STATE(466), - [sym_break_statement] = STATE(466), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(466), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [aux_sym_preproc_if_token2] = ACTIONS(2044), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(21), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(57), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(507), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), }, [466] = { - [anon_sym_case] = ACTIONS(2018), - [sym_null] = ACTIONS(2018), - [anon_sym_restrict] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [anon_sym_typedef] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2018), - [anon_sym__Atomic] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2018), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2018), - [anon_sym_signed] = ACTIONS(2018), - [anon_sym_long] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym___attribute__] = ACTIONS(2018), - [anon_sym_sizeof] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2018), - [anon_sym_unsigned] = ACTIONS(2018), - [anon_sym_short] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_TILDE] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_RBRACE] = ACTIONS(2020), - [anon_sym_else] = ACTIONS(2018), - [sym_true] = ACTIONS(2018), - [sym_primitive_type] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [aux_sym_preproc_include_token1] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_switch] = ACTIONS(2018), - [sym_false] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2018), - [ts_builtin_sym_end] = ACTIONS(2020), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_SEMI] = ACTIONS(2020), - [aux_sym_preproc_def_token1] = ACTIONS(2018), - [anon_sym_auto] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2018), - [anon_sym_DASH] = ACTIONS(2018), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_COMMA] = ACTIONS(2046), + [anon_sym_COLON] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), }, [467] = { - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_restrict] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_const] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_COLON] = ACTIONS(247), - [anon_sym__Atomic] = ACTIONS(237), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_static] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [sym_identifier] = ACTIONS(237), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_inline] = ACTIONS(237), - [anon_sym___attribute__] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(2048), + [anon_sym_PERCENT_EQ] = ACTIONS(2050), + [anon_sym_DASH_EQ] = ACTIONS(2050), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_LT_EQ] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2048), + [anon_sym_DASH_GT] = ACTIONS(2050), + [anon_sym_SLASH] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2050), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(2050), + [anon_sym_LT_LT_EQ] = ACTIONS(2050), + [anon_sym_QMARK] = ACTIONS(2050), + [anon_sym_GT_EQ] = ACTIONS(2050), + [anon_sym_CARET_EQ] = ACTIONS(2050), + [anon_sym_COMMA] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2050), + [anon_sym_GT_GT_EQ] = ACTIONS(2050), + [anon_sym_LT_LT] = ACTIONS(2048), + [anon_sym_PIPE_EQ] = ACTIONS(2050), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_RBRACK] = ACTIONS(2050), + [anon_sym_AMP_EQ] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_AMP_AMP] = ACTIONS(2050), + [anon_sym_EQ] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_GT_GT] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_COLON] = ACTIONS(2050), + [anon_sym_STAR_EQ] = ACTIONS(2050), + [anon_sym_EQ_EQ] = ACTIONS(2050), + [anon_sym_PIPE_PIPE] = ACTIONS(2050), + [anon_sym_PLUS] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2048), + [anon_sym_SLASH_EQ] = ACTIONS(2050), + [anon_sym_BANG_EQ] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_GT] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2050), }, [468] = { - [sym_null] = ACTIONS(263), - [anon_sym_restrict] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(263), - [anon_sym_const] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(263), - [anon_sym_DASH_DASH] = ACTIONS(265), - [anon_sym__Atomic] = ACTIONS(263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(263), - [sym_number_literal] = ACTIONS(265), - [anon_sym_volatile] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_PLUS_PLUS] = ACTIONS(265), - [anon_sym_struct] = ACTIONS(263), - [anon_sym_signed] = ACTIONS(263), - [anon_sym_long] = ACTIONS(263), - [anon_sym_while] = ACTIONS(263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(263), - [anon_sym_SQUOTE] = ACTIONS(265), - [anon_sym_DQUOTE] = ACTIONS(265), - [anon_sym___attribute__] = ACTIONS(263), - [anon_sym_sizeof] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_union] = ACTIONS(263), - [anon_sym_unsigned] = ACTIONS(263), - [anon_sym_short] = ACTIONS(263), - [anon_sym_do] = ACTIONS(263), - [anon_sym_TILDE] = ACTIONS(265), - [sym_preproc_directive] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(265), - [aux_sym_preproc_if_token1] = ACTIONS(263), - [anon_sym_LPAREN2] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(263), - [sym_true] = ACTIONS(263), - [sym_primitive_type] = ACTIONS(263), - [anon_sym_for] = ACTIONS(263), - [anon_sym_break] = ACTIONS(263), - [aux_sym_preproc_include_token1] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(265), - [anon_sym_static] = ACTIONS(263), - [anon_sym_register] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_if] = ACTIONS(263), - [anon_sym_switch] = ACTIONS(263), - [sym_false] = ACTIONS(263), - [anon_sym_enum] = ACTIONS(263), - [sym_identifier] = ACTIONS(263), - [anon_sym_return] = ACTIONS(263), - [anon_sym_continue] = ACTIONS(263), - [anon_sym_SEMI] = ACTIONS(265), - [aux_sym_preproc_def_token1] = ACTIONS(263), - [anon_sym_auto] = ACTIONS(263), - [anon_sym_inline] = ACTIONS(263), - [anon_sym_DASH] = ACTIONS(263), + [sym_concatenated_string] = STATE(454), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(454), + [sym_math_expression] = STATE(454), + [sym_cast_expression] = STATE(454), + [aux_sym_initializer_pair_repeat1] = STATE(337), + [sym_field_expression] = STATE(36), + [sym_subscript_designator] = STATE(337), + [sym_field_designator] = STATE(337), + [sym_conditional_expression] = STATE(454), + [sym_assignment_expression] = STATE(454), + [sym_relational_expression] = STATE(454), + [sym_shift_expression] = STATE(454), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_initializer_list] = STATE(453), + [sym_initializer_pair] = STATE(453), + [sym_string_literal] = STATE(39), + [sym__expression] = STATE(454), + [sym_bitwise_expression] = STATE(454), + [sym_equality_expression] = STATE(454), + [sym_sizeof_expression] = STATE(454), + [sym_compound_literal_expression] = STATE(454), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(454), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(83), + [sym_false] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(55), + [sym_identifier] = ACTIONS(135), + [sym_number_literal] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(27), + [sym_true] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(31), + [sym_null] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(1287), }, [469] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(98), - [anon_sym_unsigned] = ACTIONS(275), - [anon_sym_restrict] = ACTIONS(277), - [anon_sym_short] = ACTIONS(275), - [sym_comment] = ACTIONS(3), - [anon_sym_volatile] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(279), - [anon_sym_signed] = ACTIONS(275), - [anon_sym_long] = ACTIONS(275), - [sym_identifier] = ACTIONS(2022), - [anon_sym_const] = ACTIONS(277), - [anon_sym_LPAREN2] = ACTIONS(279), - [anon_sym__Atomic] = ACTIONS(277), - [anon_sym_RPAREN] = ACTIONS(279), - [sym_primitive_type] = ACTIONS(281), - [anon_sym_LBRACK] = ACTIONS(279), + [anon_sym_case] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [anon_sym_L] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym_sizeof] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_TILDE] = ACTIONS(2054), + [sym_preproc_directive] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2054), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_else] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [sym_true] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [ts_builtin_sym_end] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [anon_sym_DASH] = ACTIONS(2052), }, [470] = { - [sym_null] = ACTIONS(342), - [anon_sym_restrict] = ACTIONS(342), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(342), - [anon_sym_const] = ACTIONS(342), - [anon_sym_typedef] = ACTIONS(342), - [anon_sym_DASH_DASH] = ACTIONS(344), - [anon_sym__Atomic] = ACTIONS(342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(342), - [sym_number_literal] = ACTIONS(344), - [anon_sym_volatile] = ACTIONS(342), - [anon_sym_extern] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(344), - [anon_sym_struct] = ACTIONS(342), - [anon_sym_signed] = ACTIONS(342), - [anon_sym_long] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym___attribute__] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_LBRACE] = ACTIONS(344), - [anon_sym_union] = ACTIONS(342), - [anon_sym_unsigned] = ACTIONS(342), - [anon_sym_short] = ACTIONS(342), - [anon_sym_do] = ACTIONS(342), - [anon_sym_TILDE] = ACTIONS(344), - [sym_preproc_directive] = ACTIONS(342), - [anon_sym_AMP] = ACTIONS(344), - [aux_sym_preproc_if_token1] = ACTIONS(342), - [anon_sym_LPAREN2] = ACTIONS(344), - [anon_sym_RBRACE] = ACTIONS(344), - [anon_sym_else] = ACTIONS(342), - [sym_true] = ACTIONS(342), - [sym_primitive_type] = ACTIONS(342), - [anon_sym_for] = ACTIONS(342), - [anon_sym_break] = ACTIONS(342), - [aux_sym_preproc_include_token1] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_static] = ACTIONS(342), - [anon_sym_register] = ACTIONS(342), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_if] = ACTIONS(342), - [anon_sym_switch] = ACTIONS(342), - [sym_false] = ACTIONS(342), - [anon_sym_enum] = ACTIONS(342), - [sym_identifier] = ACTIONS(342), - [anon_sym_return] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_SEMI] = ACTIONS(344), - [aux_sym_preproc_def_token1] = ACTIONS(342), - [anon_sym_auto] = ACTIONS(342), - [anon_sym_inline] = ACTIONS(342), - [anon_sym_DASH] = ACTIONS(342), + [sym_while_statement] = STATE(472), + [sym_continue_statement] = STATE(472), + [sym_goto_statement] = STATE(472), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(472), + [sym_expression_statement] = STATE(472), + [sym_if_statement] = STATE(472), + [sym_do_statement] = STATE(472), + [sym_for_statement] = STATE(472), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(472), + [sym_return_statement] = STATE(472), + [sym_break_statement] = STATE(472), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(472), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(386), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [471] = { - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_union] = ACTIONS(370), - [anon_sym_sizeof] = ACTIONS(370), - [anon_sym_unsigned] = ACTIONS(370), - [anon_sym_restrict] = ACTIONS(370), - [anon_sym_short] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(372), - [sym_null] = ACTIONS(370), - [sym_identifier] = ACTIONS(370), - [anon_sym_do] = ACTIONS(370), - [anon_sym_goto] = ACTIONS(370), - [ts_builtin_sym_end] = ACTIONS(372), - [anon_sym_TILDE] = ACTIONS(372), - [sym_preproc_directive] = ACTIONS(370), - [anon_sym_AMP] = ACTIONS(372), - [aux_sym_preproc_if_token1] = ACTIONS(370), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2056), [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(370), - [anon_sym_LPAREN2] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym__Atomic] = ACTIONS(370), - [sym_primitive_type] = ACTIONS(370), - [sym_true] = ACTIONS(370), - [anon_sym_for] = ACTIONS(370), - [anon_sym_break] = ACTIONS(370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(370), - [aux_sym_preproc_include_token1] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(372), - [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_if] = ACTIONS(370), - [anon_sym_struct] = ACTIONS(370), - [anon_sym_switch] = ACTIONS(370), - [anon_sym_signed] = ACTIONS(370), - [anon_sym_enum] = ACTIONS(370), - [anon_sym_long] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_return] = ACTIONS(370), - [anon_sym_while] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(372), - [sym_number_literal] = ACTIONS(372), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [sym_false] = ACTIONS(370), - [anon_sym_auto] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [anon_sym_inline] = ACTIONS(370), - [anon_sym___attribute__] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(370), + [anon_sym_COMMA] = ACTIONS(1138), }, [472] = { - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_union] = ACTIONS(390), - [anon_sym_sizeof] = ACTIONS(390), - [anon_sym_unsigned] = ACTIONS(390), - [anon_sym_restrict] = ACTIONS(390), - [anon_sym_short] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(388), - [sym_null] = ACTIONS(390), - [sym_identifier] = ACTIONS(390), - [anon_sym_do] = ACTIONS(390), - [anon_sym_goto] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(388), - [sym_preproc_directive] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(388), - [aux_sym_preproc_if_token1] = ACTIONS(390), - [anon_sym_const] = ACTIONS(390), - [anon_sym_LPAREN2] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym__Atomic] = ACTIONS(390), - [sym_primitive_type] = ACTIONS(390), - [sym_true] = ACTIONS(390), - [anon_sym_for] = ACTIONS(390), - [anon_sym_break] = ACTIONS(390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(390), - [aux_sym_preproc_include_token1] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(388), - [anon_sym_static] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(390), - [anon_sym_register] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_struct] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(390), - [anon_sym_signed] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [anon_sym_long] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_return] = ACTIONS(390), - [anon_sym_while] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(390), - [anon_sym_SEMI] = ACTIONS(388), - [sym_number_literal] = ACTIONS(388), - [aux_sym_preproc_def_token1] = ACTIONS(390), - [sym_false] = ACTIONS(390), - [anon_sym_auto] = ACTIONS(390), - [anon_sym_SQUOTE] = ACTIONS(388), - [anon_sym_inline] = ACTIONS(390), - [anon_sym___attribute__] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), + [anon_sym_case] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [anon_sym_restrict] = ACTIONS(2058), + [sym_identifier] = ACTIONS(2058), + [anon_sym_goto] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_typedef] = ACTIONS(2058), + [anon_sym_DASH_DASH] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2058), + [anon_sym__Atomic] = ACTIONS(2058), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), + [sym_number_literal] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_signed] = ACTIONS(2058), + [anon_sym_long] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), + [anon_sym_L] = ACTIONS(2058), + [anon_sym___attribute__] = ACTIONS(2058), + [anon_sym_sizeof] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsigned] = ACTIONS(2058), + [anon_sym_short] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2060), + [sym_preproc_directive] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), + [aux_sym_preproc_if_token1] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_else] = ACTIONS(2058), + [sym_primitive_type] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [aux_sym_preproc_include_token1] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_PLUS] = ACTIONS(2058), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_switch] = ACTIONS(2058), + [sym_true] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [sym_null] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2060), + [aux_sym_preproc_def_token1] = ACTIONS(2058), + [anon_sym_auto] = ACTIONS(2058), + [anon_sym_inline] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2058), }, [473] = { - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_restrict] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_const] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym__Atomic] = ACTIONS(237), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_static] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [sym_identifier] = ACTIONS(237), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_inline] = ACTIONS(237), - [anon_sym___attribute__] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(239), + [sym_while_statement] = STATE(474), + [sym_continue_statement] = STATE(474), + [sym_goto_statement] = STATE(474), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(474), + [sym_expression_statement] = STATE(474), + [sym_if_statement] = STATE(474), + [sym_do_statement] = STATE(474), + [sym_for_statement] = STATE(474), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(474), + [sym_return_statement] = STATE(474), + [sym_break_statement] = STATE(474), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(474), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(386), + [anon_sym_do] = ACTIONS(21), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [474] = { - [sym_null] = ACTIONS(487), - [anon_sym_restrict] = ACTIONS(487), - [sym_comment] = ACTIONS(3), - [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), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [sym_number_literal] = ACTIONS(489), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_extern] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_signed] = ACTIONS(487), - [anon_sym_long] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = 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), - [anon_sym_TILDE] = ACTIONS(489), - [sym_preproc_directive] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(489), - [aux_sym_preproc_if_token1] = ACTIONS(487), - [anon_sym_LPAREN2] = ACTIONS(489), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_else] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_primitive_type] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [aux_sym_preproc_include_token1] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(489), - [anon_sym_static] = ACTIONS(487), - [anon_sym_register] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_if] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [sym_identifier] = 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_auto] = ACTIONS(487), - [anon_sym_inline] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), + [anon_sym_case] = ACTIONS(2062), + [sym_false] = ACTIONS(2062), + [anon_sym_restrict] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2062), + [anon_sym_goto] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2062), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_default] = ACTIONS(2062), + [anon_sym__Atomic] = ACTIONS(2062), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2062), + [sym_number_literal] = ACTIONS(2064), + [anon_sym_volatile] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2062), + [anon_sym_signed] = ACTIONS(2062), + [anon_sym_long] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2062), + [anon_sym_L] = ACTIONS(2062), + [anon_sym___attribute__] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2062), + [anon_sym_unsigned] = ACTIONS(2062), + [anon_sym_short] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2064), + [sym_preproc_directive] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), + [aux_sym_preproc_if_token1] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2062), + [sym_primitive_type] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [aux_sym_preproc_include_token1] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_register] = ACTIONS(2062), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_switch] = ACTIONS(2062), + [sym_true] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [sym_null] = ACTIONS(2062), + [ts_builtin_sym_end] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2064), + [aux_sym_preproc_def_token1] = ACTIONS(2062), + [anon_sym_auto] = ACTIONS(2062), + [anon_sym_inline] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), }, [475] = { - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_union] = ACTIONS(495), - [anon_sym_sizeof] = ACTIONS(495), - [anon_sym_unsigned] = ACTIONS(495), - [anon_sym_restrict] = ACTIONS(495), - [anon_sym_short] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(493), - [sym_null] = ACTIONS(495), - [sym_identifier] = ACTIONS(495), - [anon_sym_do] = ACTIONS(495), - [anon_sym_goto] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(493), - [sym_preproc_directive] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(493), - [aux_sym_preproc_if_token1] = ACTIONS(495), - [anon_sym_const] = ACTIONS(495), - [anon_sym_LPAREN2] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [anon_sym__Atomic] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(495), - [sym_true] = ACTIONS(495), - [anon_sym_for] = ACTIONS(495), - [anon_sym_break] = ACTIONS(495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(495), - [aux_sym_preproc_include_token1] = ACTIONS(495), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(495), - [anon_sym_register] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(495), - [anon_sym_switch] = ACTIONS(495), - [anon_sym_signed] = ACTIONS(495), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_long] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_return] = ACTIONS(495), - [anon_sym_while] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(493), - [sym_number_literal] = ACTIONS(493), - [aux_sym_preproc_def_token1] = ACTIONS(495), - [sym_false] = ACTIONS(495), - [anon_sym_auto] = ACTIONS(495), - [anon_sym_SQUOTE] = ACTIONS(493), - [anon_sym_inline] = ACTIONS(495), - [anon_sym___attribute__] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_restrict] = ACTIONS(149), + [sym_identifier] = ACTIONS(149), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_const] = ACTIONS(149), + [anon_sym_LPAREN2] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(159), + [anon_sym__Atomic] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_static] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [anon_sym_register] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_auto] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_inline] = ACTIONS(149), + [anon_sym___attribute__] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(151), }, [476] = { - [sym_while_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(758), - [sym_math_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(503), - [sym_expression_statement] = STATE(503), - [sym_if_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym__expression] = STATE(758), - [sym_comma_expression] = STATE(757), - [sym_bitwise_expression] = STATE(758), - [sym_equality_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_switch_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_relational_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(503), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_false] = ACTIONS(269), + [anon_sym_restrict] = ACTIONS(269), + [sym_identifier] = ACTIONS(269), + [anon_sym_goto] = ACTIONS(269), + [anon_sym_const] = ACTIONS(269), + [anon_sym_typedef] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym__Atomic] = ACTIONS(269), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(269), + [sym_number_literal] = ACTIONS(271), + [anon_sym_volatile] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_struct] = ACTIONS(269), + [anon_sym_signed] = ACTIONS(269), + [anon_sym_long] = ACTIONS(269), + [anon_sym_while] = ACTIONS(269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(269), + [anon_sym_L] = ACTIONS(269), + [anon_sym___attribute__] = ACTIONS(269), + [anon_sym_sizeof] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(271), + [anon_sym_union] = ACTIONS(269), + [anon_sym_unsigned] = ACTIONS(269), + [anon_sym_short] = ACTIONS(269), + [anon_sym_do] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(271), + [sym_preproc_directive] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(271), + [aux_sym_preproc_if_token1] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_LPAREN2] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_else] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(269), + [anon_sym_for] = ACTIONS(269), + [anon_sym_break] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_static] = ACTIONS(269), + [anon_sym_register] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_if] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(269), + [sym_true] = ACTIONS(269), + [anon_sym_enum] = ACTIONS(269), + [sym_null] = ACTIONS(269), + [anon_sym_return] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(269), + [anon_sym_auto] = ACTIONS(269), + [anon_sym_inline] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(269), }, [477] = { - [sym_while_statement] = STATE(506), - [sym_continue_statement] = STATE(506), - [sym_goto_statement] = STATE(506), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(758), - [sym_math_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(506), - [sym_expression_statement] = STATE(506), - [sym_if_statement] = STATE(506), - [sym_do_statement] = STATE(506), - [sym_for_statement] = STATE(506), - [sym__expression] = STATE(758), - [sym_comma_expression] = STATE(757), - [sym_bitwise_expression] = STATE(758), - [sym_equality_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_switch_statement] = STATE(506), - [sym_return_statement] = STATE(506), - [sym_break_statement] = STATE(506), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_relational_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(506), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [aux_sym_sized_type_specifier_repeat1] = STATE(102), + [anon_sym_unsigned] = ACTIONS(285), + [anon_sym_restrict] = ACTIONS(287), + [anon_sym_short] = ACTIONS(285), + [sym_identifier] = ACTIONS(2066), + [anon_sym_volatile] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_signed] = ACTIONS(285), + [anon_sym_long] = ACTIONS(285), + [anon_sym_const] = ACTIONS(287), + [anon_sym_LPAREN2] = ACTIONS(292), + [anon_sym__Atomic] = ACTIONS(287), + [anon_sym_RPAREN] = ACTIONS(292), + [sym_primitive_type] = ACTIONS(294), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(292), }, [478] = { - [sym_null] = ACTIONS(537), - [anon_sym_restrict] = ACTIONS(537), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(537), - [anon_sym_const] = ACTIONS(537), - [anon_sym_typedef] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym__Atomic] = ACTIONS(537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(537), - [sym_number_literal] = ACTIONS(539), - [anon_sym_volatile] = ACTIONS(537), - [anon_sym_extern] = ACTIONS(537), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_struct] = ACTIONS(537), - [anon_sym_signed] = ACTIONS(537), - [anon_sym_long] = ACTIONS(537), - [anon_sym_while] = ACTIONS(537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym___attribute__] = ACTIONS(537), - [anon_sym_sizeof] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(539), - [anon_sym_union] = ACTIONS(537), - [anon_sym_unsigned] = ACTIONS(537), - [anon_sym_short] = ACTIONS(537), - [anon_sym_do] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(539), - [sym_preproc_directive] = ACTIONS(537), - [anon_sym_AMP] = ACTIONS(539), - [aux_sym_preproc_if_token1] = ACTIONS(537), - [anon_sym_LPAREN2] = ACTIONS(539), - [anon_sym_RBRACE] = ACTIONS(539), - [anon_sym_else] = ACTIONS(537), - [sym_true] = ACTIONS(537), - [sym_primitive_type] = ACTIONS(537), - [anon_sym_for] = ACTIONS(537), - [anon_sym_break] = ACTIONS(537), - [aux_sym_preproc_include_token1] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(539), - [anon_sym_static] = ACTIONS(537), - [anon_sym_register] = ACTIONS(537), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_if] = ACTIONS(537), - [anon_sym_switch] = ACTIONS(537), - [sym_false] = ACTIONS(537), - [anon_sym_enum] = ACTIONS(537), - [sym_identifier] = ACTIONS(537), - [anon_sym_return] = ACTIONS(537), - [anon_sym_continue] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(539), - [aux_sym_preproc_def_token1] = ACTIONS(537), - [anon_sym_auto] = ACTIONS(537), - [anon_sym_inline] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), + [sym_false] = ACTIONS(354), + [anon_sym_restrict] = ACTIONS(354), + [sym_identifier] = ACTIONS(354), + [anon_sym_goto] = ACTIONS(354), + [anon_sym_const] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(354), + [anon_sym_DASH_DASH] = ACTIONS(356), + [anon_sym__Atomic] = ACTIONS(354), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [sym_number_literal] = ACTIONS(356), + [anon_sym_volatile] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(356), + [anon_sym_struct] = ACTIONS(354), + [anon_sym_signed] = ACTIONS(354), + [anon_sym_long] = ACTIONS(354), + [anon_sym_while] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [anon_sym_L] = ACTIONS(354), + [anon_sym___attribute__] = ACTIONS(354), + [anon_sym_sizeof] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_union] = ACTIONS(354), + [anon_sym_unsigned] = ACTIONS(354), + [anon_sym_short] = ACTIONS(354), + [anon_sym_do] = ACTIONS(354), + [anon_sym_TILDE] = ACTIONS(356), + [sym_preproc_directive] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(356), + [aux_sym_preproc_if_token1] = ACTIONS(354), + [anon_sym_DQUOTE] = ACTIONS(356), + [anon_sym_LPAREN2] = ACTIONS(356), + [anon_sym_RBRACE] = ACTIONS(356), + [anon_sym_else] = ACTIONS(354), + [sym_primitive_type] = ACTIONS(354), + [anon_sym_for] = ACTIONS(354), + [anon_sym_break] = ACTIONS(354), + [aux_sym_preproc_include_token1] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(356), + [anon_sym_static] = ACTIONS(354), + [anon_sym_register] = ACTIONS(354), + [anon_sym_PLUS] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_if] = ACTIONS(354), + [anon_sym_switch] = ACTIONS(354), + [sym_true] = ACTIONS(354), + [anon_sym_enum] = ACTIONS(354), + [sym_null] = ACTIONS(354), + [anon_sym_return] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(354), + [anon_sym_SEMI] = ACTIONS(356), + [aux_sym_preproc_def_token1] = ACTIONS(354), + [anon_sym_auto] = ACTIONS(354), + [anon_sym_inline] = ACTIONS(354), + [anon_sym_DASH] = ACTIONS(354), }, [479] = { - [sym_while_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(758), - [sym_math_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym__expression] = STATE(758), - [sym_comma_expression] = STATE(757), - [sym_bitwise_expression] = STATE(758), - [sym_equality_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_switch_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_relational_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(508), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), + [sym_while_statement] = STATE(505), + [sym_continue_statement] = STATE(505), + [sym_goto_statement] = STATE(505), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(773), + [sym_math_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(505), + [sym_expression_statement] = STATE(505), + [sym_if_statement] = STATE(505), + [sym_do_statement] = STATE(505), + [sym_for_statement] = STATE(505), + [sym__expression] = STATE(773), + [sym_comma_expression] = STATE(772), + [sym_bitwise_expression] = STATE(773), + [sym_equality_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_switch_statement] = STATE(505), + [sym_return_statement] = STATE(505), + [sym_break_statement] = STATE(505), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_relational_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(505), + [anon_sym_LBRACE] = ACTIONS(101), + [sym_false] = ACTIONS(85), + [sym_identifier] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [480] = { - [sym_null] = ACTIONS(543), - [anon_sym_restrict] = ACTIONS(543), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_typedef] = ACTIONS(543), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym__Atomic] = ACTIONS(543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(543), - [sym_number_literal] = ACTIONS(545), - [anon_sym_volatile] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(543), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(543), - [anon_sym_signed] = ACTIONS(543), - [anon_sym_long] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [anon_sym___attribute__] = ACTIONS(543), - [anon_sym_sizeof] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_union] = ACTIONS(543), - [anon_sym_unsigned] = ACTIONS(543), - [anon_sym_short] = ACTIONS(543), - [anon_sym_do] = ACTIONS(543), - [anon_sym_TILDE] = ACTIONS(545), - [sym_preproc_directive] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [aux_sym_preproc_if_token1] = ACTIONS(543), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_else] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [sym_primitive_type] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [aux_sym_preproc_include_token1] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_static] = ACTIONS(543), - [anon_sym_register] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_if] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [sym_identifier] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(545), - [aux_sym_preproc_def_token1] = ACTIONS(543), - [anon_sym_auto] = ACTIONS(543), - [anon_sym_inline] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(2070), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(151), }, [481] = { - [sym_null] = ACTIONS(570), - [anon_sym_restrict] = ACTIONS(570), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(570), - [anon_sym_const] = ACTIONS(570), - [anon_sym_typedef] = ACTIONS(570), - [anon_sym_DASH_DASH] = ACTIONS(572), - [anon_sym__Atomic] = ACTIONS(570), - [aux_sym_preproc_ifdef_token1] = ACTIONS(570), - [sym_number_literal] = ACTIONS(572), - [anon_sym_volatile] = ACTIONS(570), - [anon_sym_extern] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(572), - [anon_sym_struct] = ACTIONS(570), - [anon_sym_signed] = ACTIONS(570), - [anon_sym_long] = ACTIONS(570), - [anon_sym_while] = ACTIONS(570), - [aux_sym_preproc_ifdef_token2] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym___attribute__] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_union] = ACTIONS(570), - [anon_sym_unsigned] = ACTIONS(570), - [anon_sym_short] = ACTIONS(570), - [anon_sym_do] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(572), - [sym_preproc_directive] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [aux_sym_preproc_if_token1] = ACTIONS(570), - [anon_sym_LPAREN2] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_else] = ACTIONS(570), - [sym_true] = ACTIONS(570), - [sym_primitive_type] = ACTIONS(570), - [anon_sym_for] = ACTIONS(570), - [anon_sym_break] = ACTIONS(570), - [aux_sym_preproc_include_token1] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_static] = ACTIONS(570), - [anon_sym_register] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_if] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(570), - [sym_false] = ACTIONS(570), - [anon_sym_enum] = ACTIONS(570), - [sym_identifier] = ACTIONS(570), - [anon_sym_return] = ACTIONS(570), - [anon_sym_continue] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(572), - [aux_sym_preproc_def_token1] = ACTIONS(570), - [anon_sym_auto] = ACTIONS(570), - [anon_sym_inline] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(400), + [anon_sym_sizeof] = ACTIONS(400), + [anon_sym_unsigned] = ACTIONS(400), + [anon_sym_restrict] = ACTIONS(400), + [anon_sym_short] = ACTIONS(400), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_null] = ACTIONS(400), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(400), + [sym_identifier] = ACTIONS(400), + [anon_sym_TILDE] = ACTIONS(398), + [sym_preproc_directive] = ACTIONS(400), + [anon_sym_AMP] = ACTIONS(398), + [aux_sym_preproc_if_token1] = ACTIONS(400), + [anon_sym_const] = ACTIONS(400), + [anon_sym_LPAREN2] = ACTIONS(398), + [anon_sym_typedef] = ACTIONS(400), + [anon_sym_RBRACE] = ACTIONS(398), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(398), + [anon_sym__Atomic] = ACTIONS(400), + [sym_primitive_type] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(400), + [anon_sym_break] = ACTIONS(400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(400), + [aux_sym_preproc_include_token1] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_static] = ACTIONS(400), + [anon_sym_volatile] = ACTIONS(400), + [anon_sym_register] = ACTIONS(400), + [anon_sym_extern] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_struct] = ACTIONS(400), + [anon_sym_switch] = ACTIONS(400), + [anon_sym_signed] = ACTIONS(400), + [anon_sym_enum] = ACTIONS(400), + [anon_sym_long] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_return] = ACTIONS(400), + [anon_sym_while] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(400), + [anon_sym_SEMI] = ACTIONS(398), + [sym_number_literal] = ACTIONS(398), + [aux_sym_preproc_def_token1] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(400), + [anon_sym_L] = ACTIONS(400), + [anon_sym_inline] = ACTIONS(400), + [anon_sym___attribute__] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), }, [482] = { - [sym_continue_statement] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(482), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(482), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_preproc_include] = STATE(482), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(482), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_preproc_def] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(482), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(482), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(482), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(482), - [sym_preproc_if] = STATE(482), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(482), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(581), - [anon_sym_sizeof] = ACTIONS(584), - [anon_sym_unsigned] = ACTIONS(587), - [anon_sym_restrict] = ACTIONS(590), - [anon_sym_short] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(593), - [sym_null] = ACTIONS(2029), - [sym_identifier] = ACTIONS(2032), - [anon_sym_do] = ACTIONS(2035), - [anon_sym_goto] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(610), - [sym_preproc_directive] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(616), - [aux_sym_preproc_if_token1] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(590), - [anon_sym_LPAREN2] = ACTIONS(622), - [anon_sym_typedef] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_DASH_DASH] = ACTIONS(628), - [anon_sym__Atomic] = ACTIONS(590), - [sym_primitive_type] = ACTIONS(631), - [sym_true] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2053), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2056), - [aux_sym_preproc_include_token1] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(646), - [anon_sym_static] = ACTIONS(649), - [anon_sym_volatile] = ACTIONS(590), - [anon_sym_register] = ACTIONS(649), - [anon_sym_extern] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(616), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_struct] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(2068), - [anon_sym_signed] = ACTIONS(587), - [anon_sym_enum] = ACTIONS(664), - [anon_sym_long] = ACTIONS(587), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_PLUS_PLUS] = ACTIONS(628), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_continue] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2080), - [sym_number_literal] = ACTIONS(2083), - [aux_sym_preproc_def_token1] = ACTIONS(2086), - [sym_false] = ACTIONS(2029), - [anon_sym_auto] = ACTIONS(649), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_inline] = ACTIONS(649), - [anon_sym___attribute__] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(667), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_restrict] = ACTIONS(149), + [sym_identifier] = ACTIONS(149), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_const] = ACTIONS(149), + [anon_sym_LPAREN2] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_static] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [anon_sym_register] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_auto] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_inline] = ACTIONS(149), + [anon_sym___attribute__] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(151), }, [483] = { - [sym_pointer_expression] = STATE(191), - [sym_logical_expression] = STATE(191), - [sym_math_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_field_expression] = STATE(191), - [sym__expression] = STATE(191), - [sym_bitwise_expression] = STATE(191), - [sym_equality_expression] = STATE(191), - [sym_sizeof_expression] = STATE(191), - [sym_compound_literal_expression] = STATE(191), - [sym_parenthesized_expression] = STATE(191), - [sym_char_literal] = STATE(191), - [sym_concatenated_string] = STATE(191), - [sym_conditional_expression] = STATE(191), - [sym_assignment_expression] = STATE(191), - [sym_relational_expression] = STATE(191), - [sym_shift_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_call_expression] = STATE(191), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(711), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(713), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(711), - [sym_identifier] = ACTIONS(711), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(711), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_union] = ACTIONS(489), + [anon_sym_sizeof] = ACTIONS(489), + [anon_sym_unsigned] = ACTIONS(489), + [anon_sym_restrict] = ACTIONS(489), + [anon_sym_short] = ACTIONS(489), + [sym_true] = ACTIONS(489), + [sym_false] = ACTIONS(489), + [sym_null] = ACTIONS(489), + [anon_sym_do] = ACTIONS(489), + [anon_sym_goto] = ACTIONS(489), + [sym_identifier] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(491), + [sym_preproc_directive] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(491), + [aux_sym_preproc_if_token1] = ACTIONS(489), + [ts_builtin_sym_end] = ACTIONS(491), + [anon_sym_const] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(491), + [anon_sym_typedef] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym__Atomic] = ACTIONS(489), + [sym_primitive_type] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(489), + [anon_sym_break] = ACTIONS(489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(489), + [aux_sym_preproc_include_token1] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_static] = ACTIONS(489), + [anon_sym_volatile] = ACTIONS(489), + [anon_sym_register] = ACTIONS(489), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_if] = ACTIONS(489), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(489), + [anon_sym_signed] = ACTIONS(489), + [anon_sym_enum] = ACTIONS(489), + [anon_sym_long] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_PLUS_PLUS] = ACTIONS(491), + [anon_sym_return] = ACTIONS(489), + [anon_sym_while] = ACTIONS(489), + [anon_sym_continue] = ACTIONS(489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(491), + [sym_number_literal] = ACTIONS(491), + [aux_sym_preproc_def_token1] = ACTIONS(489), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_auto] = ACTIONS(489), + [anon_sym_L] = ACTIONS(489), + [anon_sym_inline] = ACTIONS(489), + [anon_sym___attribute__] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(489), }, [484] = { - [sym_pointer_expression] = STATE(510), - [sym_logical_expression] = STATE(510), - [sym_math_expression] = STATE(510), - [sym_cast_expression] = STATE(510), - [sym_field_expression] = STATE(510), - [sym__expression] = STATE(510), - [sym_bitwise_expression] = STATE(510), - [sym_equality_expression] = STATE(510), - [sym_sizeof_expression] = STATE(510), - [sym_compound_literal_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(510), - [sym_char_literal] = STATE(510), - [sym_concatenated_string] = STATE(510), - [sym_conditional_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_relational_expression] = STATE(510), - [sym_shift_expression] = STATE(510), - [sym_subscript_expression] = STATE(510), - [sym_call_expression] = STATE(510), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2091), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2089), - [sym_identifier] = ACTIONS(2089), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [sym_false] = ACTIONS(505), + [anon_sym_restrict] = ACTIONS(505), + [sym_identifier] = ACTIONS(505), + [anon_sym_goto] = ACTIONS(505), + [anon_sym_const] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(505), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym__Atomic] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(505), + [sym_number_literal] = ACTIONS(507), + [anon_sym_volatile] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(505), + [anon_sym_signed] = ACTIONS(505), + [anon_sym_long] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [aux_sym_preproc_ifdef_token2] = ACTIONS(505), + [anon_sym_L] = ACTIONS(505), + [anon_sym___attribute__] = ACTIONS(505), + [anon_sym_sizeof] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_union] = ACTIONS(505), + [anon_sym_unsigned] = ACTIONS(505), + [anon_sym_short] = ACTIONS(505), + [anon_sym_do] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(507), + [sym_preproc_directive] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(507), + [aux_sym_preproc_if_token1] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_LPAREN2] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_else] = ACTIONS(505), + [sym_primitive_type] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [aux_sym_preproc_include_token1] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_static] = ACTIONS(505), + [anon_sym_register] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_if] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(505), + [sym_true] = ACTIONS(505), + [anon_sym_enum] = ACTIONS(505), + [sym_null] = ACTIONS(505), + [anon_sym_return] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_preproc_def_token1] = ACTIONS(505), + [anon_sym_auto] = ACTIONS(505), + [anon_sym_inline] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), }, [485] = { - [sym_pointer_expression] = STATE(511), - [sym_logical_expression] = STATE(511), - [sym_math_expression] = STATE(511), - [sym_cast_expression] = STATE(511), - [sym_field_expression] = STATE(511), - [sym__expression] = STATE(511), - [sym_bitwise_expression] = STATE(511), - [sym_equality_expression] = STATE(511), - [sym_sizeof_expression] = STATE(511), - [sym_compound_literal_expression] = STATE(511), - [sym_parenthesized_expression] = STATE(511), - [sym_char_literal] = STATE(511), - [sym_concatenated_string] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_assignment_expression] = STATE(511), - [sym_relational_expression] = STATE(511), - [sym_shift_expression] = STATE(511), - [sym_subscript_expression] = STATE(511), - [sym_call_expression] = STATE(511), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2095), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2093), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_union] = ACTIONS(513), + [anon_sym_sizeof] = ACTIONS(513), + [anon_sym_unsigned] = ACTIONS(513), + [anon_sym_restrict] = ACTIONS(513), + [anon_sym_short] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [anon_sym_do] = ACTIONS(513), + [anon_sym_goto] = ACTIONS(513), + [sym_identifier] = ACTIONS(513), + [anon_sym_TILDE] = ACTIONS(511), + [sym_preproc_directive] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(511), + [aux_sym_preproc_if_token1] = ACTIONS(513), + [anon_sym_const] = ACTIONS(513), + [anon_sym_LPAREN2] = ACTIONS(511), + [anon_sym_typedef] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(511), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(511), + [anon_sym__Atomic] = ACTIONS(513), + [sym_primitive_type] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(513), + [aux_sym_preproc_include_token1] = ACTIONS(513), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_volatile] = ACTIONS(513), + [anon_sym_register] = ACTIONS(513), + [anon_sym_extern] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(513), + [anon_sym_signed] = ACTIONS(513), + [anon_sym_enum] = ACTIONS(513), + [anon_sym_long] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_return] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(511), + [sym_number_literal] = ACTIONS(511), + [aux_sym_preproc_def_token1] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(511), + [anon_sym_auto] = ACTIONS(513), + [anon_sym_L] = ACTIONS(513), + [anon_sym_inline] = ACTIONS(513), + [anon_sym___attribute__] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), }, [486] = { - [sym_pointer_expression] = STATE(512), - [sym_logical_expression] = STATE(512), - [sym_math_expression] = STATE(512), - [sym_cast_expression] = STATE(512), - [sym_field_expression] = STATE(512), - [sym__expression] = STATE(512), - [sym_bitwise_expression] = STATE(512), - [sym_equality_expression] = STATE(512), - [sym_sizeof_expression] = STATE(512), - [sym_compound_literal_expression] = STATE(512), - [sym_parenthesized_expression] = STATE(512), - [sym_char_literal] = STATE(512), - [sym_concatenated_string] = STATE(512), - [sym_conditional_expression] = STATE(512), - [sym_assignment_expression] = STATE(512), - [sym_relational_expression] = STATE(512), - [sym_shift_expression] = STATE(512), - [sym_subscript_expression] = STATE(512), - [sym_call_expression] = STATE(512), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2099), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), + [sym_while_statement] = STATE(514), + [sym_continue_statement] = STATE(514), + [sym_goto_statement] = STATE(514), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(773), + [sym_math_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(514), + [sym_expression_statement] = STATE(514), + [sym_if_statement] = STATE(514), + [sym_do_statement] = STATE(514), + [sym_for_statement] = STATE(514), + [sym__expression] = STATE(773), + [sym_comma_expression] = STATE(772), + [sym_bitwise_expression] = STATE(773), + [sym_equality_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_switch_statement] = STATE(514), + [sym_return_statement] = STATE(514), + [sym_break_statement] = STATE(514), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_relational_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(514), + [anon_sym_LBRACE] = ACTIONS(101), + [sym_false] = ACTIONS(85), + [sym_identifier] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2097), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [487] = { - [sym_pointer_expression] = STATE(513), - [sym_logical_expression] = STATE(513), - [sym_math_expression] = STATE(513), - [sym_cast_expression] = STATE(513), - [sym_field_expression] = STATE(513), - [sym__expression] = STATE(513), - [sym_bitwise_expression] = STATE(513), - [sym_equality_expression] = STATE(513), - [sym_sizeof_expression] = STATE(513), - [sym_compound_literal_expression] = STATE(513), - [sym_parenthesized_expression] = STATE(513), - [sym_char_literal] = STATE(513), - [sym_concatenated_string] = STATE(513), - [sym_conditional_expression] = STATE(513), - [sym_assignment_expression] = STATE(513), - [sym_relational_expression] = STATE(513), - [sym_shift_expression] = STATE(513), - [sym_subscript_expression] = STATE(513), - [sym_call_expression] = STATE(513), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2103), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2101), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [sym_false] = ACTIONS(551), + [anon_sym_restrict] = ACTIONS(551), + [sym_identifier] = ACTIONS(551), + [anon_sym_goto] = ACTIONS(551), + [anon_sym_const] = ACTIONS(551), + [anon_sym_typedef] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym__Atomic] = ACTIONS(551), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(551), + [sym_number_literal] = ACTIONS(553), + [anon_sym_volatile] = ACTIONS(551), + [anon_sym_SQUOTE] = ACTIONS(553), + [anon_sym_extern] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_signed] = ACTIONS(551), + [anon_sym_long] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(551), + [anon_sym_L] = ACTIONS(551), + [anon_sym___attribute__] = ACTIONS(551), + [anon_sym_sizeof] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_union] = ACTIONS(551), + [anon_sym_unsigned] = ACTIONS(551), + [anon_sym_short] = ACTIONS(551), + [anon_sym_do] = ACTIONS(551), + [anon_sym_TILDE] = ACTIONS(553), + [sym_preproc_directive] = ACTIONS(551), + [anon_sym_AMP] = ACTIONS(553), + [aux_sym_preproc_if_token1] = ACTIONS(551), + [anon_sym_DQUOTE] = ACTIONS(553), + [anon_sym_LPAREN2] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(553), + [anon_sym_else] = ACTIONS(551), + [sym_primitive_type] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [aux_sym_preproc_include_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_static] = ACTIONS(551), + [anon_sym_register] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_if] = ACTIONS(551), + [anon_sym_switch] = ACTIONS(551), + [sym_true] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(551), + [sym_null] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(553), + [aux_sym_preproc_def_token1] = ACTIONS(551), + [anon_sym_auto] = ACTIONS(551), + [anon_sym_inline] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), }, [488] = { - [sym_pointer_expression] = STATE(514), - [sym_logical_expression] = STATE(514), - [sym_math_expression] = STATE(514), - [sym_cast_expression] = STATE(514), - [sym_field_expression] = STATE(514), - [sym__expression] = STATE(514), - [sym_bitwise_expression] = STATE(514), - [sym_equality_expression] = STATE(514), - [sym_sizeof_expression] = STATE(514), - [sym_compound_literal_expression] = STATE(514), - [sym_parenthesized_expression] = STATE(514), - [sym_char_literal] = STATE(514), - [sym_concatenated_string] = STATE(514), - [sym_conditional_expression] = STATE(514), - [sym_assignment_expression] = STATE(514), - [sym_relational_expression] = STATE(514), - [sym_shift_expression] = STATE(514), - [sym_subscript_expression] = STATE(514), - [sym_call_expression] = STATE(514), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2107), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), + [sym_while_statement] = STATE(517), + [sym_continue_statement] = STATE(517), + [sym_goto_statement] = STATE(517), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(773), + [sym_math_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(517), + [sym_expression_statement] = STATE(517), + [sym_if_statement] = STATE(517), + [sym_do_statement] = STATE(517), + [sym_for_statement] = STATE(517), + [sym__expression] = STATE(773), + [sym_comma_expression] = STATE(772), + [sym_bitwise_expression] = STATE(773), + [sym_equality_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_switch_statement] = STATE(517), + [sym_return_statement] = STATE(517), + [sym_break_statement] = STATE(517), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_relational_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(101), + [sym_false] = ACTIONS(85), + [sym_identifier] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2105), - [sym_identifier] = ACTIONS(2105), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [489] = { - [sym_pointer_expression] = STATE(515), - [sym_logical_expression] = STATE(515), - [sym_math_expression] = STATE(515), - [sym_cast_expression] = STATE(515), - [sym_field_expression] = STATE(515), - [sym__expression] = STATE(515), - [sym_bitwise_expression] = STATE(515), - [sym_equality_expression] = STATE(515), - [sym_sizeof_expression] = STATE(515), - [sym_compound_literal_expression] = STATE(515), - [sym_parenthesized_expression] = STATE(515), - [sym_char_literal] = STATE(515), - [sym_concatenated_string] = STATE(515), - [sym_conditional_expression] = STATE(515), - [sym_assignment_expression] = STATE(515), - [sym_relational_expression] = STATE(515), - [sym_shift_expression] = STATE(515), - [sym_subscript_expression] = STATE(515), - [sym_call_expression] = STATE(515), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2111), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2109), - [sym_identifier] = ACTIONS(2109), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [sym_false] = ACTIONS(557), + [anon_sym_restrict] = ACTIONS(557), + [sym_identifier] = ACTIONS(557), + [anon_sym_goto] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_typedef] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym__Atomic] = ACTIONS(557), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(557), + [sym_number_literal] = ACTIONS(559), + [anon_sym_volatile] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(559), + [anon_sym_extern] = ACTIONS(557), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_signed] = ACTIONS(557), + [anon_sym_long] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(557), + [anon_sym_L] = ACTIONS(557), + [anon_sym___attribute__] = ACTIONS(557), + [anon_sym_sizeof] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(557), + [anon_sym_short] = ACTIONS(557), + [anon_sym_do] = ACTIONS(557), + [anon_sym_TILDE] = ACTIONS(559), + [sym_preproc_directive] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(559), + [aux_sym_preproc_if_token1] = ACTIONS(557), + [anon_sym_DQUOTE] = ACTIONS(559), + [anon_sym_LPAREN2] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_else] = ACTIONS(557), + [sym_primitive_type] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [aux_sym_preproc_include_token1] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_static] = ACTIONS(557), + [anon_sym_register] = ACTIONS(557), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(559), + [anon_sym_if] = ACTIONS(557), + [anon_sym_switch] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [aux_sym_preproc_def_token1] = ACTIONS(557), + [anon_sym_auto] = ACTIONS(557), + [anon_sym_inline] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), }, [490] = { - [sym_pointer_expression] = STATE(516), - [sym_logical_expression] = STATE(516), - [sym_math_expression] = STATE(516), - [sym_cast_expression] = STATE(516), - [sym_field_expression] = STATE(516), - [sym__expression] = STATE(516), - [sym_bitwise_expression] = STATE(516), - [sym_equality_expression] = STATE(516), - [sym_sizeof_expression] = STATE(516), - [sym_compound_literal_expression] = STATE(516), - [sym_parenthesized_expression] = STATE(516), - [sym_char_literal] = STATE(516), - [sym_concatenated_string] = STATE(516), - [sym_conditional_expression] = STATE(516), - [sym_assignment_expression] = STATE(516), - [sym_relational_expression] = STATE(516), - [sym_shift_expression] = STATE(516), - [sym_subscript_expression] = STATE(516), - [sym_call_expression] = STATE(516), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2113), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2115), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2113), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2113), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [sym_false] = ACTIONS(590), + [anon_sym_restrict] = ACTIONS(590), + [sym_identifier] = ACTIONS(590), + [anon_sym_goto] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_typedef] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym__Atomic] = ACTIONS(590), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(590), + [sym_number_literal] = ACTIONS(592), + [anon_sym_volatile] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(590), + [anon_sym_signed] = ACTIONS(590), + [anon_sym_long] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(590), + [anon_sym_L] = ACTIONS(590), + [anon_sym___attribute__] = ACTIONS(590), + [anon_sym_sizeof] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_union] = ACTIONS(590), + [anon_sym_unsigned] = ACTIONS(590), + [anon_sym_short] = ACTIONS(590), + [anon_sym_do] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(592), + [sym_preproc_directive] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(592), + [aux_sym_preproc_if_token1] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_LPAREN2] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_else] = ACTIONS(590), + [sym_primitive_type] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [aux_sym_preproc_include_token1] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_static] = ACTIONS(590), + [anon_sym_register] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_if] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(590), + [sym_true] = ACTIONS(590), + [anon_sym_enum] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(592), + [aux_sym_preproc_def_token1] = ACTIONS(590), + [anon_sym_auto] = ACTIONS(590), + [anon_sym_inline] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), }, [491] = { - [sym_pointer_expression] = STATE(517), - [sym_logical_expression] = STATE(517), - [sym_math_expression] = STATE(517), - [sym_cast_expression] = STATE(517), - [sym_field_expression] = STATE(517), - [sym__expression] = STATE(517), - [sym_bitwise_expression] = STATE(517), - [sym_equality_expression] = STATE(517), - [sym_sizeof_expression] = STATE(517), - [sym_compound_literal_expression] = STATE(517), - [sym_parenthesized_expression] = STATE(517), - [sym_char_literal] = STATE(517), - [sym_concatenated_string] = STATE(517), - [sym_conditional_expression] = STATE(517), - [sym_assignment_expression] = STATE(517), - [sym_relational_expression] = STATE(517), - [sym_shift_expression] = STATE(517), - [sym_subscript_expression] = STATE(517), - [sym_call_expression] = STATE(517), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2117), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [sym_continue_statement] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(491), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(491), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_preproc_include] = STATE(491), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(491), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_preproc_def] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(491), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(491), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(491), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(491), + [sym_preproc_if] = STATE(491), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(491), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(601), + [anon_sym_sizeof] = ACTIONS(604), + [anon_sym_unsigned] = ACTIONS(607), + [anon_sym_restrict] = ACTIONS(610), + [anon_sym_short] = ACTIONS(607), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_null] = ACTIONS(2075), + [anon_sym_do] = ACTIONS(2078), + [anon_sym_goto] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2084), + [anon_sym_TILDE] = ACTIONS(625), + [sym_preproc_directive] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(610), + [anon_sym_LPAREN2] = ACTIONS(639), + [anon_sym_typedef] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_DASH_DASH] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym__Atomic] = ACTIONS(610), + [sym_primitive_type] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2102), + [aux_sym_preproc_include_token1] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_static] = ACTIONS(669), + [anon_sym_volatile] = ACTIONS(610), + [anon_sym_register] = ACTIONS(669), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_switch] = ACTIONS(2114), + [anon_sym_signed] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(684), + [anon_sym_long] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(645), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2126), + [sym_number_literal] = ACTIONS(2129), + [aux_sym_preproc_def_token1] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_auto] = ACTIONS(669), + [anon_sym_L] = ACTIONS(711), + [anon_sym_inline] = ACTIONS(669), + [anon_sym___attribute__] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(687), }, [492] = { - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym__expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2123), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), + [sym_pointer_expression] = STATE(197), + [sym_logical_expression] = STATE(197), + [sym_math_expression] = STATE(197), + [sym_cast_expression] = STATE(197), + [sym_field_expression] = STATE(197), + [sym__expression] = STATE(197), + [sym_bitwise_expression] = STATE(197), + [sym_equality_expression] = STATE(197), + [sym_sizeof_expression] = STATE(197), + [sym_compound_literal_expression] = STATE(197), + [sym_parenthesized_expression] = STATE(197), + [sym_char_literal] = STATE(197), + [sym_concatenated_string] = STATE(197), + [sym_conditional_expression] = STATE(197), + [sym_assignment_expression] = STATE(197), + [sym_relational_expression] = STATE(197), + [sym_shift_expression] = STATE(197), + [sym_subscript_expression] = STATE(197), + [sym_call_expression] = STATE(197), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(734), + [sym_identifier] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(191), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2121), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2121), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(734), + [sym_null] = ACTIONS(734), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [493] = { - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_union] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(781), - [anon_sym_unsigned] = ACTIONS(781), - [anon_sym_restrict] = ACTIONS(781), - [anon_sym_short] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(779), - [sym_null] = ACTIONS(781), - [sym_identifier] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [anon_sym_goto] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(779), - [sym_preproc_directive] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(779), - [aux_sym_preproc_if_token1] = ACTIONS(781), - [anon_sym_const] = ACTIONS(781), - [anon_sym_LPAREN2] = ACTIONS(779), - [anon_sym_typedef] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym__Atomic] = ACTIONS(781), - [sym_primitive_type] = ACTIONS(781), - [sym_true] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(781), - [aux_sym_preproc_include_token1] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_static] = ACTIONS(781), - [anon_sym_volatile] = ACTIONS(781), - [anon_sym_register] = ACTIONS(781), - [anon_sym_extern] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_if] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(781), - [anon_sym_switch] = ACTIONS(781), - [anon_sym_signed] = ACTIONS(781), - [anon_sym_enum] = ACTIONS(781), - [anon_sym_long] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_return] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(779), - [sym_number_literal] = ACTIONS(779), - [aux_sym_preproc_def_token1] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [anon_sym_auto] = ACTIONS(781), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_inline] = ACTIONS(781), - [anon_sym___attribute__] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), + [sym_pointer_expression] = STATE(519), + [sym_logical_expression] = STATE(519), + [sym_math_expression] = STATE(519), + [sym_cast_expression] = STATE(519), + [sym_field_expression] = STATE(519), + [sym__expression] = STATE(519), + [sym_bitwise_expression] = STATE(519), + [sym_equality_expression] = STATE(519), + [sym_sizeof_expression] = STATE(519), + [sym_compound_literal_expression] = STATE(519), + [sym_parenthesized_expression] = STATE(519), + [sym_char_literal] = STATE(519), + [sym_concatenated_string] = STATE(519), + [sym_conditional_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_relational_expression] = STATE(519), + [sym_shift_expression] = STATE(519), + [sym_subscript_expression] = STATE(519), + [sym_call_expression] = STATE(519), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2135), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2135), + [sym_null] = ACTIONS(2135), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [494] = { - [sym_null] = ACTIONS(793), - [anon_sym_restrict] = ACTIONS(793), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_typedef] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym__Atomic] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [sym_number_literal] = ACTIONS(795), - [anon_sym_volatile] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_struct] = ACTIONS(793), - [anon_sym_signed] = ACTIONS(793), - [anon_sym_long] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(795), - [anon_sym___attribute__] = ACTIONS(793), - [anon_sym_sizeof] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_union] = ACTIONS(793), - [anon_sym_unsigned] = ACTIONS(793), - [anon_sym_short] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_AMP] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_else] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_primitive_type] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_static] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_if] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [anon_sym_enum] = ACTIONS(793), - [sym_identifier] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [anon_sym_auto] = ACTIONS(793), - [anon_sym_inline] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), + [sym_pointer_expression] = STATE(520), + [sym_logical_expression] = STATE(520), + [sym_math_expression] = STATE(520), + [sym_cast_expression] = STATE(520), + [sym_field_expression] = STATE(520), + [sym__expression] = STATE(520), + [sym_bitwise_expression] = STATE(520), + [sym_equality_expression] = STATE(520), + [sym_sizeof_expression] = STATE(520), + [sym_compound_literal_expression] = STATE(520), + [sym_parenthesized_expression] = STATE(520), + [sym_char_literal] = STATE(520), + [sym_concatenated_string] = STATE(520), + [sym_conditional_expression] = STATE(520), + [sym_assignment_expression] = STATE(520), + [sym_relational_expression] = STATE(520), + [sym_shift_expression] = STATE(520), + [sym_subscript_expression] = STATE(520), + [sym_call_expression] = STATE(520), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2139), + [sym_identifier] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2139), + [sym_null] = ACTIONS(2139), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [495] = { - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_union] = ACTIONS(823), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(823), - [anon_sym_restrict] = ACTIONS(823), - [anon_sym_short] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym_null] = ACTIONS(823), - [sym_identifier] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_goto] = ACTIONS(823), - [ts_builtin_sym_end] = ACTIONS(825), - [anon_sym_TILDE] = ACTIONS(825), - [sym_preproc_directive] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(825), - [aux_sym_preproc_if_token1] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_const] = ACTIONS(823), - [anon_sym_LPAREN2] = ACTIONS(825), - [anon_sym_typedef] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(825), - [anon_sym__Atomic] = ACTIONS(823), - [sym_primitive_type] = ACTIONS(823), - [sym_true] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(823), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(825), - [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_if] = ACTIONS(823), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(823), - [anon_sym_signed] = ACTIONS(823), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_long] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_return] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(825), - [sym_number_literal] = ACTIONS(825), - [aux_sym_preproc_def_token1] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), + [sym_pointer_expression] = STATE(521), + [sym_logical_expression] = STATE(521), + [sym_math_expression] = STATE(521), + [sym_cast_expression] = STATE(521), + [sym_field_expression] = STATE(521), + [sym__expression] = STATE(521), + [sym_bitwise_expression] = STATE(521), + [sym_equality_expression] = STATE(521), + [sym_sizeof_expression] = STATE(521), + [sym_compound_literal_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_char_literal] = STATE(521), + [sym_concatenated_string] = STATE(521), + [sym_conditional_expression] = STATE(521), + [sym_assignment_expression] = STATE(521), + [sym_relational_expression] = STATE(521), + [sym_shift_expression] = STATE(521), + [sym_subscript_expression] = STATE(521), + [sym_call_expression] = STATE(521), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2143), + [sym_identifier] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2143), + [sym_null] = ACTIONS(2143), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [496] = { - [sym_null] = ACTIONS(834), - [anon_sym_restrict] = ACTIONS(834), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(834), - [anon_sym_const] = ACTIONS(834), - [anon_sym_typedef] = ACTIONS(834), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym__Atomic] = ACTIONS(834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(834), - [sym_number_literal] = ACTIONS(836), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_extern] = ACTIONS(834), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_struct] = ACTIONS(834), - [anon_sym_signed] = ACTIONS(834), - [anon_sym_long] = ACTIONS(834), - [anon_sym_while] = ACTIONS(834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(834), - [anon_sym_SQUOTE] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym___attribute__] = ACTIONS(834), - [anon_sym_sizeof] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsigned] = ACTIONS(834), - [anon_sym_short] = ACTIONS(834), - [anon_sym_do] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(836), - [sym_preproc_directive] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(834), - [anon_sym_LPAREN2] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_else] = ACTIONS(834), - [sym_true] = ACTIONS(834), - [sym_primitive_type] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_break] = ACTIONS(834), - [aux_sym_preproc_include_token1] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_static] = ACTIONS(834), - [anon_sym_register] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(834), - [sym_false] = ACTIONS(834), - [anon_sym_enum] = ACTIONS(834), - [sym_identifier] = ACTIONS(834), - [anon_sym_return] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(836), - [aux_sym_preproc_def_token1] = ACTIONS(834), - [anon_sym_auto] = ACTIONS(834), - [anon_sym_inline] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), + [sym_pointer_expression] = STATE(522), + [sym_logical_expression] = STATE(522), + [sym_math_expression] = STATE(522), + [sym_cast_expression] = STATE(522), + [sym_field_expression] = STATE(522), + [sym__expression] = STATE(522), + [sym_bitwise_expression] = STATE(522), + [sym_equality_expression] = STATE(522), + [sym_sizeof_expression] = STATE(522), + [sym_compound_literal_expression] = STATE(522), + [sym_parenthesized_expression] = STATE(522), + [sym_char_literal] = STATE(522), + [sym_concatenated_string] = STATE(522), + [sym_conditional_expression] = STATE(522), + [sym_assignment_expression] = STATE(522), + [sym_relational_expression] = STATE(522), + [sym_shift_expression] = STATE(522), + [sym_subscript_expression] = STATE(522), + [sym_call_expression] = STATE(522), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2147), + [sym_null] = ACTIONS(2147), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [497] = { - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_union] = ACTIONS(840), - [anon_sym_sizeof] = ACTIONS(840), - [anon_sym_unsigned] = ACTIONS(840), - [anon_sym_restrict] = ACTIONS(840), - [anon_sym_short] = ACTIONS(840), - [anon_sym_DQUOTE] = ACTIONS(838), - [sym_null] = ACTIONS(840), - [sym_identifier] = ACTIONS(840), - [anon_sym_do] = ACTIONS(840), - [anon_sym_goto] = ACTIONS(840), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(838), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(838), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [anon_sym_const] = ACTIONS(840), - [anon_sym_LPAREN2] = ACTIONS(838), - [anon_sym_typedef] = ACTIONS(840), - [anon_sym_RBRACE] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym__Atomic] = ACTIONS(840), - [sym_primitive_type] = ACTIONS(840), - [sym_true] = ACTIONS(840), - [anon_sym_for] = ACTIONS(840), - [anon_sym_break] = ACTIONS(840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [aux_sym_preproc_include_token1] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(838), - [anon_sym_static] = ACTIONS(840), - [anon_sym_volatile] = ACTIONS(840), - [anon_sym_register] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(838), - [anon_sym_if] = ACTIONS(840), - [anon_sym_struct] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(840), - [anon_sym_signed] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(840), - [anon_sym_long] = ACTIONS(840), - [anon_sym_PLUS] = ACTIONS(840), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_while] = ACTIONS(840), - [anon_sym_continue] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [anon_sym_SEMI] = ACTIONS(838), - [sym_number_literal] = ACTIONS(838), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [sym_false] = ACTIONS(840), - [anon_sym_auto] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(838), - [anon_sym_inline] = ACTIONS(840), - [anon_sym___attribute__] = ACTIONS(840), - [anon_sym_DASH] = ACTIONS(840), + [sym_pointer_expression] = STATE(523), + [sym_logical_expression] = STATE(523), + [sym_math_expression] = STATE(523), + [sym_cast_expression] = STATE(523), + [sym_field_expression] = STATE(523), + [sym__expression] = STATE(523), + [sym_bitwise_expression] = STATE(523), + [sym_equality_expression] = STATE(523), + [sym_sizeof_expression] = STATE(523), + [sym_compound_literal_expression] = STATE(523), + [sym_parenthesized_expression] = STATE(523), + [sym_char_literal] = STATE(523), + [sym_concatenated_string] = STATE(523), + [sym_conditional_expression] = STATE(523), + [sym_assignment_expression] = STATE(523), + [sym_relational_expression] = STATE(523), + [sym_shift_expression] = STATE(523), + [sym_subscript_expression] = STATE(523), + [sym_call_expression] = STATE(523), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2151), + [sym_identifier] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2151), + [sym_null] = ACTIONS(2151), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [498] = { - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_union] = ACTIONS(888), - [anon_sym_sizeof] = ACTIONS(888), - [anon_sym_unsigned] = ACTIONS(888), - [anon_sym_restrict] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(886), - [sym_null] = ACTIONS(888), - [sym_identifier] = ACTIONS(888), - [anon_sym_do] = ACTIONS(888), - [anon_sym_goto] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(886), - [sym_preproc_directive] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(886), - [aux_sym_preproc_if_token1] = ACTIONS(888), - [anon_sym_const] = ACTIONS(888), - [anon_sym_LPAREN2] = ACTIONS(886), - [anon_sym_typedef] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym__Atomic] = ACTIONS(888), - [sym_primitive_type] = ACTIONS(888), - [sym_true] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(888), - [aux_sym_preproc_include_token1] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_static] = ACTIONS(888), - [anon_sym_volatile] = ACTIONS(888), - [anon_sym_register] = ACTIONS(888), - [anon_sym_extern] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_if] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(888), - [anon_sym_switch] = ACTIONS(888), - [anon_sym_signed] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_return] = ACTIONS(888), - [anon_sym_while] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [aux_sym_preproc_ifdef_token2] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(886), - [sym_number_literal] = ACTIONS(886), - [aux_sym_preproc_def_token1] = ACTIONS(888), - [sym_false] = ACTIONS(888), - [anon_sym_auto] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym___attribute__] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), + [sym_pointer_expression] = STATE(524), + [sym_logical_expression] = STATE(524), + [sym_math_expression] = STATE(524), + [sym_cast_expression] = STATE(524), + [sym_field_expression] = STATE(524), + [sym__expression] = STATE(524), + [sym_bitwise_expression] = STATE(524), + [sym_equality_expression] = STATE(524), + [sym_sizeof_expression] = STATE(524), + [sym_compound_literal_expression] = STATE(524), + [sym_parenthesized_expression] = STATE(524), + [sym_char_literal] = STATE(524), + [sym_concatenated_string] = STATE(524), + [sym_conditional_expression] = STATE(524), + [sym_assignment_expression] = STATE(524), + [sym_relational_expression] = STATE(524), + [sym_shift_expression] = STATE(524), + [sym_subscript_expression] = STATE(524), + [sym_call_expression] = STATE(524), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2155), + [sym_null] = ACTIONS(2155), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [499] = { - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_case] = ACTIONS(896), - [sym_null] = ACTIONS(896), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(896), - [anon_sym_goto] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(898), - [anon_sym_default] = ACTIONS(896), - [anon_sym_else] = ACTIONS(896), - [sym_true] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(898), - [sym_number_literal] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_if] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [sym_identifier] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_SQUOTE] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(896), + [sym_pointer_expression] = STATE(525), + [sym_logical_expression] = STATE(525), + [sym_math_expression] = STATE(525), + [sym_cast_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym__expression] = STATE(525), + [sym_bitwise_expression] = STATE(525), + [sym_equality_expression] = STATE(525), + [sym_sizeof_expression] = STATE(525), + [sym_compound_literal_expression] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_char_literal] = STATE(525), + [sym_concatenated_string] = STATE(525), + [sym_conditional_expression] = STATE(525), + [sym_assignment_expression] = STATE(525), + [sym_relational_expression] = STATE(525), + [sym_shift_expression] = STATE(525), + [sym_subscript_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [500] = { - [sym_pointer_expression] = STATE(238), - [sym_logical_expression] = STATE(238), - [sym_math_expression] = STATE(238), - [sym_cast_expression] = STATE(238), - [sym_field_expression] = STATE(238), - [sym__expression] = STATE(238), - [sym_bitwise_expression] = STATE(238), - [sym_equality_expression] = STATE(238), - [sym_sizeof_expression] = STATE(238), - [sym_compound_literal_expression] = STATE(238), - [sym_parenthesized_expression] = STATE(238), - [sym_char_literal] = STATE(238), - [sym_concatenated_string] = STATE(238), - [sym_conditional_expression] = STATE(238), - [sym_assignment_expression] = STATE(238), - [sym_relational_expression] = STATE(238), - [sym_shift_expression] = STATE(238), - [sym_subscript_expression] = STATE(238), - [sym_call_expression] = STATE(238), - [sym_initializer_list] = STATE(237), - [sym_string_literal] = STATE(38), - [anon_sym_LBRACE] = ACTIONS(900), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(179), + [sym_pointer_expression] = STATE(526), + [sym_logical_expression] = STATE(526), + [sym_math_expression] = STATE(526), + [sym_cast_expression] = STATE(526), + [sym_field_expression] = STATE(526), + [sym__expression] = STATE(526), + [sym_bitwise_expression] = STATE(526), + [sym_equality_expression] = STATE(526), + [sym_sizeof_expression] = STATE(526), + [sym_compound_literal_expression] = STATE(526), + [sym_parenthesized_expression] = STATE(526), + [sym_char_literal] = STATE(526), + [sym_concatenated_string] = STATE(526), + [sym_conditional_expression] = STATE(526), + [sym_assignment_expression] = STATE(526), + [sym_relational_expression] = STATE(526), + [sym_shift_expression] = STATE(526), + [sym_subscript_expression] = STATE(526), + [sym_call_expression] = STATE(526), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(191), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [sym_false] = ACTIONS(902), - [sym_identifier] = ACTIONS(902), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [501] = { - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_union] = ACTIONS(955), - [anon_sym_sizeof] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_restrict] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym_null] = ACTIONS(955), - [sym_identifier] = ACTIONS(955), - [anon_sym_do] = ACTIONS(955), - [anon_sym_goto] = ACTIONS(955), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(953), - [sym_preproc_directive] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(953), - [aux_sym_preproc_if_token1] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [anon_sym_LPAREN2] = ACTIONS(953), - [anon_sym_typedef] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym__Atomic] = ACTIONS(955), - [sym_primitive_type] = ACTIONS(955), - [sym_true] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(955), - [aux_sym_preproc_include_token1] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_static] = ACTIONS(955), - [anon_sym_volatile] = ACTIONS(955), - [anon_sym_register] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_if] = ACTIONS(955), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_switch] = ACTIONS(955), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_return] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(953), - [sym_number_literal] = ACTIONS(953), - [aux_sym_preproc_def_token1] = ACTIONS(955), - [sym_false] = ACTIONS(955), - [anon_sym_auto] = ACTIONS(955), - [anon_sym_SQUOTE] = ACTIONS(953), - [anon_sym_inline] = ACTIONS(955), - [anon_sym___attribute__] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), + [sym_pointer_expression] = STATE(527), + [sym_logical_expression] = STATE(527), + [sym_math_expression] = STATE(527), + [sym_cast_expression] = STATE(527), + [sym_field_expression] = STATE(527), + [sym__expression] = STATE(527), + [sym_bitwise_expression] = STATE(527), + [sym_equality_expression] = STATE(527), + [sym_sizeof_expression] = STATE(527), + [sym_compound_literal_expression] = STATE(527), + [sym_parenthesized_expression] = STATE(527), + [sym_char_literal] = STATE(527), + [sym_concatenated_string] = STATE(527), + [sym_conditional_expression] = STATE(527), + [sym_assignment_expression] = STATE(527), + [sym_relational_expression] = STATE(527), + [sym_shift_expression] = STATE(527), + [sym_subscript_expression] = STATE(527), + [sym_call_expression] = STATE(527), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [502] = { - [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_union] = ACTIONS(804), + [anon_sym_sizeof] = ACTIONS(804), + [anon_sym_unsigned] = ACTIONS(804), + [anon_sym_restrict] = ACTIONS(804), + [anon_sym_short] = ACTIONS(804), + [sym_true] = ACTIONS(804), + [sym_false] = ACTIONS(804), + [sym_null] = ACTIONS(804), + [anon_sym_do] = ACTIONS(804), + [anon_sym_goto] = ACTIONS(804), + [sym_identifier] = ACTIONS(804), + [anon_sym_TILDE] = ACTIONS(802), + [sym_preproc_directive] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(802), + [aux_sym_preproc_if_token1] = ACTIONS(804), + [anon_sym_const] = ACTIONS(804), + [anon_sym_LPAREN2] = ACTIONS(802), + [anon_sym_typedef] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym__Atomic] = ACTIONS(804), + [sym_primitive_type] = ACTIONS(804), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(804), + [anon_sym_break] = ACTIONS(804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(804), + [aux_sym_preproc_include_token1] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_static] = ACTIONS(804), + [anon_sym_volatile] = ACTIONS(804), + [anon_sym_register] = ACTIONS(804), + [anon_sym_extern] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(802), + [anon_sym_if] = ACTIONS(804), + [anon_sym_struct] = ACTIONS(804), + [anon_sym_switch] = ACTIONS(804), + [anon_sym_signed] = ACTIONS(804), + [anon_sym_enum] = ACTIONS(804), + [anon_sym_long] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(804), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_return] = ACTIONS(804), + [anon_sym_while] = ACTIONS(804), + [anon_sym_continue] = ACTIONS(804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(802), + [sym_number_literal] = ACTIONS(802), + [aux_sym_preproc_def_token1] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(802), + [anon_sym_auto] = ACTIONS(804), + [anon_sym_L] = ACTIONS(804), + [anon_sym_inline] = ACTIONS(804), + [anon_sym___attribute__] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(804), + }, + [503] = { + [sym_false] = ACTIONS(816), + [anon_sym_restrict] = ACTIONS(816), + [sym_identifier] = ACTIONS(816), + [anon_sym_goto] = ACTIONS(816), + [anon_sym_const] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(818), + [anon_sym__Atomic] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(816), + [sym_number_literal] = ACTIONS(818), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(816), + [anon_sym_PLUS_PLUS] = ACTIONS(818), + [anon_sym_struct] = ACTIONS(816), + [anon_sym_signed] = ACTIONS(816), + [anon_sym_long] = ACTIONS(816), + [anon_sym_while] = ACTIONS(816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(816), + [anon_sym_L] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(816), + [anon_sym_sizeof] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsigned] = ACTIONS(816), + [anon_sym_short] = ACTIONS(816), + [anon_sym_do] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_else] = ACTIONS(816), + [sym_primitive_type] = ACTIONS(816), + [anon_sym_for] = ACTIONS(816), + [anon_sym_break] = ACTIONS(816), + [aux_sym_preproc_include_token1] = ACTIONS(816), + [anon_sym_BANG] = ACTIONS(818), + [anon_sym_static] = ACTIONS(816), + [anon_sym_register] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_if] = ACTIONS(816), + [anon_sym_switch] = ACTIONS(816), + [sym_true] = ACTIONS(816), + [anon_sym_enum] = ACTIONS(816), + [sym_null] = ACTIONS(816), + [anon_sym_return] = ACTIONS(816), + [anon_sym_continue] = ACTIONS(816), + [anon_sym_SEMI] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(816), + [anon_sym_auto] = ACTIONS(816), + [anon_sym_inline] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + }, + [504] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(846), + [anon_sym_DASH_EQ] = ACTIONS(846), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(846), + [anon_sym_LT_LT_EQ] = ACTIONS(846), + [anon_sym_QMARK] = ACTIONS(846), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(846), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(846), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_PIPE_EQ] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(846), + [anon_sym_RBRACK] = ACTIONS(846), + [anon_sym_AMP_EQ] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_COLON] = ACTIONS(846), + [anon_sym_STAR_EQ] = ACTIONS(846), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(846), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [505] = { + [sym_false] = ACTIONS(850), + [anon_sym_restrict] = ACTIONS(850), + [sym_identifier] = ACTIONS(850), + [anon_sym_goto] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_typedef] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(852), + [anon_sym__Atomic] = ACTIONS(850), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(850), + [sym_number_literal] = ACTIONS(852), + [anon_sym_volatile] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_PLUS_PLUS] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(850), + [anon_sym_signed] = ACTIONS(850), + [anon_sym_long] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [aux_sym_preproc_ifdef_token2] = ACTIONS(850), + [anon_sym_L] = ACTIONS(850), + [anon_sym___attribute__] = ACTIONS(850), + [anon_sym_sizeof] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_union] = ACTIONS(850), + [anon_sym_unsigned] = ACTIONS(850), + [anon_sym_short] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [sym_preproc_directive] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(852), + [aux_sym_preproc_if_token1] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(852), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_else] = ACTIONS(850), + [sym_primitive_type] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_static] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_if] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(850), + [sym_true] = ACTIONS(850), + [anon_sym_enum] = ACTIONS(850), + [sym_null] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(852), + [aux_sym_preproc_def_token1] = ACTIONS(850), + [anon_sym_auto] = ACTIONS(850), + [anon_sym_inline] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + }, + [506] = { + [sym_false] = ACTIONS(856), + [anon_sym_restrict] = ACTIONS(856), + [sym_identifier] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(856), + [anon_sym_const] = ACTIONS(856), + [anon_sym_typedef] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym__Atomic] = ACTIONS(856), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(856), + [sym_number_literal] = ACTIONS(858), + [anon_sym_volatile] = ACTIONS(856), + [anon_sym_SQUOTE] = ACTIONS(858), + [anon_sym_extern] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_struct] = ACTIONS(856), + [anon_sym_signed] = ACTIONS(856), + [anon_sym_long] = ACTIONS(856), + [anon_sym_while] = ACTIONS(856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(856), + [anon_sym_L] = ACTIONS(856), + [anon_sym___attribute__] = ACTIONS(856), + [anon_sym_sizeof] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_union] = ACTIONS(856), + [anon_sym_unsigned] = ACTIONS(856), + [anon_sym_short] = ACTIONS(856), + [anon_sym_do] = ACTIONS(856), + [anon_sym_TILDE] = ACTIONS(858), + [sym_preproc_directive] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [aux_sym_preproc_if_token1] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(858), + [anon_sym_LPAREN2] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_else] = ACTIONS(856), + [sym_primitive_type] = ACTIONS(856), + [anon_sym_for] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [aux_sym_preproc_include_token1] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_static] = ACTIONS(856), + [anon_sym_register] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(858), + [anon_sym_if] = ACTIONS(856), + [anon_sym_switch] = ACTIONS(856), + [sym_true] = ACTIONS(856), + [anon_sym_enum] = ACTIONS(856), + [sym_null] = ACTIONS(856), + [anon_sym_return] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(858), + [aux_sym_preproc_def_token1] = ACTIONS(856), + [anon_sym_auto] = ACTIONS(856), + [anon_sym_inline] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), + }, + [507] = { + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_union] = ACTIONS(862), + [anon_sym_sizeof] = ACTIONS(862), + [anon_sym_unsigned] = ACTIONS(862), + [anon_sym_restrict] = ACTIONS(862), + [anon_sym_short] = ACTIONS(862), + [sym_true] = ACTIONS(862), + [sym_false] = ACTIONS(862), + [sym_null] = ACTIONS(862), + [anon_sym_do] = ACTIONS(862), + [anon_sym_goto] = ACTIONS(862), + [sym_identifier] = ACTIONS(862), + [anon_sym_TILDE] = ACTIONS(860), + [sym_preproc_directive] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(860), + [aux_sym_preproc_if_token1] = ACTIONS(862), + [anon_sym_const] = ACTIONS(862), + [anon_sym_LPAREN2] = ACTIONS(860), + [anon_sym_typedef] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_DASH_DASH] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(860), + [anon_sym__Atomic] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(862), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(862), + [anon_sym_break] = ACTIONS(862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(862), + [aux_sym_preproc_include_token1] = ACTIONS(862), + [anon_sym_BANG] = ACTIONS(860), + [anon_sym_static] = ACTIONS(862), + [anon_sym_volatile] = ACTIONS(862), + [anon_sym_register] = ACTIONS(862), + [anon_sym_extern] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_if] = ACTIONS(862), + [anon_sym_struct] = ACTIONS(862), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_signed] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_long] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(860), + [anon_sym_return] = ACTIONS(862), + [anon_sym_while] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(860), + [sym_number_literal] = ACTIONS(860), + [aux_sym_preproc_def_token1] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_auto] = ACTIONS(862), + [anon_sym_L] = ACTIONS(862), + [anon_sym_inline] = ACTIONS(862), + [anon_sym___attribute__] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(862), + }, + [508] = { + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_union] = ACTIONS(866), + [anon_sym_sizeof] = ACTIONS(866), + [anon_sym_unsigned] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym_short] = ACTIONS(866), + [sym_true] = ACTIONS(866), + [sym_false] = ACTIONS(866), + [sym_null] = ACTIONS(866), + [anon_sym_do] = ACTIONS(866), + [anon_sym_goto] = ACTIONS(866), + [sym_identifier] = ACTIONS(866), + [anon_sym_TILDE] = ACTIONS(864), + [sym_preproc_directive] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(864), + [aux_sym_preproc_if_token1] = ACTIONS(866), + [anon_sym_const] = ACTIONS(866), + [anon_sym_LPAREN2] = ACTIONS(864), + [anon_sym_typedef] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym_DQUOTE] = ACTIONS(864), + [anon_sym__Atomic] = ACTIONS(866), + [sym_primitive_type] = ACTIONS(866), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [aux_sym_preproc_ifdef_token1] = ACTIONS(866), + [aux_sym_preproc_include_token1] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_static] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_register] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_if] = ACTIONS(866), + [anon_sym_struct] = ACTIONS(866), + [anon_sym_switch] = ACTIONS(866), + [anon_sym_signed] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [anon_sym_long] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [aux_sym_preproc_ifdef_token2] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(864), + [sym_number_literal] = ACTIONS(864), + [aux_sym_preproc_def_token1] = ACTIONS(866), + [anon_sym_SQUOTE] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(866), + [anon_sym_L] = ACTIONS(866), + [anon_sym_inline] = ACTIONS(866), + [anon_sym___attribute__] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + }, + [509] = { + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_case] = ACTIONS(918), + [sym_false] = ACTIONS(918), + [sym_identifier] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_default] = ACTIONS(918), + [anon_sym_else] = ACTIONS(918), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(920), + [sym_number_literal] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_if] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(918), + [sym_true] = ACTIONS(918), + [sym_null] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_L] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_sizeof] = ACTIONS(918), + }, + [510] = { + [sym_pointer_expression] = STATE(245), + [sym_logical_expression] = STATE(245), + [sym_math_expression] = STATE(245), + [sym_cast_expression] = STATE(245), + [sym_field_expression] = STATE(245), + [sym__expression] = STATE(245), + [sym_bitwise_expression] = STATE(245), + [sym_equality_expression] = STATE(245), + [sym_sizeof_expression] = STATE(245), + [sym_compound_literal_expression] = STATE(245), + [sym_parenthesized_expression] = STATE(245), + [sym_char_literal] = STATE(245), + [sym_concatenated_string] = STATE(245), + [sym_conditional_expression] = STATE(245), + [sym_assignment_expression] = STATE(245), + [sym_relational_expression] = STATE(245), + [sym_shift_expression] = STATE(245), + [sym_subscript_expression] = STATE(245), + [sym_call_expression] = STATE(245), + [sym_initializer_list] = STATE(244), + [sym_string_literal] = STATE(39), + [anon_sym_LBRACE] = ACTIONS(922), + [sym_false] = ACTIONS(924), + [sym_identifier] = ACTIONS(924), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), + }, + [511] = { + [anon_sym_LBRACE] = ACTIONS(967), [anon_sym_union] = ACTIONS(965), [anon_sym_sizeof] = ACTIONS(965), [anon_sym_unsigned] = ACTIONS(965), [anon_sym_restrict] = ACTIONS(965), [anon_sym_short] = ACTIONS(965), - [anon_sym_DQUOTE] = ACTIONS(963), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), [sym_null] = ACTIONS(965), - [sym_identifier] = ACTIONS(965), [anon_sym_do] = ACTIONS(965), [anon_sym_goto] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(963), + [sym_identifier] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), [sym_preproc_directive] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(967), [aux_sym_preproc_if_token1] = ACTIONS(965), + [ts_builtin_sym_end] = ACTIONS(967), [anon_sym_const] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_LPAREN2] = ACTIONS(967), [anon_sym_typedef] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), [anon_sym__Atomic] = ACTIONS(965), [sym_primitive_type] = ACTIONS(965), - [sym_true] = ACTIONS(965), + [sym_comment] = ACTIONS(3), [anon_sym_for] = ACTIONS(965), [anon_sym_break] = ACTIONS(965), [aux_sym_preproc_ifdef_token1] = ACTIONS(965), [aux_sym_preproc_include_token1] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_static] = ACTIONS(965), [anon_sym_volatile] = ACTIONS(965), [anon_sym_register] = ACTIONS(965), [anon_sym_extern] = ACTIONS(965), - [anon_sym_STAR] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(967), [anon_sym_if] = ACTIONS(965), [anon_sym_struct] = ACTIONS(965), [anon_sym_switch] = ACTIONS(965), @@ -23422,757 +23820,452 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(965), [anon_sym_long] = ACTIONS(965), [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(967), [anon_sym_return] = ACTIONS(965), [anon_sym_while] = ACTIONS(965), [anon_sym_continue] = ACTIONS(965), [aux_sym_preproc_ifdef_token2] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(963), - [sym_number_literal] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(967), + [sym_number_literal] = ACTIONS(967), [aux_sym_preproc_def_token1] = ACTIONS(965), - [sym_false] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(967), [anon_sym_auto] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(963), + [anon_sym_L] = ACTIONS(965), [anon_sym_inline] = ACTIONS(965), [anon_sym___attribute__] = ACTIONS(965), [anon_sym_DASH] = ACTIONS(965), }, - [503] = { - [sym_null] = ACTIONS(967), - [anon_sym_restrict] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_typedef] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym__Atomic] = ACTIONS(967), - [aux_sym_preproc_ifdef_token1] = ACTIONS(967), - [sym_number_literal] = ACTIONS(969), - [anon_sym_volatile] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_signed] = ACTIONS(967), - [anon_sym_long] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [anon_sym___attribute__] = ACTIONS(967), - [anon_sym_sizeof] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsigned] = ACTIONS(967), - [anon_sym_short] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(969), - [sym_preproc_directive] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), - [aux_sym_preproc_if_token1] = ACTIONS(967), - [anon_sym_LPAREN2] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_else] = ACTIONS(2125), - [sym_true] = ACTIONS(967), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [aux_sym_preproc_include_token1] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_static] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_if] = ACTIONS(967), - [anon_sym_switch] = ACTIONS(967), - [sym_false] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [sym_identifier] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [aux_sym_preproc_def_token1] = ACTIONS(967), - [anon_sym_auto] = ACTIONS(967), - [anon_sym_inline] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - }, - [504] = { - [sym_null] = ACTIONS(1011), - [anon_sym_restrict] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_typedef] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym__Atomic] = ACTIONS(1011), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1011), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_volatile] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_signed] = ACTIONS(1011), - [anon_sym_long] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym___attribute__] = ACTIONS(1011), - [anon_sym_sizeof] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_unsigned] = ACTIONS(1011), - [anon_sym_short] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [sym_preproc_directive] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1013), - [aux_sym_preproc_if_token1] = ACTIONS(1011), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_else] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [sym_primitive_type] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [aux_sym_preproc_include_token1] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_switch] = ACTIONS(1011), - [sym_false] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [aux_sym_preproc_def_token1] = ACTIONS(1011), - [anon_sym_auto] = ACTIONS(1011), - [anon_sym_inline] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - }, - [505] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1031), - [anon_sym_DASH_EQ] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2133), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1031), - [anon_sym_LT_LT_EQ] = ACTIONS(1031), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_CARET_EQ] = ACTIONS(1031), - [anon_sym_COMMA] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_PIPE_EQ] = ACTIONS(1031), - [anon_sym_RPAREN] = ACTIONS(1031), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_AMP_EQ] = ACTIONS(1031), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_EQ] = ACTIONS(2141), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_COLON] = ACTIONS(1031), - [anon_sym_STAR_EQ] = ACTIONS(1031), - [anon_sym_EQ_EQ] = ACTIONS(2143), - [anon_sym_PIPE_PIPE] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(1031), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [506] = { - [sym_null] = ACTIONS(1035), - [anon_sym_restrict] = ACTIONS(1035), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1035), - [anon_sym_const] = ACTIONS(1035), - [anon_sym_typedef] = ACTIONS(1035), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [anon_sym__Atomic] = ACTIONS(1035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1035), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_volatile] = ACTIONS(1035), - [anon_sym_extern] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1035), - [anon_sym_signed] = ACTIONS(1035), - [anon_sym_long] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(1035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym___attribute__] = ACTIONS(1035), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1035), - [anon_sym_unsigned] = ACTIONS(1035), - [anon_sym_short] = ACTIONS(1035), - [anon_sym_do] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1035), - [anon_sym_LPAREN2] = ACTIONS(1037), - [anon_sym_RBRACE] = ACTIONS(1037), - [anon_sym_else] = ACTIONS(1035), - [sym_true] = ACTIONS(1035), - [sym_primitive_type] = ACTIONS(1035), - [anon_sym_for] = ACTIONS(1035), - [anon_sym_break] = ACTIONS(1035), - [aux_sym_preproc_include_token1] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1035), - [anon_sym_register] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1035), - [sym_false] = ACTIONS(1035), - [anon_sym_enum] = ACTIONS(1035), - [sym_identifier] = ACTIONS(1035), - [anon_sym_return] = ACTIONS(1035), - [anon_sym_continue] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1035), - [anon_sym_auto] = ACTIONS(1035), - [anon_sym_inline] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - }, - [507] = { - [sym_null] = ACTIONS(1039), - [anon_sym_restrict] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_const] = ACTIONS(1039), - [anon_sym_typedef] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1041), - [anon_sym__Atomic] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_volatile] = ACTIONS(1039), - [anon_sym_extern] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1039), - [anon_sym_signed] = ACTIONS(1039), - [anon_sym_long] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym___attribute__] = ACTIONS(1039), - [anon_sym_sizeof] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1039), - [anon_sym_unsigned] = ACTIONS(1039), - [anon_sym_short] = ACTIONS(1039), - [anon_sym_do] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [anon_sym_LPAREN2] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_else] = ACTIONS(1039), - [sym_true] = ACTIONS(1039), - [sym_primitive_type] = ACTIONS(1039), - [anon_sym_for] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(1039), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_register] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_enum] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1039), - [anon_sym_return] = ACTIONS(1039), - [anon_sym_continue] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [anon_sym_auto] = ACTIONS(1039), - [anon_sym_inline] = ACTIONS(1039), - [anon_sym_DASH] = ACTIONS(1039), - }, - [508] = { - [sym_null] = ACTIONS(1043), - [anon_sym_restrict] = ACTIONS(1043), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1043), - [anon_sym_const] = ACTIONS(1043), - [anon_sym_typedef] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1045), - [anon_sym__Atomic] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [sym_number_literal] = ACTIONS(1045), - [anon_sym_volatile] = ACTIONS(1043), - [anon_sym_extern] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1043), - [anon_sym_signed] = ACTIONS(1043), - [anon_sym_long] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1045), - [anon_sym___attribute__] = ACTIONS(1043), - [anon_sym_sizeof] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1043), - [anon_sym_unsigned] = ACTIONS(1043), - [anon_sym_short] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1045), - [sym_preproc_directive] = ACTIONS(1043), - [anon_sym_AMP] = ACTIONS(1045), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [anon_sym_LPAREN2] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_else] = ACTIONS(1043), - [sym_true] = ACTIONS(1043), - [sym_primitive_type] = ACTIONS(1043), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_break] = ACTIONS(1043), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_register] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(1043), - [sym_false] = ACTIONS(1043), - [anon_sym_enum] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_continue] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1045), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [anon_sym_auto] = ACTIONS(1043), - [anon_sym_inline] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - }, - [509] = { - [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1051), - [anon_sym_sizeof] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym_short] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1049), - [sym_null] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(1051), - [anon_sym_goto] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1049), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1049), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_LPAREN2] = ACTIONS(1049), - [anon_sym_typedef] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1049), - [anon_sym_DASH_DASH] = ACTIONS(1049), - [anon_sym__Atomic] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [sym_true] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [aux_sym_preproc_include_token1] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_struct] = ACTIONS(1051), - [anon_sym_switch] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1049), - [sym_number_literal] = ACTIONS(1049), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [sym_false] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_inline] = ACTIONS(1051), - [anon_sym___attribute__] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - }, - [510] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1084), - [anon_sym_DASH_EQ] = ACTIONS(1084), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(1082), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1084), - [anon_sym_LT_LT_EQ] = ACTIONS(1084), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_CARET_EQ] = ACTIONS(1084), - [anon_sym_COMMA] = ACTIONS(1084), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_PIPE_EQ] = ACTIONS(1084), - [anon_sym_RPAREN] = ACTIONS(1084), - [anon_sym_RBRACK] = ACTIONS(1084), - [anon_sym_AMP_EQ] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_AMP_AMP] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(1084), - [anon_sym_COLON] = ACTIONS(1084), - [anon_sym_STAR_EQ] = ACTIONS(1084), - [anon_sym_EQ_EQ] = ACTIONS(1084), - [anon_sym_PIPE_PIPE] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(1084), - [anon_sym_BANG_EQ] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [511] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1088), - [anon_sym_DASH_EQ] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_EQ] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1086), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1088), - [anon_sym_LT_LT_EQ] = ACTIONS(1088), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_GT_EQ] = ACTIONS(1088), - [anon_sym_CARET_EQ] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1088), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_PIPE_EQ] = ACTIONS(1088), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_RBRACK] = ACTIONS(1088), - [anon_sym_AMP_EQ] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_EQ] = ACTIONS(1086), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1088), - [anon_sym_STAR_EQ] = ACTIONS(1088), - [anon_sym_EQ_EQ] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(1088), - [anon_sym_BANG_EQ] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), - }, [512] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1090), - [anon_sym_DASH_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2133), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1090), - [anon_sym_LT_LT_EQ] = ACTIONS(1090), - [anon_sym_QMARK] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_CARET_EQ] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_PIPE_EQ] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_RBRACK] = ACTIONS(1090), - [anon_sym_AMP_EQ] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_EQ] = ACTIONS(2151), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_COLON] = ACTIONS(1090), - [anon_sym_STAR_EQ] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(2143), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_union] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(986), + [anon_sym_unsigned] = ACTIONS(986), + [anon_sym_restrict] = ACTIONS(986), + [anon_sym_short] = ACTIONS(986), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_goto] = ACTIONS(986), + [sym_identifier] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_typedef] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(986), + [sym_primitive_type] = ACTIONS(986), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(986), + [aux_sym_preproc_include_token1] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_static] = ACTIONS(986), + [anon_sym_volatile] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_if] = ACTIONS(986), + [anon_sym_struct] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(986), + [anon_sym_signed] = ACTIONS(986), + [anon_sym_enum] = ACTIONS(986), + [anon_sym_long] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_return] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(984), + [sym_number_literal] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(986), + [anon_sym_L] = ACTIONS(986), + [anon_sym_inline] = ACTIONS(986), + [anon_sym___attribute__] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), }, [513] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1080), - [anon_sym_DASH_EQ] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1080), - [anon_sym_CARET] = ACTIONS(1078), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1080), - [anon_sym_LT_LT_EQ] = ACTIONS(1080), - [anon_sym_QMARK] = ACTIONS(1080), - [anon_sym_GT_EQ] = ACTIONS(1080), - [anon_sym_CARET_EQ] = ACTIONS(1080), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1080), - [anon_sym_LT_LT] = ACTIONS(1078), - [anon_sym_PIPE_EQ] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1080), - [anon_sym_AMP_EQ] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_STAR_EQ] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(1080), - [anon_sym_BANG_EQ] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_union] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [sym_identifier] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(994), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(994), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [anon_sym__Atomic] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_static] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_if] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_return] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(994), + [sym_number_literal] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_L] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), }, [514] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1098), - [anon_sym_DASH_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1098), - [anon_sym_LT_LT_EQ] = ACTIONS(1098), - [anon_sym_QMARK] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_CARET_EQ] = ACTIONS(1098), - [anon_sym_COMMA] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1098), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_PIPE_EQ] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_RBRACK] = ACTIONS(1098), - [anon_sym_AMP_EQ] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_EQ] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(1098), - [anon_sym_STAR_EQ] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(2143), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_false] = ACTIONS(998), + [anon_sym_restrict] = ACTIONS(998), + [sym_identifier] = ACTIONS(998), + [anon_sym_goto] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(998), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(998), + [anon_sym_signed] = ACTIONS(998), + [anon_sym_long] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(998), + [anon_sym_L] = ACTIONS(998), + [anon_sym___attribute__] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(998), + [anon_sym_unsigned] = ACTIONS(998), + [anon_sym_short] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(2195), + [sym_primitive_type] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [aux_sym_preproc_include_token1] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(998), + [anon_sym_switch] = ACTIONS(998), + [sym_true] = ACTIONS(998), + [anon_sym_enum] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(998), + [anon_sym_auto] = ACTIONS(998), + [anon_sym_inline] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), }, [515] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1098), - [anon_sym_DASH_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1098), - [anon_sym_LT_LT_EQ] = ACTIONS(1098), - [anon_sym_QMARK] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_CARET_EQ] = ACTIONS(1098), - [anon_sym_COMMA] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1098), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_PIPE_EQ] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_RBRACK] = ACTIONS(1098), - [anon_sym_AMP_EQ] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_EQ] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(1098), - [anon_sym_STAR_EQ] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(2143), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_false] = ACTIONS(1042), + [anon_sym_restrict] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1042), + [anon_sym_goto] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), + [sym_number_literal] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1042), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), + [anon_sym_L] = ACTIONS(1042), + [anon_sym___attribute__] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1042), + [sym_true] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [sym_null] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1042), + [anon_sym_auto] = ACTIONS(1042), + [anon_sym_inline] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), }, [516] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1090), - [anon_sym_DASH_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2133), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1090), - [anon_sym_LT_LT_EQ] = ACTIONS(1090), - [anon_sym_QMARK] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_CARET_EQ] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_PIPE_EQ] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_RBRACK] = ACTIONS(1090), - [anon_sym_AMP_EQ] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(2151), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_COLON] = ACTIONS(1090), - [anon_sym_STAR_EQ] = ACTIONS(1090), - [anon_sym_EQ_EQ] = ACTIONS(2143), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_false] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [sym_identifier] = 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_comment] = ACTIONS(3), + [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), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [anon_sym_L] = ACTIONS(1062), + [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), + [anon_sym_TILDE] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1062), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_switch] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [sym_null] = 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_auto] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), }, [517] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), + [sym_false] = ACTIONS(1066), + [anon_sym_restrict] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1066), + [anon_sym_goto] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1066), + [sym_number_literal] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1066), + [anon_sym_signed] = ACTIONS(1066), + [anon_sym_long] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1066), + [anon_sym_L] = ACTIONS(1066), + [anon_sym___attribute__] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1066), + [anon_sym_unsigned] = ACTIONS(1066), + [anon_sym_short] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [aux_sym_preproc_include_token1] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_switch] = ACTIONS(1066), + [sym_true] = ACTIONS(1066), + [anon_sym_enum] = ACTIONS(1066), + [sym_null] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1066), + [anon_sym_auto] = ACTIONS(1066), + [anon_sym_inline] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + }, + [518] = { + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_LPAREN2] = ACTIONS(1072), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_L] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + }, + [519] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), [anon_sym_PERCENT_EQ] = ACTIONS(1114), [anon_sym_DASH_EQ] = ACTIONS(1114), - [anon_sym_LT] = ACTIONS(1112), - [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2175), [anon_sym_CARET] = ACTIONS(1112), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), [anon_sym_PLUS_EQ] = ACTIONS(1114), [anon_sym_LT_LT_EQ] = ACTIONS(1114), [anon_sym_QMARK] = ACTIONS(1114), - [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(2175), [anon_sym_CARET_EQ] = ACTIONS(1114), [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(312), + [anon_sym_PLUS_PLUS] = ACTIONS(324), [anon_sym_GT_GT_EQ] = ACTIONS(1114), - [anon_sym_LT_LT] = ACTIONS(1112), + [anon_sym_LT_LT] = ACTIONS(2179), [anon_sym_PIPE_EQ] = ACTIONS(1114), [anon_sym_RPAREN] = ACTIONS(1114), [anon_sym_RBRACK] = ACTIONS(1114), @@ -24180,605 +24273,819 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1112), [anon_sym_AMP_AMP] = ACTIONS(1114), [anon_sym_EQ] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(2179), [anon_sym_RBRACE] = ACTIONS(1114), [anon_sym_COLON] = ACTIONS(1114), [anon_sym_STAR_EQ] = ACTIONS(1114), [anon_sym_EQ_EQ] = ACTIONS(1114), [anon_sym_PIPE_PIPE] = ACTIONS(1114), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), [anon_sym_SLASH_EQ] = ACTIONS(1114), [anon_sym_BANG_EQ] = ACTIONS(1114), [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_GT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(2173), [anon_sym_PIPE] = ACTIONS(1112), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [518] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1098), - [anon_sym_DASH_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2133), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1098), - [anon_sym_LT_LT_EQ] = ACTIONS(1098), - [anon_sym_QMARK] = ACTIONS(1098), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_CARET_EQ] = ACTIONS(1098), - [anon_sym_COMMA] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1098), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_PIPE_EQ] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_RBRACK] = ACTIONS(1098), - [anon_sym_AMP_EQ] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_EQ] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(1098), - [anon_sym_STAR_EQ] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(2143), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [519] = { - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_null] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1130), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [anon_sym_const] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym__Atomic] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [sym_true] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1130), - [sym_number_literal] = ACTIONS(1130), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), }, [520] = { - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_restrict] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_null] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [anon_sym_goto] = ACTIONS(1144), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_typedef] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1144), - [sym_primitive_type] = ACTIONS(1144), - [sym_true] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1144), - [aux_sym_preproc_include_token1] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_volatile] = ACTIONS(1144), - [anon_sym_register] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1144), - [sym_false] = ACTIONS(1144), - [anon_sym_auto] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1144), - [anon_sym___attribute__] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1144), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(1118), + [anon_sym_DASH_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1116), + [anon_sym_LT_EQ] = ACTIONS(1118), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1118), + [anon_sym_LT_LT_EQ] = ACTIONS(1118), + [anon_sym_QMARK] = ACTIONS(1118), + [anon_sym_GT_EQ] = ACTIONS(1118), + [anon_sym_CARET_EQ] = ACTIONS(1118), + [anon_sym_COMMA] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1118), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_PIPE_EQ] = ACTIONS(1118), + [anon_sym_RPAREN] = ACTIONS(1118), + [anon_sym_RBRACK] = ACTIONS(1118), + [anon_sym_AMP_EQ] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_AMP_AMP] = ACTIONS(1118), + [anon_sym_EQ] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_COLON] = ACTIONS(1118), + [anon_sym_STAR_EQ] = ACTIONS(1118), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_PIPE_PIPE] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_GT] = ACTIONS(1116), + [anon_sym_PIPE] = ACTIONS(1116), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), }, [521] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(521), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(521), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [sym_preproc_call] = STATE(521), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(521), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(521), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), - [sym_field_declaration] = STATE(521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2153), - [anon_sym_union] = ACTIONS(1175), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(2156), - [aux_sym_preproc_if_token2] = ACTIONS(2156), - [sym_preproc_directive] = ACTIONS(2158), - [anon_sym_signed] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(2161), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1187), - [sym_identifier] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2153), - [aux_sym_preproc_elif_token1] = ACTIONS(2156), - [aux_sym_preproc_def_token1] = ACTIONS(2164), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1207), - [anon_sym_inline] = ACTIONS(1184), - [anon_sym___attribute__] = ACTIONS(1210), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(1120), + [anon_sym_DASH_EQ] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1120), + [anon_sym_LT_LT_EQ] = ACTIONS(1120), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_PIPE_EQ] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_AMP_EQ] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_EQ] = ACTIONS(2197), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_STAR_EQ] = ACTIONS(1120), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(1120), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), }, [522] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token2] = ACTIONS(1221), - [sym_preproc_directive] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1221), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [aux_sym_preproc_elif_token1] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(1110), + [anon_sym_DASH_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_LT_EQ] = ACTIONS(1110), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1110), + [anon_sym_LT_LT_EQ] = ACTIONS(1110), + [anon_sym_QMARK] = ACTIONS(1110), + [anon_sym_GT_EQ] = ACTIONS(1110), + [anon_sym_CARET_EQ] = ACTIONS(1110), + [anon_sym_COMMA] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1110), + [anon_sym_LT_LT] = ACTIONS(1108), + [anon_sym_PIPE_EQ] = ACTIONS(1110), + [anon_sym_RPAREN] = ACTIONS(1110), + [anon_sym_RBRACK] = ACTIONS(1110), + [anon_sym_AMP_EQ] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_AMP_AMP] = ACTIONS(1110), + [anon_sym_EQ] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_COLON] = ACTIONS(1110), + [anon_sym_STAR_EQ] = ACTIONS(1110), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(340), }, [523] = { - [sym_pointer_expression] = STATE(238), - [sym_logical_expression] = STATE(238), - [sym_math_expression] = STATE(238), - [sym_cast_expression] = STATE(238), - [sym_field_expression] = STATE(238), - [sym__expression] = STATE(238), - [sym_bitwise_expression] = STATE(238), - [sym_equality_expression] = STATE(238), - [sym_sizeof_expression] = STATE(238), - [sym_compound_literal_expression] = STATE(238), - [sym_parenthesized_expression] = STATE(238), - [sym_char_literal] = STATE(238), - [sym_concatenated_string] = STATE(238), - [sym_conditional_expression] = STATE(238), - [sym_assignment_expression] = STATE(238), - [sym_relational_expression] = STATE(238), - [sym_shift_expression] = STATE(238), - [sym_subscript_expression] = STATE(238), - [sym_call_expression] = STATE(238), - [sym_initializer_list] = STATE(237), - [sym_string_literal] = STATE(38), - [anon_sym_PERCENT] = ACTIONS(1233), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1231), - [anon_sym_DASH_EQ] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1231), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(1231), - [anon_sym_SLASH] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(177), - [anon_sym_PLUS_EQ] = ACTIONS(1231), - [anon_sym_LT_LT_EQ] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1231), - [anon_sym_GT_EQ] = ACTIONS(1231), - [anon_sym_CARET_EQ] = ACTIONS(1231), - [anon_sym_COMMA] = ACTIONS(1231), - [sym_number_literal] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_GT_GT_EQ] = ACTIONS(1231), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_PIPE_EQ] = ACTIONS(1231), - [anon_sym_RPAREN] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_AMP_EQ] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1231), - [anon_sym_EQ] = ACTIONS(1233), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1231), - [anon_sym_COLON] = ACTIONS(1231), - [sym_true] = ACTIONS(902), - [anon_sym_STAR_EQ] = ACTIONS(1231), - [anon_sym_EQ_EQ] = ACTIONS(1231), - [anon_sym_PIPE_PIPE] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(1235), - [sym_false] = ACTIONS(902), - [sym_identifier] = ACTIONS(902), - [anon_sym_SLASH_EQ] = ACTIONS(1231), - [anon_sym_BANG_EQ] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_GT] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(1231), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(1128), + [anon_sym_DASH_EQ] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(1126), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1128), + [anon_sym_LT_LT_EQ] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(1128), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1128), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_PIPE_EQ] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_RBRACK] = ACTIONS(1128), + [anon_sym_AMP_EQ] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_COLON] = ACTIONS(1128), + [anon_sym_STAR_EQ] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(1128), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), }, [524] = { - [sym_null] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym__Atomic] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1239), - [sym_true] = ACTIONS(1239), - [sym_primitive_type] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_switch] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [sym_identifier] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(1128), + [anon_sym_DASH_EQ] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(1126), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1128), + [anon_sym_LT_LT_EQ] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(1128), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1128), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_PIPE_EQ] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_RBRACK] = ACTIONS(1128), + [anon_sym_AMP_EQ] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_COLON] = ACTIONS(1128), + [anon_sym_STAR_EQ] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(1128), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), }, [525] = { - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_null] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1249), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1247), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1247), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(1120), + [anon_sym_DASH_EQ] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1120), + [anon_sym_LT_LT_EQ] = ACTIONS(1120), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1120), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_PIPE_EQ] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_AMP_EQ] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_AMP_AMP] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(2197), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_STAR_EQ] = ACTIONS(1120), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(1120), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), }, [526] = { - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_null] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1313), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1313), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [sym_true] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1313), - [sym_number_literal] = ACTIONS(1313), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(1144), + [anon_sym_DASH_EQ] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_LT_EQ] = ACTIONS(1144), + [anon_sym_CARET] = ACTIONS(1142), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1144), + [anon_sym_LT_LT_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1144), + [anon_sym_GT_EQ] = ACTIONS(1144), + [anon_sym_CARET_EQ] = ACTIONS(1144), + [anon_sym_COMMA] = ACTIONS(1144), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1144), + [anon_sym_LT_LT] = ACTIONS(1142), + [anon_sym_PIPE_EQ] = ACTIONS(1144), + [anon_sym_RPAREN] = ACTIONS(1144), + [anon_sym_RBRACK] = ACTIONS(1144), + [anon_sym_AMP_EQ] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1142), + [anon_sym_AMP_AMP] = ACTIONS(1144), + [anon_sym_EQ] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(1142), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_COLON] = ACTIONS(1144), + [anon_sym_STAR_EQ] = ACTIONS(1144), + [anon_sym_EQ_EQ] = ACTIONS(1144), + [anon_sym_PIPE_PIPE] = ACTIONS(1144), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(1144), + [anon_sym_BANG_EQ] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_GT] = ACTIONS(1142), + [anon_sym_PIPE] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), }, [527] = { - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_null] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1337), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [sym_true] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1337), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(1128), + [anon_sym_DASH_EQ] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1128), + [anon_sym_LT_LT_EQ] = ACTIONS(1128), + [anon_sym_QMARK] = ACTIONS(1128), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(1128), + [anon_sym_COMMA] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1128), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_PIPE_EQ] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_RBRACK] = ACTIONS(1128), + [anon_sym_AMP_EQ] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_EQ] = ACTIONS(1126), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_COLON] = ACTIONS(1128), + [anon_sym_STAR_EQ] = ACTIONS(1128), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(1128), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), }, [528] = { - [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1160), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym__Atomic] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1160), + [sym_number_literal] = ACTIONS(1160), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_L] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + }, + [529] = { + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [sym_null] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1172), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1172), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [anon_sym__Atomic] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1172), + [sym_number_literal] = ACTIONS(1172), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_L] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), + }, + [530] = { + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(530), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(530), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(530), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [sym_preproc_call] = STATE(530), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(530), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(530), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(530), + [sym_field_declaration] = STATE(530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(1205), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(2202), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2204), + [anon_sym_signed] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(2207), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2199), + [aux_sym_preproc_elif_token1] = ACTIONS(2202), + [aux_sym_preproc_def_token1] = ACTIONS(2210), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + }, + [531] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_else_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_signed] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [aux_sym_preproc_elif_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + }, + [532] = { + [sym_pointer_expression] = STATE(245), + [sym_logical_expression] = STATE(245), + [sym_math_expression] = STATE(245), + [sym_cast_expression] = STATE(245), + [sym_field_expression] = STATE(245), + [sym__expression] = STATE(245), + [sym_bitwise_expression] = STATE(245), + [sym_equality_expression] = STATE(245), + [sym_sizeof_expression] = STATE(245), + [sym_compound_literal_expression] = STATE(245), + [sym_parenthesized_expression] = STATE(245), + [sym_char_literal] = STATE(245), + [sym_concatenated_string] = STATE(245), + [sym_conditional_expression] = STATE(245), + [sym_assignment_expression] = STATE(245), + [sym_relational_expression] = STATE(245), + [sym_shift_expression] = STATE(245), + [sym_subscript_expression] = STATE(245), + [sym_call_expression] = STATE(245), + [sym_initializer_list] = STATE(244), + [sym_string_literal] = STATE(39), + [anon_sym_PERCENT] = ACTIONS(1263), + [sym_false] = ACTIONS(924), + [sym_identifier] = ACTIONS(924), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_DASH_GT] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_COMMA] = ACTIONS(1261), + [sym_number_literal] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_L] = ACTIONS(9), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(203), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(1265), + [sym_true] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(1261), + }, + [533] = { + [sym_false] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1273), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [anon_sym_L] = ACTIONS(1273), + [anon_sym___attribute__] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_short] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1273), + [sym_true] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [sym_null] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [anon_sym_auto] = ACTIONS(1273), + [anon_sym_inline] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + }, + [534] = { + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [sym_null] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [sym_identifier] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1281), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1281), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym__Atomic] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1281), + [sym_number_literal] = ACTIONS(1281), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_L] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + }, + [535] = { + [anon_sym_LBRACE] = ACTIONS(1347), [anon_sym_union] = ACTIONS(1345), [anon_sym_sizeof] = ACTIONS(1345), [anon_sym_unsigned] = ACTIONS(1345), [anon_sym_restrict] = ACTIONS(1345), [anon_sym_short] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1343), + [sym_true] = ACTIONS(1345), + [sym_false] = ACTIONS(1345), [sym_null] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1345), [anon_sym_do] = ACTIONS(1345), [anon_sym_goto] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1347), [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1347), [aux_sym_preproc_if_token1] = ACTIONS(1345), [anon_sym_const] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1347), [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), [anon_sym__Atomic] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(1345), - [sym_true] = ACTIONS(1345), + [sym_comment] = ACTIONS(3), [anon_sym_for] = ACTIONS(1345), [anon_sym_break] = ACTIONS(1345), [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), [aux_sym_preproc_include_token1] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1347), [anon_sym_static] = ACTIONS(1345), [anon_sym_volatile] = ACTIONS(1345), [anon_sym_register] = ACTIONS(1345), [anon_sym_extern] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1347), [anon_sym_if] = ACTIONS(1345), [anon_sym_struct] = ACTIONS(1345), [anon_sym_switch] = ACTIONS(1345), @@ -24786,156 +25093,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1345), [anon_sym_long] = ACTIONS(1345), [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), [anon_sym_return] = ACTIONS(1345), [anon_sym_while] = ACTIONS(1345), [anon_sym_continue] = ACTIONS(1345), [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1347), [aux_sym_preproc_def_token1] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), [anon_sym_auto] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_L] = ACTIONS(1345), [anon_sym_inline] = ACTIONS(1345), [anon_sym___attribute__] = ACTIONS(1345), [anon_sym_DASH] = ACTIONS(1345), }, - [529] = { - [sym_while_statement] = STATE(543), - [sym_continue_statement] = STATE(543), - [sym_goto_statement] = STATE(543), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(758), - [sym_math_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(543), - [sym_expression_statement] = STATE(543), - [sym_if_statement] = STATE(543), - [sym_do_statement] = STATE(543), - [sym_for_statement] = STATE(543), - [sym__expression] = STATE(758), - [sym_comma_expression] = STATE(757), - [sym_bitwise_expression] = STATE(758), - [sym_equality_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_switch_statement] = STATE(543), - [sym_return_statement] = STATE(543), - [sym_break_statement] = STATE(543), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_relational_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(543), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [530] = { - [sym_null] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_else] = ACTIONS(1353), - [sym_true] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), + [536] = { + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_sizeof] = ACTIONS(1373), + [anon_sym_unsigned] = ACTIONS(1373), + [anon_sym_restrict] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [sym_true] = ACTIONS(1373), + [sym_false] = ACTIONS(1373), + [sym_null] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1371), + [sym_preproc_directive] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [aux_sym_preproc_if_token1] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_LPAREN2] = ACTIONS(1371), + [anon_sym_typedef] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym__Atomic] = ACTIONS(1373), + [sym_primitive_type] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_volatile] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1373), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_signed] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1371), + [sym_number_literal] = ACTIONS(1371), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_auto] = ACTIONS(1373), + [anon_sym_L] = ACTIONS(1373), + [anon_sym_inline] = ACTIONS(1373), + [anon_sym___attribute__] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), }, - [531] = { + [537] = { [anon_sym_LBRACE] = ACTIONS(1377), [anon_sym_union] = ACTIONS(1379), [anon_sym_sizeof] = ACTIONS(1379), [anon_sym_unsigned] = ACTIONS(1379), [anon_sym_restrict] = ACTIONS(1379), [anon_sym_short] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1377), + [sym_true] = ACTIONS(1379), + [sym_false] = ACTIONS(1379), [sym_null] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1379), [anon_sym_do] = ACTIONS(1379), [anon_sym_goto] = ACTIONS(1379), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1379), [anon_sym_TILDE] = ACTIONS(1377), [sym_preproc_directive] = ACTIONS(1379), [anon_sym_AMP] = ACTIONS(1377), @@ -24945,9 +25188,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(1379), [anon_sym_RBRACE] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), [anon_sym__Atomic] = ACTIONS(1379), [sym_primitive_type] = ACTIONS(1379), - [sym_true] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), [anon_sym_for] = ACTIONS(1379), [anon_sym_break] = ACTIONS(1379), [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), @@ -24973,7313 +25217,7687 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1377), [sym_number_literal] = ACTIONS(1377), [aux_sym_preproc_def_token1] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), - [anon_sym_auto] = ACTIONS(1379), [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_L] = ACTIONS(1379), [anon_sym_inline] = ACTIONS(1379), [anon_sym___attribute__] = ACTIONS(1379), [anon_sym_DASH] = ACTIONS(1379), }, - [532] = { - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_sizeof] = ACTIONS(1391), - [anon_sym_unsigned] = ACTIONS(1391), - [anon_sym_restrict] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_null] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_goto] = ACTIONS(1391), + [538] = { + [sym_while_statement] = STATE(553), + [sym_continue_statement] = STATE(553), + [sym_goto_statement] = STATE(553), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(773), + [sym_math_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(553), + [sym_expression_statement] = STATE(553), + [sym_if_statement] = STATE(553), + [sym_do_statement] = STATE(553), + [sym_for_statement] = STATE(553), + [sym__expression] = STATE(773), + [sym_comma_expression] = STATE(772), + [sym_bitwise_expression] = STATE(773), + [sym_equality_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_switch_statement] = STATE(553), + [sym_return_statement] = STATE(553), + [sym_break_statement] = STATE(553), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_relational_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(553), + [anon_sym_LBRACE] = ACTIONS(101), + [sym_false] = ACTIONS(85), + [sym_identifier] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [539] = { + [sym_false] = ACTIONS(1387), + [anon_sym_restrict] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1387), + [anon_sym_goto] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_typedef] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1387), [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), + [sym_number_literal] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), + [anon_sym_L] = ACTIONS(1387), + [anon_sym___attribute__] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), [anon_sym_TILDE] = ACTIONS(1389), - [sym_preproc_directive] = ACTIONS(1391), + [sym_preproc_directive] = ACTIONS(1387), [anon_sym_AMP] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), + [aux_sym_preproc_if_token1] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_typedef] = ACTIONS(1391), [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym__Atomic] = ACTIONS(1391), - [sym_primitive_type] = ACTIONS(1391), - [sym_true] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1391), - [aux_sym_preproc_include_token1] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [aux_sym_preproc_include_token1] = ACTIONS(1387), [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_volatile] = ACTIONS(1391), - [anon_sym_register] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [sym_true] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [sym_null] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), [anon_sym_SEMI] = ACTIONS(1389), - [sym_number_literal] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1391), - [sym_false] = ACTIONS(1391), - [anon_sym_auto] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_inline] = ACTIONS(1391), - [anon_sym___attribute__] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), + [aux_sym_preproc_def_token1] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), }, - [533] = { - [sym_pointer_expression] = STATE(546), - [sym_logical_expression] = STATE(546), - [sym_math_expression] = STATE(546), - [sym_cast_expression] = STATE(546), - [sym_field_expression] = STATE(546), - [sym__expression] = STATE(546), - [sym_bitwise_expression] = STATE(546), - [sym_equality_expression] = STATE(546), - [sym_sizeof_expression] = STATE(546), - [sym_compound_literal_expression] = STATE(546), - [sym_parenthesized_expression] = STATE(546), - [sym_char_literal] = STATE(546), - [sym_concatenated_string] = STATE(546), - [sym_conditional_expression] = STATE(546), - [sym_assignment_expression] = STATE(546), - [sym_relational_expression] = STATE(546), - [sym_shift_expression] = STATE(546), - [sym_subscript_expression] = STATE(546), - [sym_call_expression] = STATE(546), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), + [540] = { + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1409), + [anon_sym_unsigned] = ACTIONS(1409), + [anon_sym_restrict] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [sym_null] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_goto] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_LPAREN2] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1409), + [sym_primitive_type] = ACTIONS(1409), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), + [aux_sym_preproc_include_token1] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_volatile] = ACTIONS(1409), + [anon_sym_register] = ACTIONS(1409), + [anon_sym_extern] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_struct] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1409), + [anon_sym_L] = ACTIONS(1409), + [anon_sym_inline] = ACTIONS(1409), + [anon_sym___attribute__] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + }, + [541] = { + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_sizeof] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [sym_true] = ACTIONS(1421), + [sym_false] = ACTIONS(1421), + [sym_null] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_goto] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1419), + [sym_preproc_directive] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [aux_sym_preproc_if_token1] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_typedef] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1421), + [sym_primitive_type] = ACTIONS(1421), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), + [aux_sym_preproc_include_token1] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_number_literal] = ACTIONS(1419), + [aux_sym_preproc_def_token1] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_auto] = ACTIONS(1421), + [anon_sym_L] = ACTIONS(1421), + [anon_sym_inline] = ACTIONS(1421), + [anon_sym___attribute__] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + }, + [542] = { + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_sizeof] = ACTIONS(1429), + [anon_sym_unsigned] = ACTIONS(1429), + [anon_sym_restrict] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [sym_true] = ACTIONS(1429), + [sym_false] = ACTIONS(1429), + [sym_null] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_goto] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1431), + [sym_preproc_directive] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [aux_sym_preproc_if_token1] = ACTIONS(1429), + [ts_builtin_sym_end] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_typedef] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym__Atomic] = ACTIONS(1429), + [sym_primitive_type] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), + [aux_sym_preproc_include_token1] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_volatile] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_signed] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [sym_number_literal] = ACTIONS(1431), + [aux_sym_preproc_def_token1] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_auto] = ACTIONS(1429), + [anon_sym_L] = ACTIONS(1429), + [anon_sym_inline] = ACTIONS(1429), + [anon_sym___attribute__] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + }, + [543] = { + [sym_pointer_expression] = STATE(556), + [sym_logical_expression] = STATE(556), + [sym_math_expression] = STATE(556), + [sym_cast_expression] = STATE(556), + [sym_field_expression] = STATE(556), + [sym__expression] = STATE(556), + [sym_bitwise_expression] = STATE(556), + [sym_equality_expression] = STATE(556), + [sym_sizeof_expression] = STATE(556), + [sym_compound_literal_expression] = STATE(556), + [sym_parenthesized_expression] = STATE(556), + [sym_char_literal] = STATE(556), + [sym_concatenated_string] = STATE(556), + [sym_conditional_expression] = STATE(556), + [sym_assignment_expression] = STATE(556), + [sym_relational_expression] = STATE(556), + [sym_shift_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_call_expression] = STATE(556), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(191), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2169), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), - }, - [534] = { - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_unsigned] = ACTIONS(1435), - [anon_sym_restrict] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1437), - [sym_null] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_goto] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1437), - [anon_sym_typedef] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym__Atomic] = ACTIONS(1435), - [sym_primitive_type] = ACTIONS(1435), - [sym_true] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), - [aux_sym_preproc_include_token1] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_volatile] = ACTIONS(1435), - [anon_sym_register] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_struct] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1435), - [sym_false] = ACTIONS(1435), - [anon_sym_auto] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_inline] = ACTIONS(1435), - [anon_sym___attribute__] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - }, - [535] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [aux_sym_preproc_elif_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - }, - [536] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_signed] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_elif_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - }, - [537] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsigned] = ACTIONS(1478), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym_short] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1478), - [aux_sym_preproc_if_token2] = ACTIONS(1478), - [sym_preproc_directive] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1478), - [aux_sym_preproc_if_token1] = ACTIONS(1478), - [anon_sym_long] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), - [aux_sym_preproc_elif_token1] = ACTIONS(1478), - [aux_sym_preproc_def_token1] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym_auto] = ACTIONS(1478), - [sym_primitive_type] = ACTIONS(1478), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym___attribute__] = ACTIONS(1478), - }, - [538] = { - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_null] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1498), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1498), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym__Atomic] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [sym_true] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [sym_number_literal] = ACTIONS(1498), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - }, - [539] = { - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_sizeof] = ACTIONS(1546), - [anon_sym_unsigned] = ACTIONS(1546), - [anon_sym_restrict] = ACTIONS(1546), - [anon_sym_short] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1548), - [sym_null] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1546), - [anon_sym_do] = ACTIONS(1546), - [anon_sym_goto] = ACTIONS(1546), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1548), - [sym_preproc_directive] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1548), - [aux_sym_preproc_if_token1] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_LPAREN2] = ACTIONS(1548), - [anon_sym_typedef] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_DASH_DASH] = ACTIONS(1548), - [anon_sym__Atomic] = ACTIONS(1546), - [sym_primitive_type] = ACTIONS(1546), - [sym_true] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1546), - [aux_sym_preproc_include_token1] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_volatile] = ACTIONS(1546), - [anon_sym_register] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_struct] = ACTIONS(1546), - [anon_sym_switch] = ACTIONS(1546), - [anon_sym_signed] = ACTIONS(1546), - [anon_sym_enum] = ACTIONS(1546), - [anon_sym_long] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1548), - [sym_number_literal] = ACTIONS(1548), - [aux_sym_preproc_def_token1] = ACTIONS(1546), - [sym_false] = ACTIONS(1546), - [anon_sym_auto] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_inline] = ACTIONS(1546), - [anon_sym___attribute__] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - }, - [540] = { - [sym_while_statement] = STATE(551), - [sym_continue_statement] = STATE(551), - [sym_goto_statement] = STATE(551), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(758), - [sym_math_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(551), - [sym_expression_statement] = STATE(551), - [sym_if_statement] = STATE(551), - [sym_do_statement] = STATE(551), - [sym_for_statement] = STATE(551), - [sym__expression] = STATE(758), - [sym_comma_expression] = STATE(757), - [sym_bitwise_expression] = STATE(758), - [sym_equality_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_switch_statement] = STATE(551), - [sym_return_statement] = STATE(551), - [sym_break_statement] = STATE(551), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_relational_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(551), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [541] = { - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_null] = ACTIONS(1581), - [sym_identifier] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_goto] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1579), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1579), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [sym_true] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1579), - [sym_number_literal] = ACTIONS(1579), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [sym_false] = ACTIONS(1581), - [anon_sym_auto] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - }, - [542] = { - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1583), - [sym_null] = ACTIONS(1585), - [sym_identifier] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1583), - [sym_preproc_directive] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym__Atomic] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [sym_true] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1583), - [sym_number_literal] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [anon_sym_auto] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - }, - [543] = { - [sym_null] = ACTIONS(1587), - [anon_sym_restrict] = ACTIONS(1587), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym__Atomic] = ACTIONS(1587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1587), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_volatile] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_signed] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym___attribute__] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_unsigned] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1589), - [sym_preproc_directive] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1587), - [sym_true] = ACTIONS(1587), - [sym_primitive_type] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [aux_sym_preproc_include_token1] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [anon_sym_enum] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1587), - [anon_sym_auto] = ACTIONS(1587), - [anon_sym_inline] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2215), + [sym_null] = ACTIONS(2215), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [544] = { - [sym_null] = ACTIONS(1599), - [anon_sym_restrict] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1599), - [sym_number_literal] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1599), - [anon_sym_extern] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1599), - [anon_sym_signed] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_unsigned] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [sym_preproc_directive] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1601), - [anon_sym_RBRACE] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1599), - [sym_true] = ACTIONS(1599), - [sym_primitive_type] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [aux_sym_preproc_include_token1] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_register] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [anon_sym_enum] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [aux_sym_preproc_def_token1] = ACTIONS(1599), - [anon_sym_auto] = ACTIONS(1599), - [anon_sym_inline] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_sizeof] = ACTIONS(1473), + [anon_sym_unsigned] = ACTIONS(1473), + [anon_sym_restrict] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [sym_true] = ACTIONS(1473), + [sym_false] = ACTIONS(1473), + [sym_null] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_goto] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1475), + [sym_preproc_directive] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1475), + [aux_sym_preproc_if_token1] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_typedef] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym__Atomic] = ACTIONS(1473), + [sym_primitive_type] = ACTIONS(1473), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1473), + [aux_sym_preproc_include_token1] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_volatile] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_signed] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [sym_number_literal] = ACTIONS(1475), + [aux_sym_preproc_def_token1] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_auto] = ACTIONS(1473), + [anon_sym_L] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym___attribute__] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), }, [545] = { - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_sizeof] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym_null] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_goto] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1701), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1701), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym__Atomic] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [sym_true] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_switch] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1701), - [sym_number_literal] = ACTIONS(1701), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [sym_false] = ACTIONS(1703), - [anon_sym_auto] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_else_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [aux_sym_preproc_elif_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), }, [546] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(1714), - [anon_sym_DASH_EQ] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2131), - [anon_sym_CARET] = ACTIONS(2133), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(1714), - [anon_sym_LT_LT_EQ] = ACTIONS(1714), - [anon_sym_QMARK] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2131), - [anon_sym_CARET_EQ] = ACTIONS(1714), - [anon_sym_COMMA] = ACTIONS(1714), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(1714), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_PIPE_EQ] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1714), - [anon_sym_RBRACK] = ACTIONS(1714), - [anon_sym_AMP_EQ] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(2139), - [anon_sym_EQ] = ACTIONS(2175), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_COLON] = ACTIONS(1714), - [anon_sym_STAR_EQ] = ACTIONS(1714), - [anon_sym_EQ_EQ] = ACTIONS(2143), - [anon_sym_PIPE_PIPE] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(1714), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1502), + [aux_sym_preproc_else_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token2] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [aux_sym_preproc_elif_token1] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), }, [547] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_unsigned] = ACTIONS(1729), - [anon_sym_restrict] = ACTIONS(1729), - [anon_sym_short] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_volatile] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1729), - [aux_sym_preproc_if_token2] = ACTIONS(1729), - [sym_preproc_directive] = ACTIONS(1729), - [anon_sym_signed] = ACTIONS(1729), - [aux_sym_preproc_if_token1] = ACTIONS(1729), - [anon_sym_long] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [sym_identifier] = ACTIONS(1729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1729), - [aux_sym_preproc_elif_token1] = ACTIONS(1729), - [aux_sym_preproc_def_token1] = ACTIONS(1729), - [anon_sym__Atomic] = ACTIONS(1729), - [anon_sym_auto] = ACTIONS(1729), - [sym_primitive_type] = ACTIONS(1729), - [anon_sym_inline] = ACTIONS(1729), - [anon_sym___attribute__] = ACTIONS(1729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_else_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [aux_sym_preproc_elif_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), }, [548] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1735), - [aux_sym_preproc_if_token2] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1735), - [aux_sym_preproc_elif_token1] = ACTIONS(1735), - [aux_sym_preproc_def_token1] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym_auto] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1538), + [anon_sym_unsigned] = ACTIONS(1538), + [anon_sym_restrict] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1538), + [sym_true] = ACTIONS(1538), + [sym_false] = ACTIONS(1538), + [sym_null] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_goto] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_volatile] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1538), + [anon_sym_L] = ACTIONS(1538), + [anon_sym_inline] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), }, [549] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_restrict] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_volatile] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1757), - [aux_sym_preproc_if_token2] = ACTIONS(1757), - [sym_preproc_directive] = ACTIONS(1757), - [anon_sym_signed] = ACTIONS(1757), - [aux_sym_preproc_if_token1] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1757), - [aux_sym_preproc_elif_token1] = ACTIONS(1757), - [aux_sym_preproc_def_token1] = ACTIONS(1757), - [anon_sym__Atomic] = ACTIONS(1757), - [anon_sym_auto] = ACTIONS(1757), - [sym_primitive_type] = ACTIONS(1757), - [anon_sym_inline] = ACTIONS(1757), - [anon_sym___attribute__] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_union] = ACTIONS(1584), + [anon_sym_sizeof] = ACTIONS(1584), + [anon_sym_unsigned] = ACTIONS(1584), + [anon_sym_restrict] = ACTIONS(1584), + [anon_sym_short] = ACTIONS(1584), + [sym_true] = ACTIONS(1584), + [sym_false] = ACTIONS(1584), + [sym_null] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [anon_sym_goto] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1586), + [sym_preproc_directive] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [aux_sym_preproc_if_token1] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1586), + [anon_sym_typedef] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [anon_sym__Atomic] = ACTIONS(1584), + [sym_primitive_type] = ACTIONS(1584), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1584), + [aux_sym_preproc_include_token1] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(1584), + [anon_sym_volatile] = ACTIONS(1584), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_struct] = ACTIONS(1584), + [anon_sym_switch] = ACTIONS(1584), + [anon_sym_signed] = ACTIONS(1584), + [anon_sym_enum] = ACTIONS(1584), + [anon_sym_long] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(1586), + [aux_sym_preproc_def_token1] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_auto] = ACTIONS(1584), + [anon_sym_L] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym___attribute__] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), }, [550] = { - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1814), - [anon_sym_sizeof] = ACTIONS(1814), - [anon_sym_unsigned] = ACTIONS(1814), - [anon_sym_restrict] = ACTIONS(1814), - [anon_sym_short] = ACTIONS(1814), - [anon_sym_DQUOTE] = ACTIONS(1816), - [sym_null] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1814), - [anon_sym_do] = ACTIONS(1814), - [anon_sym_goto] = ACTIONS(1814), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(1816), - [sym_preproc_directive] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1816), - [aux_sym_preproc_if_token1] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_LPAREN2] = ACTIONS(1816), - [anon_sym_typedef] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_DASH_DASH] = ACTIONS(1816), - [anon_sym__Atomic] = ACTIONS(1814), - [sym_primitive_type] = ACTIONS(1814), - [sym_true] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1814), - [aux_sym_preproc_include_token1] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1814), - [anon_sym_volatile] = ACTIONS(1814), - [anon_sym_register] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_struct] = ACTIONS(1814), - [anon_sym_switch] = ACTIONS(1814), - [anon_sym_signed] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1814), - [anon_sym_long] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_PLUS_PLUS] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1814), - [anon_sym_SEMI] = ACTIONS(1816), - [sym_number_literal] = ACTIONS(1816), - [aux_sym_preproc_def_token1] = ACTIONS(1814), - [sym_false] = ACTIONS(1814), - [anon_sym_auto] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1814), - [anon_sym___attribute__] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), + [sym_while_statement] = STATE(561), + [sym_continue_statement] = STATE(561), + [sym_goto_statement] = STATE(561), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(773), + [sym_math_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(561), + [sym_expression_statement] = STATE(561), + [sym_if_statement] = STATE(561), + [sym_do_statement] = STATE(561), + [sym_for_statement] = STATE(561), + [sym__expression] = STATE(773), + [sym_comma_expression] = STATE(772), + [sym_bitwise_expression] = STATE(773), + [sym_equality_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_switch_statement] = STATE(561), + [sym_return_statement] = STATE(561), + [sym_break_statement] = STATE(561), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_relational_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(561), + [anon_sym_LBRACE] = ACTIONS(101), + [sym_false] = ACTIONS(85), + [sym_identifier] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [551] = { - [sym_null] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym__Atomic] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym_sizeof] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1824), - [sym_preproc_directive] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [sym_true] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_sizeof] = ACTIONS(1619), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_restrict] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [sym_true] = ACTIONS(1619), + [sym_false] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_goto] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1617), + [sym_preproc_directive] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [aux_sym_preproc_if_token1] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_LPAREN2] = ACTIONS(1617), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [anon_sym__Atomic] = ACTIONS(1619), + [sym_primitive_type] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1619), + [aux_sym_preproc_include_token1] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1617), + [sym_number_literal] = ACTIONS(1617), + [aux_sym_preproc_def_token1] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_auto] = ACTIONS(1619), + [anon_sym_L] = ACTIONS(1619), + [anon_sym_inline] = ACTIONS(1619), + [anon_sym___attribute__] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), }, [552] = { - [sym_while_statement] = STATE(556), - [sym_continue_statement] = STATE(556), - [sym_goto_statement] = STATE(556), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(758), - [sym_math_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(556), - [sym_expression_statement] = STATE(556), - [sym_if_statement] = STATE(556), - [sym_do_statement] = STATE(556), - [sym_for_statement] = STATE(556), - [sym__expression] = STATE(758), - [sym_comma_expression] = STATE(757), - [sym_bitwise_expression] = STATE(758), - [sym_equality_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_switch_statement] = STATE(556), - [sym_return_statement] = STATE(556), - [sym_break_statement] = STATE(556), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_relational_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(556), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_restrict] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), + [sym_true] = ACTIONS(1623), + [sym_false] = ACTIONS(1623), + [sym_null] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_goto] = ACTIONS(1623), + [sym_identifier] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1621), + [sym_preproc_directive] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [aux_sym_preproc_if_token1] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym__Atomic] = ACTIONS(1623), + [sym_primitive_type] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1623), + [aux_sym_preproc_include_token1] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1623), + [anon_sym_volatile] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_struct] = ACTIONS(1623), + [anon_sym_switch] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1621), + [sym_number_literal] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_auto] = ACTIONS(1623), + [anon_sym_L] = ACTIONS(1623), + [anon_sym_inline] = ACTIONS(1623), + [anon_sym___attribute__] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1623), }, [553] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1855), + [sym_false] = ACTIONS(1625), + [anon_sym_restrict] = ACTIONS(1625), + [sym_identifier] = ACTIONS(1625), + [anon_sym_goto] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_typedef] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym__Atomic] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), + [sym_number_literal] = ACTIONS(1627), + [anon_sym_volatile] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_signed] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), + [anon_sym_L] = ACTIONS(1625), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym_sizeof] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_unsigned] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_TILDE] = ACTIONS(1627), + [sym_preproc_directive] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1627), + [aux_sym_preproc_if_token1] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_else] = ACTIONS(1625), + [sym_primitive_type] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [aux_sym_preproc_include_token1] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [sym_true] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [aux_sym_preproc_def_token1] = ACTIONS(1625), + [anon_sym_auto] = ACTIONS(1625), + [anon_sym_inline] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + }, + [554] = { + [sym_false] = ACTIONS(1637), + [anon_sym_restrict] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1637), + [anon_sym_goto] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1637), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), + [sym_number_literal] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_signed] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), + [anon_sym_L] = ACTIONS(1637), + [anon_sym___attribute__] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1639), + [sym_preproc_directive] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1639), + [aux_sym_preproc_if_token1] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1637), + [sym_primitive_type] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [sym_true] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [sym_null] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_auto] = ACTIONS(1637), + [anon_sym_inline] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + }, + [555] = { + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_sizeof] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [sym_null] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_goto] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1744), + [anon_sym_TILDE] = ACTIONS(1742), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1742), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1742), + [anon_sym_typedef] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [anon_sym__Atomic] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [aux_sym_preproc_include_token1] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1742), + [sym_number_literal] = ACTIONS(1742), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_L] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + }, + [556] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(1755), + [anon_sym_DASH_EQ] = ACTIONS(1755), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(1755), + [anon_sym_LT_LT_EQ] = ACTIONS(1755), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(1755), + [anon_sym_COMMA] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(1755), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_PIPE_EQ] = ACTIONS(1755), + [anon_sym_RPAREN] = ACTIONS(1755), + [anon_sym_RBRACK] = ACTIONS(1755), + [anon_sym_AMP_EQ] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_EQ] = ACTIONS(2221), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_COLON] = ACTIONS(1755), + [anon_sym_STAR_EQ] = ACTIONS(1755), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(1755), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(1755), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [557] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1770), + [anon_sym_union] = ACTIONS(1770), + [anon_sym_unsigned] = ACTIONS(1770), + [anon_sym_restrict] = ACTIONS(1770), + [anon_sym_short] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1770), + [anon_sym_volatile] = ACTIONS(1770), + [anon_sym_register] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1770), + [aux_sym_preproc_else_token1] = ACTIONS(1770), + [aux_sym_preproc_if_token2] = ACTIONS(1770), + [sym_preproc_directive] = ACTIONS(1770), + [anon_sym_signed] = ACTIONS(1770), + [aux_sym_preproc_if_token1] = ACTIONS(1770), + [anon_sym_long] = ACTIONS(1770), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [anon_sym_struct] = ACTIONS(1770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1770), + [aux_sym_preproc_elif_token1] = ACTIONS(1770), + [aux_sym_preproc_def_token1] = ACTIONS(1770), + [anon_sym__Atomic] = ACTIONS(1770), + [anon_sym_auto] = ACTIONS(1770), + [sym_primitive_type] = ACTIONS(1770), + [anon_sym_inline] = ACTIONS(1770), + [anon_sym___attribute__] = ACTIONS(1770), + [sym_comment] = ACTIONS(3), + }, + [558] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_unsigned] = ACTIONS(1776), + [anon_sym_restrict] = ACTIONS(1776), + [anon_sym_short] = ACTIONS(1776), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_volatile] = ACTIONS(1776), + [anon_sym_register] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [sym_identifier] = ACTIONS(1776), + [aux_sym_preproc_else_token1] = ACTIONS(1776), + [aux_sym_preproc_if_token2] = ACTIONS(1776), + [sym_preproc_directive] = ACTIONS(1776), + [anon_sym_signed] = ACTIONS(1776), + [aux_sym_preproc_if_token1] = ACTIONS(1776), + [anon_sym_long] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1776), + [aux_sym_preproc_elif_token1] = ACTIONS(1776), + [aux_sym_preproc_def_token1] = ACTIONS(1776), + [anon_sym__Atomic] = ACTIONS(1776), + [anon_sym_auto] = ACTIONS(1776), + [sym_primitive_type] = ACTIONS(1776), + [anon_sym_inline] = ACTIONS(1776), + [anon_sym___attribute__] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + }, + [559] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_unsigned] = ACTIONS(1798), + [anon_sym_restrict] = ACTIONS(1798), + [anon_sym_short] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_volatile] = ACTIONS(1798), + [anon_sym_register] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1798), + [aux_sym_preproc_else_token1] = ACTIONS(1798), + [aux_sym_preproc_if_token2] = ACTIONS(1798), + [sym_preproc_directive] = ACTIONS(1798), + [anon_sym_signed] = ACTIONS(1798), + [aux_sym_preproc_if_token1] = ACTIONS(1798), + [anon_sym_long] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_struct] = ACTIONS(1798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), + [aux_sym_preproc_elif_token1] = ACTIONS(1798), + [aux_sym_preproc_def_token1] = ACTIONS(1798), + [anon_sym__Atomic] = ACTIONS(1798), + [anon_sym_auto] = ACTIONS(1798), + [sym_primitive_type] = ACTIONS(1798), + [anon_sym_inline] = ACTIONS(1798), + [anon_sym___attribute__] = ACTIONS(1798), + [sym_comment] = ACTIONS(3), + }, + [560] = { + [anon_sym_LBRACE] = ACTIONS(1857), [anon_sym_union] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1855), [anon_sym_unsigned] = ACTIONS(1855), [anon_sym_restrict] = ACTIONS(1855), [anon_sym_short] = ACTIONS(1855), + [sym_true] = ACTIONS(1855), + [sym_false] = ACTIONS(1855), + [sym_null] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_goto] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1857), + [sym_preproc_directive] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1857), + [aux_sym_preproc_if_token1] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_typedef] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym__Atomic] = ACTIONS(1855), + [sym_primitive_type] = ACTIONS(1855), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1855), + [aux_sym_preproc_include_token1] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1857), [anon_sym_static] = ACTIONS(1855), [anon_sym_volatile] = ACTIONS(1855), [anon_sym_register] = ACTIONS(1855), [anon_sym_extern] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1855), - [aux_sym_preproc_if_token2] = ACTIONS(1855), - [sym_preproc_directive] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(1855), [anon_sym_signed] = ACTIONS(1855), - [aux_sym_preproc_if_token1] = ACTIONS(1855), - [anon_sym_long] = ACTIONS(1855), [anon_sym_enum] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1855), + [anon_sym_long] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), [aux_sym_preproc_ifdef_token2] = ACTIONS(1855), - [aux_sym_preproc_elif_token1] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1857), + [sym_number_literal] = ACTIONS(1857), [aux_sym_preproc_def_token1] = ACTIONS(1855), - [anon_sym__Atomic] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1857), [anon_sym_auto] = ACTIONS(1855), - [sym_primitive_type] = ACTIONS(1855), + [anon_sym_L] = ACTIONS(1855), [anon_sym_inline] = ACTIONS(1855), [anon_sym___attribute__] = ACTIONS(1855), - }, - [554] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1859), - [anon_sym_union] = ACTIONS(1859), - [anon_sym_unsigned] = ACTIONS(1859), - [anon_sym_restrict] = ACTIONS(1859), - [anon_sym_short] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1859), - [anon_sym_volatile] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1859), - [aux_sym_preproc_if_token2] = ACTIONS(1859), - [sym_preproc_directive] = ACTIONS(1859), - [anon_sym_signed] = ACTIONS(1859), - [aux_sym_preproc_if_token1] = ACTIONS(1859), - [anon_sym_long] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [anon_sym_struct] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1859), - [aux_sym_preproc_elif_token1] = ACTIONS(1859), - [aux_sym_preproc_def_token1] = ACTIONS(1859), - [anon_sym__Atomic] = ACTIONS(1859), - [anon_sym_auto] = ACTIONS(1859), - [sym_primitive_type] = ACTIONS(1859), - [anon_sym_inline] = ACTIONS(1859), - [anon_sym___attribute__] = ACTIONS(1859), - }, - [555] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1867), - [aux_sym_preproc_if_token2] = ACTIONS(1867), - [sym_preproc_directive] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [aux_sym_preproc_if_token1] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [sym_identifier] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1867), - [aux_sym_preproc_elif_token1] = ACTIONS(1867), - [aux_sym_preproc_def_token1] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym_auto] = ACTIONS(1867), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym___attribute__] = ACTIONS(1867), - }, - [556] = { - [sym_null] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_typedef] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym__Atomic] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym_sizeof] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_TILDE] = ACTIONS(1892), - [sym_preproc_directive] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1892), - [aux_sym_preproc_if_token1] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1890), - [sym_true] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [aux_sym_preproc_include_token1] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1890), - [sym_false] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1892), - [aux_sym_preproc_def_token1] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - }, - [557] = { - [sym_while_statement] = STATE(558), - [sym_continue_statement] = STATE(558), - [sym_goto_statement] = STATE(558), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(758), - [sym_math_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(558), - [sym_expression_statement] = STATE(558), - [sym_if_statement] = STATE(558), - [sym_do_statement] = STATE(558), - [sym_for_statement] = STATE(558), - [sym__expression] = STATE(758), - [sym_comma_expression] = STATE(757), - [sym_bitwise_expression] = STATE(758), - [sym_equality_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_switch_statement] = STATE(558), - [sym_return_statement] = STATE(558), - [sym_break_statement] = STATE(558), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_relational_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(558), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [558] = { - [sym_null] = ACTIONS(2008), - [anon_sym_restrict] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2008), - [anon_sym_DASH_DASH] = ACTIONS(2010), - [anon_sym__Atomic] = ACTIONS(2008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), - [sym_number_literal] = ACTIONS(2010), - [anon_sym_volatile] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2010), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2008), - [anon_sym_long] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2010), - [anon_sym_DQUOTE] = ACTIONS(2010), - [anon_sym___attribute__] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsigned] = ACTIONS(2008), - [anon_sym_short] = ACTIONS(2008), - [anon_sym_do] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2010), - [sym_preproc_directive] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2010), - [aux_sym_preproc_if_token1] = ACTIONS(2008), - [anon_sym_LPAREN2] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_else] = ACTIONS(2008), - [sym_true] = ACTIONS(2008), - [sym_primitive_type] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [aux_sym_preproc_include_token1] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_register] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_switch] = ACTIONS(2008), - [sym_false] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2010), - [aux_sym_preproc_def_token1] = ACTIONS(2008), - [anon_sym_auto] = ACTIONS(2008), - [anon_sym_inline] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2008), - }, - [559] = { - [sym_while_statement] = STATE(560), - [sym_continue_statement] = STATE(560), - [sym_goto_statement] = STATE(560), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(758), - [sym_math_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(560), - [sym_expression_statement] = STATE(560), - [sym_if_statement] = STATE(560), - [sym_do_statement] = STATE(560), - [sym_for_statement] = STATE(560), - [sym__expression] = STATE(758), - [sym_comma_expression] = STATE(757), - [sym_bitwise_expression] = STATE(758), - [sym_equality_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_switch_statement] = STATE(560), - [sym_return_statement] = STATE(560), - [sym_break_statement] = STATE(560), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_relational_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(560), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [560] = { - [sym_null] = ACTIONS(2014), - [anon_sym_restrict] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2014), - [anon_sym_const] = ACTIONS(2014), - [anon_sym_typedef] = ACTIONS(2014), - [anon_sym_DASH_DASH] = ACTIONS(2016), - [anon_sym__Atomic] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2014), - [sym_number_literal] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2014), - [anon_sym_PLUS_PLUS] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2014), - [anon_sym_signed] = ACTIONS(2014), - [anon_sym_long] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2014), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2016), - [anon_sym___attribute__] = ACTIONS(2014), - [anon_sym_sizeof] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2014), - [anon_sym_unsigned] = ACTIONS(2014), - [anon_sym_short] = ACTIONS(2014), - [anon_sym_do] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2016), - [sym_preproc_directive] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_else] = ACTIONS(2014), - [sym_true] = ACTIONS(2014), - [sym_primitive_type] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2014), - [anon_sym_register] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_switch] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), - [anon_sym_enum] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2014), - [anon_sym_continue] = ACTIONS(2014), - [anon_sym_SEMI] = ACTIONS(2016), - [aux_sym_preproc_def_token1] = ACTIONS(2014), - [anon_sym_auto] = ACTIONS(2014), - [anon_sym_inline] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(1855), }, [561] = { - [sym_while_statement] = STATE(562), - [sym_continue_statement] = STATE(562), - [sym_goto_statement] = STATE(562), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(758), - [sym_math_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(562), - [sym_expression_statement] = STATE(562), - [sym_if_statement] = STATE(562), - [sym_do_statement] = STATE(562), - [sym_for_statement] = STATE(562), - [sym__expression] = STATE(758), - [sym_comma_expression] = STATE(757), - [sym_bitwise_expression] = STATE(758), - [sym_equality_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_switch_statement] = STATE(562), - [sym_return_statement] = STATE(562), - [sym_break_statement] = STATE(562), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_relational_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(562), - [anon_sym_LBRACE] = ACTIONS(97), - [sym_null] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), + [sym_false] = ACTIONS(1863), + [anon_sym_restrict] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1863), + [anon_sym_goto] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_typedef] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym__Atomic] = ACTIONS(1863), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), + [sym_number_literal] = ACTIONS(1865), + [anon_sym_volatile] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_struct] = ACTIONS(1863), + [anon_sym_signed] = ACTIONS(1863), + [anon_sym_long] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), + [anon_sym_L] = ACTIONS(1863), + [anon_sym___attribute__] = ACTIONS(1863), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1863), + [anon_sym_unsigned] = ACTIONS(1863), + [anon_sym_short] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1865), + [sym_preproc_directive] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1865), + [aux_sym_preproc_if_token1] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1865), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1863), + [sym_primitive_type] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [aux_sym_preproc_include_token1] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1865), + [aux_sym_preproc_def_token1] = ACTIONS(1863), + [anon_sym_auto] = ACTIONS(1863), + [anon_sym_inline] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + }, + [562] = { + [sym_while_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(773), + [sym_math_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym__expression] = STATE(773), + [sym_comma_expression] = STATE(772), + [sym_bitwise_expression] = STATE(773), + [sym_equality_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_switch_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_relational_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(566), + [anon_sym_LBRACE] = ACTIONS(101), + [sym_false] = ACTIONS(85), + [sym_identifier] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(91), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [sym_identifier] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [562] = { - [sym_null] = ACTIONS(2018), - [anon_sym_restrict] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [anon_sym_typedef] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2018), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2018), - [anon_sym_signed] = ACTIONS(2018), - [anon_sym_long] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym___attribute__] = ACTIONS(2018), - [anon_sym_sizeof] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2018), - [anon_sym_unsigned] = ACTIONS(2018), - [anon_sym_short] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_TILDE] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_RBRACE] = ACTIONS(2020), - [anon_sym_else] = ACTIONS(2018), - [sym_true] = ACTIONS(2018), - [sym_primitive_type] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [aux_sym_preproc_include_token1] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_switch] = ACTIONS(2018), - [sym_false] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_SEMI] = ACTIONS(2020), - [aux_sym_preproc_def_token1] = ACTIONS(2018), - [anon_sym_auto] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2018), - [anon_sym_DASH] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [563] = { - [sym_null] = ACTIONS(263), - [anon_sym_restrict] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(263), - [aux_sym_preproc_if_token2] = ACTIONS(263), - [anon_sym_const] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(263), - [anon_sym_DASH_DASH] = ACTIONS(265), - [anon_sym__Atomic] = ACTIONS(263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(263), - [sym_number_literal] = ACTIONS(265), - [anon_sym_volatile] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_PLUS_PLUS] = ACTIONS(265), - [anon_sym_struct] = ACTIONS(263), - [anon_sym_signed] = ACTIONS(263), - [anon_sym_long] = ACTIONS(263), - [anon_sym_while] = ACTIONS(263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(263), - [aux_sym_preproc_elif_token1] = ACTIONS(263), - [anon_sym_SQUOTE] = ACTIONS(265), - [anon_sym_DQUOTE] = ACTIONS(265), - [anon_sym___attribute__] = ACTIONS(263), - [anon_sym_sizeof] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_union] = ACTIONS(263), - [anon_sym_unsigned] = ACTIONS(263), - [anon_sym_short] = ACTIONS(263), - [anon_sym_do] = ACTIONS(263), - [aux_sym_preproc_else_token1] = ACTIONS(263), - [anon_sym_TILDE] = ACTIONS(265), - [sym_preproc_directive] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(265), - [aux_sym_preproc_if_token1] = ACTIONS(263), - [anon_sym_LPAREN2] = ACTIONS(265), - [anon_sym_else] = ACTIONS(263), - [sym_true] = ACTIONS(263), - [sym_primitive_type] = ACTIONS(263), - [anon_sym_for] = ACTIONS(263), - [anon_sym_break] = ACTIONS(263), - [aux_sym_preproc_include_token1] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(265), - [anon_sym_static] = ACTIONS(263), - [anon_sym_register] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_if] = ACTIONS(263), - [anon_sym_switch] = ACTIONS(263), - [sym_false] = ACTIONS(263), - [anon_sym_enum] = ACTIONS(263), - [sym_identifier] = ACTIONS(263), - [anon_sym_return] = ACTIONS(263), - [anon_sym_continue] = ACTIONS(263), - [anon_sym_SEMI] = ACTIONS(265), - [aux_sym_preproc_def_token1] = ACTIONS(263), - [anon_sym_auto] = ACTIONS(263), - [anon_sym_inline] = ACTIONS(263), - [anon_sym_DASH] = ACTIONS(263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_unsigned] = ACTIONS(1896), + [anon_sym_restrict] = ACTIONS(1896), + [anon_sym_short] = ACTIONS(1896), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_volatile] = ACTIONS(1896), + [anon_sym_register] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1896), + [aux_sym_preproc_else_token1] = ACTIONS(1896), + [aux_sym_preproc_if_token2] = ACTIONS(1896), + [sym_preproc_directive] = ACTIONS(1896), + [anon_sym_signed] = ACTIONS(1896), + [aux_sym_preproc_if_token1] = ACTIONS(1896), + [anon_sym_long] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1896), + [aux_sym_preproc_elif_token1] = ACTIONS(1896), + [aux_sym_preproc_def_token1] = ACTIONS(1896), + [anon_sym__Atomic] = ACTIONS(1896), + [anon_sym_auto] = ACTIONS(1896), + [sym_primitive_type] = ACTIONS(1896), + [anon_sym_inline] = ACTIONS(1896), + [anon_sym___attribute__] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), }, [564] = { - [sym_null] = ACTIONS(342), - [anon_sym_restrict] = ACTIONS(342), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(342), - [aux_sym_preproc_if_token2] = ACTIONS(342), - [anon_sym_const] = ACTIONS(342), - [anon_sym_typedef] = ACTIONS(342), - [anon_sym_DASH_DASH] = ACTIONS(344), - [anon_sym__Atomic] = ACTIONS(342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(342), - [sym_number_literal] = ACTIONS(344), - [anon_sym_volatile] = ACTIONS(342), - [anon_sym_extern] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(344), - [anon_sym_struct] = ACTIONS(342), - [anon_sym_signed] = ACTIONS(342), - [anon_sym_long] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(342), - [aux_sym_preproc_elif_token1] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym___attribute__] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_LBRACE] = ACTIONS(344), - [anon_sym_union] = ACTIONS(342), - [anon_sym_unsigned] = ACTIONS(342), - [anon_sym_short] = ACTIONS(342), - [anon_sym_do] = ACTIONS(342), - [aux_sym_preproc_else_token1] = ACTIONS(342), - [anon_sym_TILDE] = ACTIONS(344), - [sym_preproc_directive] = ACTIONS(342), - [anon_sym_AMP] = ACTIONS(344), - [aux_sym_preproc_if_token1] = ACTIONS(342), - [anon_sym_LPAREN2] = ACTIONS(344), - [anon_sym_else] = ACTIONS(342), - [sym_true] = ACTIONS(342), - [sym_primitive_type] = ACTIONS(342), - [anon_sym_for] = ACTIONS(342), - [anon_sym_break] = ACTIONS(342), - [aux_sym_preproc_include_token1] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_static] = ACTIONS(342), - [anon_sym_register] = ACTIONS(342), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_if] = ACTIONS(342), - [anon_sym_switch] = ACTIONS(342), - [sym_false] = ACTIONS(342), - [anon_sym_enum] = ACTIONS(342), - [sym_identifier] = ACTIONS(342), - [anon_sym_return] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_SEMI] = ACTIONS(344), - [aux_sym_preproc_def_token1] = ACTIONS(342), - [anon_sym_auto] = ACTIONS(342), - [anon_sym_inline] = ACTIONS(342), - [anon_sym_DASH] = ACTIONS(342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsigned] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [anon_sym_short] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1900), + [aux_sym_preproc_else_token1] = ACTIONS(1900), + [aux_sym_preproc_if_token2] = ACTIONS(1900), + [sym_preproc_directive] = ACTIONS(1900), + [anon_sym_signed] = ACTIONS(1900), + [aux_sym_preproc_if_token1] = ACTIONS(1900), + [anon_sym_long] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), + [aux_sym_preproc_elif_token1] = ACTIONS(1900), + [aux_sym_preproc_def_token1] = ACTIONS(1900), + [anon_sym__Atomic] = ACTIONS(1900), + [anon_sym_auto] = ACTIONS(1900), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_inline] = ACTIONS(1900), + [anon_sym___attribute__] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), }, [565] = { - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_union] = ACTIONS(370), - [anon_sym_sizeof] = ACTIONS(370), - [anon_sym_unsigned] = ACTIONS(370), - [anon_sym_restrict] = ACTIONS(370), - [anon_sym_short] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(372), - [sym_null] = ACTIONS(370), - [sym_identifier] = ACTIONS(370), - [anon_sym_do] = ACTIONS(370), - [anon_sym_goto] = ACTIONS(370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [sym_preproc_directive] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [aux_sym_preproc_def_token1] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(372), - [sym_preproc_directive] = ACTIONS(370), - [anon_sym_AMP] = ACTIONS(372), - [aux_sym_preproc_if_token1] = ACTIONS(370), - [anon_sym_const] = ACTIONS(370), - [anon_sym_LPAREN2] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(370), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym__Atomic] = ACTIONS(370), - [sym_primitive_type] = ACTIONS(370), - [sym_true] = ACTIONS(370), - [anon_sym_for] = ACTIONS(370), - [anon_sym_break] = ACTIONS(370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(370), - [aux_sym_preproc_include_token1] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(372), - [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_if] = ACTIONS(370), - [anon_sym_struct] = ACTIONS(370), - [anon_sym_switch] = ACTIONS(370), - [anon_sym_signed] = ACTIONS(370), - [anon_sym_enum] = ACTIONS(370), - [anon_sym_long] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_return] = ACTIONS(370), - [anon_sym_while] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(372), - [sym_number_literal] = ACTIONS(372), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [sym_false] = ACTIONS(370), - [anon_sym_auto] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [anon_sym_inline] = ACTIONS(370), - [anon_sym___attribute__] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(370), }, [566] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(390), - [anon_sym_union] = ACTIONS(390), - [anon_sym_unsigned] = ACTIONS(390), - [anon_sym_restrict] = ACTIONS(390), - [anon_sym_short] = ACTIONS(390), - [anon_sym_static] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(390), - [anon_sym_register] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(390), - [sym_preproc_directive] = ACTIONS(390), - [anon_sym_signed] = ACTIONS(390), - [aux_sym_preproc_if_token1] = ACTIONS(390), - [anon_sym_long] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [anon_sym_const] = ACTIONS(390), - [sym_identifier] = ACTIONS(390), - [anon_sym_RBRACE] = ACTIONS(388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(390), - [aux_sym_preproc_def_token1] = ACTIONS(390), - [anon_sym__Atomic] = ACTIONS(390), - [anon_sym_auto] = ACTIONS(390), - [sym_primitive_type] = ACTIONS(390), - [anon_sym_inline] = ACTIONS(390), - [anon_sym___attribute__] = ACTIONS(390), + [sym_false] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym__Atomic] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [anon_sym_L] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1933), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1933), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [aux_sym_preproc_include_token1] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [sym_null] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [anon_sym_auto] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), }, [567] = { - [sym_null] = ACTIONS(487), - [anon_sym_restrict] = ACTIONS(487), - [sym_comment] = ACTIONS(3), - [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), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [sym_number_literal] = ACTIONS(489), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_extern] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_signed] = ACTIONS(487), - [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_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = 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), - [anon_sym_TILDE] = ACTIONS(489), - [sym_preproc_directive] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(489), - [aux_sym_preproc_if_token1] = ACTIONS(487), - [anon_sym_LPAREN2] = ACTIONS(489), - [anon_sym_else] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_primitive_type] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [aux_sym_preproc_include_token1] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(489), - [anon_sym_static] = ACTIONS(487), - [anon_sym_register] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_if] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [sym_identifier] = 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_auto] = ACTIONS(487), - [anon_sym_inline] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), + [sym_while_statement] = STATE(568), + [sym_continue_statement] = STATE(568), + [sym_goto_statement] = STATE(568), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(773), + [sym_math_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(568), + [sym_expression_statement] = STATE(568), + [sym_if_statement] = STATE(568), + [sym_do_statement] = STATE(568), + [sym_for_statement] = STATE(568), + [sym__expression] = STATE(773), + [sym_comma_expression] = STATE(772), + [sym_bitwise_expression] = STATE(773), + [sym_equality_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_switch_statement] = STATE(568), + [sym_return_statement] = STATE(568), + [sym_break_statement] = STATE(568), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_relational_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(568), + [anon_sym_LBRACE] = ACTIONS(101), + [sym_false] = ACTIONS(85), + [sym_identifier] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [568] = { - [sym_null] = ACTIONS(495), - [anon_sym_restrict] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(495), - [aux_sym_preproc_if_token2] = ACTIONS(495), - [anon_sym_const] = ACTIONS(495), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(493), - [anon_sym__Atomic] = ACTIONS(495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(495), - [sym_number_literal] = ACTIONS(493), - [anon_sym_volatile] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(495), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_struct] = ACTIONS(495), - [anon_sym_signed] = ACTIONS(495), - [anon_sym_long] = ACTIONS(495), - [anon_sym_while] = ACTIONS(495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(495), - [aux_sym_preproc_elif_token1] = ACTIONS(495), - [anon_sym_SQUOTE] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym___attribute__] = ACTIONS(495), - [anon_sym_sizeof] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_union] = ACTIONS(495), - [anon_sym_unsigned] = ACTIONS(495), - [anon_sym_short] = ACTIONS(495), - [anon_sym_do] = ACTIONS(495), - [aux_sym_preproc_else_token1] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(493), - [sym_preproc_directive] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(493), - [aux_sym_preproc_if_token1] = ACTIONS(495), - [anon_sym_LPAREN2] = ACTIONS(493), - [sym_true] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(495), - [anon_sym_for] = ACTIONS(495), - [anon_sym_break] = ACTIONS(495), - [aux_sym_preproc_include_token1] = ACTIONS(495), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_register] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_switch] = ACTIONS(495), - [sym_false] = ACTIONS(495), - [anon_sym_enum] = ACTIONS(495), - [sym_identifier] = ACTIONS(495), - [anon_sym_return] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(493), - [aux_sym_preproc_def_token1] = ACTIONS(495), - [anon_sym_auto] = ACTIONS(495), - [anon_sym_inline] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), + [sym_false] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym__Atomic] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [anon_sym_L] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym_sizeof] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_TILDE] = ACTIONS(2054), + [sym_preproc_directive] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2054), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_else] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [sym_true] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [anon_sym_DASH] = ACTIONS(2052), }, [569] = { - [sym_while_statement] = STATE(585), - [sym_continue_statement] = STATE(585), - [sym_goto_statement] = STATE(585), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(585), - [sym_expression_statement] = STATE(585), - [sym_if_statement] = STATE(585), - [sym_do_statement] = STATE(585), - [sym_for_statement] = STATE(585), - [sym__expression] = STATE(834), - [sym_comma_expression] = STATE(833), - [sym_bitwise_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(834), - [sym_concatenated_string] = STATE(834), - [sym_switch_statement] = STATE(585), - [sym_return_statement] = STATE(585), - [sym_break_statement] = STATE(585), - [sym_conditional_expression] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(585), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_null] = ACTIONS(398), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), + [sym_while_statement] = STATE(570), + [sym_continue_statement] = STATE(570), + [sym_goto_statement] = STATE(570), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(773), + [sym_math_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(570), + [sym_expression_statement] = STATE(570), + [sym_if_statement] = STATE(570), + [sym_do_statement] = STATE(570), + [sym_for_statement] = STATE(570), + [sym__expression] = STATE(773), + [sym_comma_expression] = STATE(772), + [sym_bitwise_expression] = STATE(773), + [sym_equality_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_switch_statement] = STATE(570), + [sym_return_statement] = STATE(570), + [sym_break_statement] = STATE(570), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_relational_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(570), + [anon_sym_LBRACE] = ACTIONS(101), + [sym_false] = ACTIONS(85), + [sym_identifier] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(398), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(408), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [sym_identifier] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [570] = { - [sym_while_statement] = STATE(587), - [sym_continue_statement] = STATE(587), - [sym_goto_statement] = STATE(587), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_if_statement] = STATE(587), - [sym_do_statement] = STATE(587), - [sym_for_statement] = STATE(587), - [sym__expression] = STATE(834), - [sym_comma_expression] = STATE(833), - [sym_bitwise_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(834), - [sym_concatenated_string] = STATE(834), - [sym_switch_statement] = STATE(587), - [sym_return_statement] = STATE(587), - [sym_break_statement] = STATE(587), - [sym_conditional_expression] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(587), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_null] = ACTIONS(398), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), + [sym_false] = ACTIONS(2058), + [anon_sym_restrict] = ACTIONS(2058), + [sym_identifier] = ACTIONS(2058), + [anon_sym_goto] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_typedef] = ACTIONS(2058), + [anon_sym_DASH_DASH] = ACTIONS(2060), + [anon_sym__Atomic] = ACTIONS(2058), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), + [sym_number_literal] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_signed] = ACTIONS(2058), + [anon_sym_long] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), + [anon_sym_L] = ACTIONS(2058), + [anon_sym___attribute__] = ACTIONS(2058), + [anon_sym_sizeof] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsigned] = ACTIONS(2058), + [anon_sym_short] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2060), + [sym_preproc_directive] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), + [aux_sym_preproc_if_token1] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_else] = ACTIONS(2058), + [sym_primitive_type] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [aux_sym_preproc_include_token1] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_PLUS] = ACTIONS(2058), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_switch] = ACTIONS(2058), + [sym_true] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [sym_null] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2060), + [aux_sym_preproc_def_token1] = ACTIONS(2058), + [anon_sym_auto] = ACTIONS(2058), + [anon_sym_inline] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2058), + }, + [571] = { + [sym_while_statement] = STATE(572), + [sym_continue_statement] = STATE(572), + [sym_goto_statement] = STATE(572), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(773), + [sym_math_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(572), + [sym_expression_statement] = STATE(572), + [sym_if_statement] = STATE(572), + [sym_do_statement] = STATE(572), + [sym_for_statement] = STATE(572), + [sym__expression] = STATE(773), + [sym_comma_expression] = STATE(772), + [sym_bitwise_expression] = STATE(773), + [sym_equality_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_switch_statement] = STATE(572), + [sym_return_statement] = STATE(572), + [sym_break_statement] = STATE(572), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_relational_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(572), + [anon_sym_LBRACE] = ACTIONS(101), + [sym_false] = ACTIONS(85), + [sym_identifier] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(398), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(408), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [sym_identifier] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [571] = { - [sym_null] = ACTIONS(537), - [anon_sym_restrict] = ACTIONS(537), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(537), - [aux_sym_preproc_if_token2] = ACTIONS(537), - [anon_sym_const] = ACTIONS(537), - [anon_sym_typedef] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym__Atomic] = ACTIONS(537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(537), - [sym_number_literal] = ACTIONS(539), - [anon_sym_volatile] = ACTIONS(537), - [anon_sym_extern] = ACTIONS(537), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_struct] = ACTIONS(537), - [anon_sym_signed] = ACTIONS(537), - [anon_sym_long] = ACTIONS(537), - [anon_sym_while] = ACTIONS(537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(537), - [aux_sym_preproc_elif_token1] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym___attribute__] = ACTIONS(537), - [anon_sym_sizeof] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(539), - [anon_sym_union] = ACTIONS(537), - [anon_sym_unsigned] = ACTIONS(537), - [anon_sym_short] = ACTIONS(537), - [anon_sym_do] = ACTIONS(537), - [aux_sym_preproc_else_token1] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(539), - [sym_preproc_directive] = ACTIONS(537), - [anon_sym_AMP] = ACTIONS(539), - [aux_sym_preproc_if_token1] = ACTIONS(537), - [anon_sym_LPAREN2] = ACTIONS(539), - [anon_sym_else] = ACTIONS(537), - [sym_true] = ACTIONS(537), - [sym_primitive_type] = ACTIONS(537), - [anon_sym_for] = ACTIONS(537), - [anon_sym_break] = ACTIONS(537), - [aux_sym_preproc_include_token1] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(539), - [anon_sym_static] = ACTIONS(537), - [anon_sym_register] = ACTIONS(537), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_if] = ACTIONS(537), - [anon_sym_switch] = ACTIONS(537), - [sym_false] = ACTIONS(537), - [anon_sym_enum] = ACTIONS(537), - [sym_identifier] = ACTIONS(537), - [anon_sym_return] = ACTIONS(537), - [anon_sym_continue] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(539), - [aux_sym_preproc_def_token1] = ACTIONS(537), - [anon_sym_auto] = ACTIONS(537), - [anon_sym_inline] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), + [anon_sym_if] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [572] = { + [sym_false] = ACTIONS(2062), + [anon_sym_restrict] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2062), + [anon_sym_goto] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2062), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym__Atomic] = ACTIONS(2062), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2062), + [sym_number_literal] = ACTIONS(2064), + [anon_sym_volatile] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2062), + [anon_sym_signed] = ACTIONS(2062), + [anon_sym_long] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2062), + [anon_sym_L] = ACTIONS(2062), + [anon_sym___attribute__] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2062), + [anon_sym_unsigned] = ACTIONS(2062), + [anon_sym_short] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2064), + [sym_preproc_directive] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), + [aux_sym_preproc_if_token1] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2062), + [sym_primitive_type] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [aux_sym_preproc_include_token1] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_register] = ACTIONS(2062), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_switch] = ACTIONS(2062), + [sym_true] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [sym_null] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2064), + [aux_sym_preproc_def_token1] = ACTIONS(2062), + [anon_sym_auto] = ACTIONS(2062), + [anon_sym_inline] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + }, + [573] = { + [sym_false] = ACTIONS(269), + [anon_sym_restrict] = ACTIONS(269), + [sym_identifier] = ACTIONS(269), + [anon_sym_goto] = ACTIONS(269), + [aux_sym_preproc_if_token2] = ACTIONS(269), + [anon_sym_const] = ACTIONS(269), + [anon_sym_typedef] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym__Atomic] = ACTIONS(269), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(269), + [sym_number_literal] = ACTIONS(271), + [anon_sym_volatile] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_struct] = ACTIONS(269), + [anon_sym_signed] = ACTIONS(269), + [anon_sym_long] = ACTIONS(269), + [anon_sym_while] = ACTIONS(269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(269), + [aux_sym_preproc_elif_token1] = ACTIONS(269), + [anon_sym_L] = ACTIONS(269), + [anon_sym___attribute__] = ACTIONS(269), + [anon_sym_sizeof] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(271), + [anon_sym_union] = ACTIONS(269), + [anon_sym_unsigned] = ACTIONS(269), + [anon_sym_short] = ACTIONS(269), + [anon_sym_do] = ACTIONS(269), + [aux_sym_preproc_else_token1] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(271), + [sym_preproc_directive] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(271), + [aux_sym_preproc_if_token1] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_LPAREN2] = ACTIONS(271), + [anon_sym_else] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(269), + [anon_sym_for] = ACTIONS(269), + [anon_sym_break] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_static] = ACTIONS(269), + [anon_sym_register] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_if] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(269), + [sym_true] = ACTIONS(269), + [anon_sym_enum] = ACTIONS(269), + [sym_null] = ACTIONS(269), + [anon_sym_return] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(269), + [anon_sym_auto] = ACTIONS(269), + [anon_sym_inline] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(269), + }, + [574] = { + [sym_false] = ACTIONS(354), + [anon_sym_restrict] = ACTIONS(354), + [sym_identifier] = ACTIONS(354), + [anon_sym_goto] = ACTIONS(354), + [aux_sym_preproc_if_token2] = ACTIONS(354), + [anon_sym_const] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(354), + [anon_sym_DASH_DASH] = ACTIONS(356), + [anon_sym__Atomic] = ACTIONS(354), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [sym_number_literal] = ACTIONS(356), + [anon_sym_volatile] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(356), + [anon_sym_struct] = ACTIONS(354), + [anon_sym_signed] = ACTIONS(354), + [anon_sym_long] = ACTIONS(354), + [anon_sym_while] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [aux_sym_preproc_elif_token1] = ACTIONS(354), + [anon_sym_L] = ACTIONS(354), + [anon_sym___attribute__] = ACTIONS(354), + [anon_sym_sizeof] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_union] = ACTIONS(354), + [anon_sym_unsigned] = ACTIONS(354), + [anon_sym_short] = ACTIONS(354), + [anon_sym_do] = ACTIONS(354), + [aux_sym_preproc_else_token1] = ACTIONS(354), + [anon_sym_TILDE] = ACTIONS(356), + [sym_preproc_directive] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(356), + [aux_sym_preproc_if_token1] = ACTIONS(354), + [anon_sym_DQUOTE] = ACTIONS(356), + [anon_sym_LPAREN2] = ACTIONS(356), + [anon_sym_else] = ACTIONS(354), + [sym_primitive_type] = ACTIONS(354), + [anon_sym_for] = ACTIONS(354), + [anon_sym_break] = ACTIONS(354), + [aux_sym_preproc_include_token1] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(356), + [anon_sym_static] = ACTIONS(354), + [anon_sym_register] = ACTIONS(354), + [anon_sym_PLUS] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_if] = ACTIONS(354), + [anon_sym_switch] = ACTIONS(354), + [sym_true] = ACTIONS(354), + [anon_sym_enum] = ACTIONS(354), + [sym_null] = ACTIONS(354), + [anon_sym_return] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(354), + [anon_sym_SEMI] = ACTIONS(356), + [aux_sym_preproc_def_token1] = ACTIONS(354), + [anon_sym_auto] = ACTIONS(354), + [anon_sym_inline] = ACTIONS(354), + [anon_sym_DASH] = ACTIONS(354), + }, + [575] = { [sym_while_statement] = STATE(589), [sym_continue_statement] = STATE(589), [sym_goto_statement] = STATE(589), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), [sym_compound_statement] = STATE(589), [sym_expression_statement] = STATE(589), [sym_if_statement] = STATE(589), [sym_do_statement] = STATE(589), [sym_for_statement] = STATE(589), - [sym__expression] = STATE(834), - [sym_comma_expression] = STATE(833), - [sym_bitwise_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(834), - [sym_concatenated_string] = STATE(834), + [sym__expression] = STATE(851), + [sym_comma_expression] = STATE(850), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), [sym_switch_statement] = STATE(589), [sym_return_statement] = STATE(589), [sym_break_statement] = STATE(589), - [sym_conditional_expression] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), [sym_labeled_statement] = STATE(589), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_null] = ACTIONS(398), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), + [anon_sym_LBRACE] = ACTIONS(428), + [sym_false] = ACTIONS(408), + [sym_identifier] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(430), + [anon_sym_goto] = ACTIONS(412), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(398), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(408), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [sym_identifier] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [573] = { - [sym_null] = ACTIONS(543), - [anon_sym_restrict] = ACTIONS(543), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(543), - [aux_sym_preproc_if_token2] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_typedef] = ACTIONS(543), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym__Atomic] = ACTIONS(543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(543), - [sym_number_literal] = ACTIONS(545), - [anon_sym_volatile] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(543), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(543), - [anon_sym_signed] = ACTIONS(543), - [anon_sym_long] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(543), - [aux_sym_preproc_elif_token1] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [anon_sym___attribute__] = ACTIONS(543), - [anon_sym_sizeof] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_union] = ACTIONS(543), - [anon_sym_unsigned] = ACTIONS(543), - [anon_sym_short] = ACTIONS(543), - [anon_sym_do] = ACTIONS(543), - [aux_sym_preproc_else_token1] = ACTIONS(543), - [anon_sym_TILDE] = ACTIONS(545), - [sym_preproc_directive] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [aux_sym_preproc_if_token1] = ACTIONS(543), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_else] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [sym_primitive_type] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [aux_sym_preproc_include_token1] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_static] = ACTIONS(543), - [anon_sym_register] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_if] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [sym_identifier] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(545), - [aux_sym_preproc_def_token1] = ACTIONS(543), - [anon_sym_auto] = ACTIONS(543), - [anon_sym_inline] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - }, - [574] = { - [sym_null] = ACTIONS(570), - [anon_sym_restrict] = ACTIONS(570), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(570), - [aux_sym_preproc_if_token2] = ACTIONS(570), - [anon_sym_const] = ACTIONS(570), - [anon_sym_typedef] = ACTIONS(570), - [anon_sym_DASH_DASH] = ACTIONS(572), - [anon_sym__Atomic] = ACTIONS(570), - [aux_sym_preproc_ifdef_token1] = ACTIONS(570), - [sym_number_literal] = ACTIONS(572), - [anon_sym_volatile] = ACTIONS(570), - [anon_sym_extern] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(572), - [anon_sym_struct] = ACTIONS(570), - [anon_sym_signed] = ACTIONS(570), - [anon_sym_long] = ACTIONS(570), - [anon_sym_while] = ACTIONS(570), - [aux_sym_preproc_ifdef_token2] = ACTIONS(570), - [aux_sym_preproc_elif_token1] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym___attribute__] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_union] = ACTIONS(570), - [anon_sym_unsigned] = ACTIONS(570), - [anon_sym_short] = ACTIONS(570), - [anon_sym_do] = ACTIONS(570), - [aux_sym_preproc_else_token1] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(572), - [sym_preproc_directive] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [aux_sym_preproc_if_token1] = ACTIONS(570), - [anon_sym_LPAREN2] = ACTIONS(572), - [anon_sym_else] = ACTIONS(570), - [sym_true] = ACTIONS(570), - [sym_primitive_type] = ACTIONS(570), - [anon_sym_for] = ACTIONS(570), - [anon_sym_break] = ACTIONS(570), - [aux_sym_preproc_include_token1] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_static] = ACTIONS(570), - [anon_sym_register] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_if] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(570), - [sym_false] = ACTIONS(570), - [anon_sym_enum] = ACTIONS(570), - [sym_identifier] = ACTIONS(570), - [anon_sym_return] = ACTIONS(570), - [anon_sym_continue] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(572), - [aux_sym_preproc_def_token1] = ACTIONS(570), - [anon_sym_auto] = ACTIONS(570), - [anon_sym_inline] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(570), - }, - [575] = { - [sym_continue_statement] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(575), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(575), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_preproc_include] = STATE(575), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(575), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(575), - [sym_while_statement] = STATE(575), - [sym_preproc_def] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(575), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(575), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(575), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(575), - [sym_preproc_if] = STATE(575), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(575), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(2179), - [anon_sym_restrict] = ACTIONS(590), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2182), - [aux_sym_preproc_if_token2] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(590), - [anon_sym_typedef] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(628), - [anon_sym__Atomic] = ACTIONS(590), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2190), - [sym_number_literal] = ACTIONS(2193), - [anon_sym_volatile] = ACTIONS(590), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(628), - [anon_sym_struct] = ACTIONS(658), - [anon_sym_signed] = ACTIONS(587), - [anon_sym_long] = ACTIONS(587), - [anon_sym_while] = ACTIONS(2199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2190), - [aux_sym_preproc_elif_token1] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_DQUOTE] = ACTIONS(593), - [anon_sym___attribute__] = ACTIONS(691), - [anon_sym_sizeof] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_union] = ACTIONS(581), - [anon_sym_unsigned] = ACTIONS(587), - [anon_sym_short] = ACTIONS(587), - [anon_sym_do] = ACTIONS(2205), - [aux_sym_preproc_else_token1] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(610), - [sym_preproc_directive] = ACTIONS(2208), - [anon_sym_AMP] = ACTIONS(616), - [aux_sym_preproc_if_token1] = ACTIONS(2211), - [anon_sym_LPAREN2] = ACTIONS(622), - [sym_true] = ACTIONS(2179), - [sym_primitive_type] = ACTIONS(631), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2217), - [aux_sym_preproc_include_token1] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(646), - [anon_sym_static] = ACTIONS(649), - [anon_sym_register] = ACTIONS(649), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(616), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_switch] = ACTIONS(2226), - [sym_false] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(664), - [sym_identifier] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_SEMI] = ACTIONS(2238), - [aux_sym_preproc_def_token1] = ACTIONS(2241), - [anon_sym_auto] = ACTIONS(649), - [anon_sym_inline] = ACTIONS(649), - [anon_sym_DASH] = ACTIONS(667), + [anon_sym_if] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_while] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [576] = { - [sym_null] = ACTIONS(781), - [anon_sym_restrict] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(781), - [aux_sym_preproc_if_token2] = ACTIONS(781), - [anon_sym_const] = ACTIONS(781), - [anon_sym_typedef] = ACTIONS(781), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym__Atomic] = ACTIONS(781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(781), - [sym_number_literal] = ACTIONS(779), - [anon_sym_volatile] = ACTIONS(781), - [anon_sym_extern] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_struct] = ACTIONS(781), - [anon_sym_signed] = ACTIONS(781), - [anon_sym_long] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(781), - [aux_sym_preproc_elif_token1] = ACTIONS(781), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym___attribute__] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_union] = ACTIONS(781), - [anon_sym_unsigned] = ACTIONS(781), - [anon_sym_short] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [aux_sym_preproc_else_token1] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(779), - [sym_preproc_directive] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(779), - [aux_sym_preproc_if_token1] = ACTIONS(781), - [anon_sym_LPAREN2] = ACTIONS(779), - [sym_true] = ACTIONS(781), - [sym_primitive_type] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [aux_sym_preproc_include_token1] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_static] = ACTIONS(781), - [anon_sym_register] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_if] = ACTIONS(781), - [anon_sym_switch] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [anon_sym_enum] = ACTIONS(781), - [sym_identifier] = ACTIONS(781), - [anon_sym_return] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(779), - [aux_sym_preproc_def_token1] = ACTIONS(781), - [anon_sym_auto] = ACTIONS(781), - [anon_sym_inline] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(2225), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(151), }, [577] = { - [sym_null] = ACTIONS(793), - [anon_sym_restrict] = ACTIONS(793), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(793), - [aux_sym_preproc_if_token2] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_typedef] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym__Atomic] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [sym_number_literal] = ACTIONS(795), - [anon_sym_volatile] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_struct] = ACTIONS(793), - [anon_sym_signed] = ACTIONS(793), - [anon_sym_long] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [aux_sym_preproc_elif_token1] = ACTIONS(793), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(795), - [anon_sym___attribute__] = ACTIONS(793), - [anon_sym_sizeof] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_union] = ACTIONS(793), - [anon_sym_unsigned] = ACTIONS(793), - [anon_sym_short] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [aux_sym_preproc_else_token1] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_AMP] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_else] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_primitive_type] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_static] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_if] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [anon_sym_enum] = ACTIONS(793), - [sym_identifier] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [anon_sym_auto] = ACTIONS(793), - [anon_sym_inline] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(400), + [anon_sym_union] = ACTIONS(400), + [anon_sym_unsigned] = ACTIONS(400), + [anon_sym_restrict] = ACTIONS(400), + [anon_sym_short] = ACTIONS(400), + [anon_sym_static] = ACTIONS(400), + [anon_sym_volatile] = ACTIONS(400), + [anon_sym_register] = ACTIONS(400), + [anon_sym_extern] = ACTIONS(400), + [sym_identifier] = ACTIONS(400), + [anon_sym_struct] = ACTIONS(400), + [sym_preproc_directive] = ACTIONS(400), + [anon_sym_signed] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(400), + [anon_sym_long] = ACTIONS(400), + [anon_sym_enum] = ACTIONS(400), + [anon_sym_const] = ACTIONS(400), + [anon_sym_RBRACE] = ACTIONS(398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(400), + [aux_sym_preproc_def_token1] = ACTIONS(400), + [anon_sym__Atomic] = ACTIONS(400), + [anon_sym_auto] = ACTIONS(400), + [sym_primitive_type] = ACTIONS(400), + [anon_sym_inline] = ACTIONS(400), + [anon_sym___attribute__] = ACTIONS(400), + [sym_comment] = ACTIONS(3), }, [578] = { - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_union] = ACTIONS(823), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(823), - [anon_sym_restrict] = ACTIONS(823), - [anon_sym_short] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym_null] = ACTIONS(823), - [sym_identifier] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_goto] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(825), - [sym_preproc_directive] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(825), - [aux_sym_preproc_if_token1] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_LPAREN2] = ACTIONS(825), - [anon_sym_typedef] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_DASH_DASH] = ACTIONS(825), - [anon_sym__Atomic] = ACTIONS(823), - [sym_primitive_type] = ACTIONS(823), - [sym_true] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(823), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(825), - [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_if] = ACTIONS(823), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(823), - [anon_sym_signed] = ACTIONS(823), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_long] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_return] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(825), - [sym_number_literal] = ACTIONS(825), - [aux_sym_preproc_def_token1] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_union] = ACTIONS(489), + [anon_sym_sizeof] = ACTIONS(489), + [anon_sym_unsigned] = ACTIONS(489), + [anon_sym_restrict] = ACTIONS(489), + [anon_sym_short] = ACTIONS(489), + [sym_true] = ACTIONS(489), + [sym_false] = ACTIONS(489), + [sym_null] = ACTIONS(489), + [anon_sym_do] = ACTIONS(489), + [anon_sym_goto] = ACTIONS(489), + [sym_identifier] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(491), + [sym_preproc_directive] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(491), + [aux_sym_preproc_if_token1] = ACTIONS(489), + [anon_sym_const] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(491), + [anon_sym_typedef] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(491), + [anon_sym_DASH_DASH] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym__Atomic] = ACTIONS(489), + [sym_primitive_type] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(489), + [anon_sym_break] = ACTIONS(489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(489), + [aux_sym_preproc_include_token1] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_static] = ACTIONS(489), + [anon_sym_volatile] = ACTIONS(489), + [anon_sym_register] = ACTIONS(489), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_if] = ACTIONS(489), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(489), + [anon_sym_signed] = ACTIONS(489), + [anon_sym_enum] = ACTIONS(489), + [anon_sym_long] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_PLUS_PLUS] = ACTIONS(491), + [anon_sym_return] = ACTIONS(489), + [anon_sym_while] = ACTIONS(489), + [anon_sym_continue] = ACTIONS(489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(491), + [sym_number_literal] = ACTIONS(491), + [aux_sym_preproc_def_token1] = ACTIONS(489), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_auto] = ACTIONS(489), + [anon_sym_L] = ACTIONS(489), + [anon_sym_inline] = ACTIONS(489), + [anon_sym___attribute__] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(489), }, [579] = { - [sym_null] = ACTIONS(834), - [anon_sym_restrict] = ACTIONS(834), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(834), - [aux_sym_preproc_if_token2] = ACTIONS(834), - [anon_sym_const] = ACTIONS(834), - [anon_sym_typedef] = ACTIONS(834), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym__Atomic] = ACTIONS(834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(834), - [sym_number_literal] = ACTIONS(836), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_extern] = ACTIONS(834), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_struct] = ACTIONS(834), - [anon_sym_signed] = ACTIONS(834), - [anon_sym_long] = ACTIONS(834), - [anon_sym_while] = ACTIONS(834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(834), - [aux_sym_preproc_elif_token1] = ACTIONS(834), - [anon_sym_SQUOTE] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym___attribute__] = ACTIONS(834), - [anon_sym_sizeof] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsigned] = ACTIONS(834), - [anon_sym_short] = ACTIONS(834), - [anon_sym_do] = ACTIONS(834), - [aux_sym_preproc_else_token1] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(836), - [sym_preproc_directive] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(834), - [anon_sym_LPAREN2] = ACTIONS(836), - [anon_sym_else] = ACTIONS(834), - [sym_true] = ACTIONS(834), - [sym_primitive_type] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_break] = ACTIONS(834), - [aux_sym_preproc_include_token1] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_static] = ACTIONS(834), - [anon_sym_register] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(834), - [sym_false] = ACTIONS(834), - [anon_sym_enum] = ACTIONS(834), - [sym_identifier] = ACTIONS(834), - [anon_sym_return] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(836), - [aux_sym_preproc_def_token1] = ACTIONS(834), - [anon_sym_auto] = ACTIONS(834), - [anon_sym_inline] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), + [sym_false] = ACTIONS(505), + [anon_sym_restrict] = ACTIONS(505), + [sym_identifier] = ACTIONS(505), + [anon_sym_goto] = ACTIONS(505), + [aux_sym_preproc_if_token2] = ACTIONS(505), + [anon_sym_const] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(505), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym__Atomic] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(505), + [sym_number_literal] = ACTIONS(507), + [anon_sym_volatile] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(505), + [anon_sym_signed] = ACTIONS(505), + [anon_sym_long] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [aux_sym_preproc_ifdef_token2] = ACTIONS(505), + [aux_sym_preproc_elif_token1] = ACTIONS(505), + [anon_sym_L] = ACTIONS(505), + [anon_sym___attribute__] = ACTIONS(505), + [anon_sym_sizeof] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_union] = ACTIONS(505), + [anon_sym_unsigned] = ACTIONS(505), + [anon_sym_short] = ACTIONS(505), + [anon_sym_do] = ACTIONS(505), + [aux_sym_preproc_else_token1] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(507), + [sym_preproc_directive] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(507), + [aux_sym_preproc_if_token1] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_LPAREN2] = ACTIONS(507), + [anon_sym_else] = ACTIONS(505), + [sym_primitive_type] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [aux_sym_preproc_include_token1] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_static] = ACTIONS(505), + [anon_sym_register] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_if] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(505), + [sym_true] = ACTIONS(505), + [anon_sym_enum] = ACTIONS(505), + [sym_null] = ACTIONS(505), + [anon_sym_return] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_preproc_def_token1] = ACTIONS(505), + [anon_sym_auto] = ACTIONS(505), + [anon_sym_inline] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), }, [580] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsigned] = ACTIONS(840), - [anon_sym_restrict] = ACTIONS(840), - [anon_sym_short] = ACTIONS(840), - [anon_sym_static] = ACTIONS(840), - [anon_sym_volatile] = ACTIONS(840), - [anon_sym_register] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(840), + [sym_false] = ACTIONS(513), + [anon_sym_restrict] = ACTIONS(513), + [sym_identifier] = ACTIONS(513), + [anon_sym_goto] = ACTIONS(513), + [aux_sym_preproc_if_token2] = ACTIONS(513), + [anon_sym_const] = ACTIONS(513), + [anon_sym_typedef] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym__Atomic] = ACTIONS(513), [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(840), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_signed] = ACTIONS(840), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [anon_sym_long] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(840), - [anon_sym_const] = ACTIONS(840), - [sym_identifier] = ACTIONS(840), - [anon_sym_RBRACE] = ACTIONS(838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [anon_sym__Atomic] = ACTIONS(840), - [anon_sym_auto] = ACTIONS(840), - [sym_primitive_type] = ACTIONS(840), - [anon_sym_inline] = ACTIONS(840), - [anon_sym___attribute__] = ACTIONS(840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(513), + [sym_number_literal] = ACTIONS(511), + [anon_sym_volatile] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(511), + [anon_sym_extern] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_signed] = ACTIONS(513), + [anon_sym_long] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(513), + [aux_sym_preproc_elif_token1] = ACTIONS(513), + [anon_sym_L] = ACTIONS(513), + [anon_sym___attribute__] = ACTIONS(513), + [anon_sym_sizeof] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_union] = ACTIONS(513), + [anon_sym_unsigned] = ACTIONS(513), + [anon_sym_short] = ACTIONS(513), + [anon_sym_do] = ACTIONS(513), + [aux_sym_preproc_else_token1] = ACTIONS(513), + [anon_sym_TILDE] = ACTIONS(511), + [sym_preproc_directive] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(511), + [aux_sym_preproc_if_token1] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(511), + [anon_sym_LPAREN2] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), + [anon_sym_for] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [aux_sym_preproc_include_token1] = ACTIONS(513), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_register] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [anon_sym_enum] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [anon_sym_return] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(511), + [aux_sym_preproc_def_token1] = ACTIONS(513), + [anon_sym_auto] = ACTIONS(513), + [anon_sym_inline] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), }, [581] = { - [sym_null] = ACTIONS(888), - [anon_sym_restrict] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(888), - [aux_sym_preproc_if_token2] = ACTIONS(888), - [anon_sym_const] = ACTIONS(888), - [anon_sym_typedef] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym__Atomic] = ACTIONS(888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(888), - [sym_number_literal] = ACTIONS(886), - [anon_sym_volatile] = ACTIONS(888), - [anon_sym_extern] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_struct] = ACTIONS(888), - [anon_sym_signed] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_while] = ACTIONS(888), - [aux_sym_preproc_ifdef_token2] = ACTIONS(888), - [aux_sym_preproc_elif_token1] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(886), - [anon_sym_DQUOTE] = ACTIONS(886), - [anon_sym___attribute__] = ACTIONS(888), - [anon_sym_sizeof] = ACTIONS(888), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_union] = ACTIONS(888), - [anon_sym_unsigned] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [anon_sym_do] = ACTIONS(888), - [aux_sym_preproc_else_token1] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(886), - [sym_preproc_directive] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(886), - [aux_sym_preproc_if_token1] = ACTIONS(888), - [anon_sym_LPAREN2] = ACTIONS(886), - [sym_true] = ACTIONS(888), - [sym_primitive_type] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [aux_sym_preproc_include_token1] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_static] = ACTIONS(888), - [anon_sym_register] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_if] = ACTIONS(888), - [anon_sym_switch] = ACTIONS(888), - [sym_false] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(888), - [sym_identifier] = ACTIONS(888), - [anon_sym_return] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(886), - [aux_sym_preproc_def_token1] = ACTIONS(888), - [anon_sym_auto] = ACTIONS(888), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), + [sym_while_statement] = STATE(597), + [sym_continue_statement] = STATE(597), + [sym_goto_statement] = STATE(597), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(597), + [sym_expression_statement] = STATE(597), + [sym_if_statement] = STATE(597), + [sym_do_statement] = STATE(597), + [sym_for_statement] = STATE(597), + [sym__expression] = STATE(851), + [sym_comma_expression] = STATE(850), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), + [sym_switch_statement] = STATE(597), + [sym_return_statement] = STATE(597), + [sym_break_statement] = STATE(597), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(597), + [anon_sym_LBRACE] = ACTIONS(428), + [sym_false] = ACTIONS(408), + [sym_identifier] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(430), + [anon_sym_goto] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_while] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [582] = { - [anon_sym_case] = ACTIONS(896), - [sym_null] = ACTIONS(896), - [anon_sym_restrict] = ACTIONS(896), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_default] = ACTIONS(896), - [anon_sym__Atomic] = ACTIONS(896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(896), - [sym_number_literal] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_signed] = ACTIONS(896), - [anon_sym_long] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsigned] = ACTIONS(896), - [anon_sym_short] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(898), - [anon_sym_else] = ACTIONS(896), - [sym_true] = ACTIONS(896), - [sym_primitive_type] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [aux_sym_preproc_include_token1] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_static] = ACTIONS(896), - [anon_sym_register] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_if] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [sym_identifier] = ACTIONS(896), - [ts_builtin_sym_end] = ACTIONS(898), - [anon_sym_return] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(896), - [anon_sym_auto] = ACTIONS(896), - [anon_sym_inline] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), + [sym_false] = ACTIONS(551), + [anon_sym_restrict] = ACTIONS(551), + [sym_identifier] = ACTIONS(551), + [anon_sym_goto] = ACTIONS(551), + [aux_sym_preproc_if_token2] = ACTIONS(551), + [anon_sym_const] = ACTIONS(551), + [anon_sym_typedef] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym__Atomic] = ACTIONS(551), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(551), + [sym_number_literal] = ACTIONS(553), + [anon_sym_volatile] = ACTIONS(551), + [anon_sym_SQUOTE] = ACTIONS(553), + [anon_sym_extern] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_signed] = ACTIONS(551), + [anon_sym_long] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(551), + [aux_sym_preproc_elif_token1] = ACTIONS(551), + [anon_sym_L] = ACTIONS(551), + [anon_sym___attribute__] = ACTIONS(551), + [anon_sym_sizeof] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_union] = ACTIONS(551), + [anon_sym_unsigned] = ACTIONS(551), + [anon_sym_short] = ACTIONS(551), + [anon_sym_do] = ACTIONS(551), + [aux_sym_preproc_else_token1] = ACTIONS(551), + [anon_sym_TILDE] = ACTIONS(553), + [sym_preproc_directive] = ACTIONS(551), + [anon_sym_AMP] = ACTIONS(553), + [aux_sym_preproc_if_token1] = ACTIONS(551), + [anon_sym_DQUOTE] = ACTIONS(553), + [anon_sym_LPAREN2] = ACTIONS(553), + [anon_sym_else] = ACTIONS(551), + [sym_primitive_type] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [aux_sym_preproc_include_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_static] = ACTIONS(551), + [anon_sym_register] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_if] = ACTIONS(551), + [anon_sym_switch] = ACTIONS(551), + [sym_true] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(551), + [sym_null] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(553), + [aux_sym_preproc_def_token1] = ACTIONS(551), + [anon_sym_auto] = ACTIONS(551), + [anon_sym_inline] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), }, [583] = { - [sym_null] = ACTIONS(955), - [anon_sym_restrict] = ACTIONS(955), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(955), - [aux_sym_preproc_if_token2] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [anon_sym_typedef] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym__Atomic] = ACTIONS(955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(955), - [sym_number_literal] = ACTIONS(953), - [anon_sym_volatile] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(955), - [aux_sym_preproc_elif_token1] = ACTIONS(955), - [anon_sym_SQUOTE] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [anon_sym___attribute__] = ACTIONS(955), - [anon_sym_sizeof] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_union] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_do] = ACTIONS(955), - [aux_sym_preproc_else_token1] = ACTIONS(955), - [anon_sym_TILDE] = ACTIONS(953), - [sym_preproc_directive] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(953), - [aux_sym_preproc_if_token1] = ACTIONS(955), - [anon_sym_LPAREN2] = ACTIONS(953), - [sym_true] = ACTIONS(955), - [sym_primitive_type] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [aux_sym_preproc_include_token1] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_static] = ACTIONS(955), - [anon_sym_register] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_if] = ACTIONS(955), - [anon_sym_switch] = ACTIONS(955), - [sym_false] = ACTIONS(955), - [anon_sym_enum] = ACTIONS(955), - [sym_identifier] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(953), - [aux_sym_preproc_def_token1] = ACTIONS(955), - [anon_sym_auto] = ACTIONS(955), - [anon_sym_inline] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), + [sym_while_statement] = STATE(600), + [sym_continue_statement] = STATE(600), + [sym_goto_statement] = STATE(600), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_if_statement] = STATE(600), + [sym_do_statement] = STATE(600), + [sym_for_statement] = STATE(600), + [sym__expression] = STATE(851), + [sym_comma_expression] = STATE(850), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), + [sym_switch_statement] = STATE(600), + [sym_return_statement] = STATE(600), + [sym_break_statement] = STATE(600), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(600), + [anon_sym_LBRACE] = ACTIONS(428), + [sym_false] = ACTIONS(408), + [sym_identifier] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(430), + [anon_sym_goto] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_while] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [584] = { - [sym_null] = ACTIONS(965), - [anon_sym_restrict] = ACTIONS(965), + [sym_false] = ACTIONS(557), + [anon_sym_restrict] = ACTIONS(557), + [sym_identifier] = ACTIONS(557), + [anon_sym_goto] = ACTIONS(557), + [aux_sym_preproc_if_token2] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_typedef] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym__Atomic] = ACTIONS(557), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(557), + [sym_number_literal] = ACTIONS(559), + [anon_sym_volatile] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(559), + [anon_sym_extern] = ACTIONS(557), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_signed] = ACTIONS(557), + [anon_sym_long] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(557), + [aux_sym_preproc_elif_token1] = ACTIONS(557), + [anon_sym_L] = ACTIONS(557), + [anon_sym___attribute__] = ACTIONS(557), + [anon_sym_sizeof] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(557), + [anon_sym_short] = ACTIONS(557), + [anon_sym_do] = ACTIONS(557), + [aux_sym_preproc_else_token1] = ACTIONS(557), + [anon_sym_TILDE] = ACTIONS(559), + [sym_preproc_directive] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(559), + [aux_sym_preproc_if_token1] = ACTIONS(557), + [anon_sym_DQUOTE] = ACTIONS(559), + [anon_sym_LPAREN2] = ACTIONS(559), + [anon_sym_else] = ACTIONS(557), + [sym_primitive_type] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [aux_sym_preproc_include_token1] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_static] = ACTIONS(557), + [anon_sym_register] = ACTIONS(557), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(559), + [anon_sym_if] = ACTIONS(557), + [anon_sym_switch] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [aux_sym_preproc_def_token1] = ACTIONS(557), + [anon_sym_auto] = ACTIONS(557), + [anon_sym_inline] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + }, + [585] = { + [sym_false] = ACTIONS(590), + [anon_sym_restrict] = ACTIONS(590), + [sym_identifier] = ACTIONS(590), + [anon_sym_goto] = ACTIONS(590), + [aux_sym_preproc_if_token2] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_typedef] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym__Atomic] = ACTIONS(590), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(965), - [aux_sym_preproc_if_token2] = ACTIONS(965), - [anon_sym_const] = ACTIONS(965), - [anon_sym_typedef] = ACTIONS(965), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym__Atomic] = ACTIONS(965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(965), - [sym_number_literal] = ACTIONS(963), - [anon_sym_volatile] = ACTIONS(965), - [anon_sym_extern] = ACTIONS(965), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_struct] = ACTIONS(965), - [anon_sym_signed] = ACTIONS(965), - [anon_sym_long] = ACTIONS(965), - [anon_sym_while] = ACTIONS(965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(965), - [aux_sym_preproc_elif_token1] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(963), - [anon_sym___attribute__] = ACTIONS(965), - [anon_sym_sizeof] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(963), + [aux_sym_preproc_ifdef_token1] = ACTIONS(590), + [sym_number_literal] = ACTIONS(592), + [anon_sym_volatile] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(590), + [anon_sym_signed] = ACTIONS(590), + [anon_sym_long] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(590), + [aux_sym_preproc_elif_token1] = ACTIONS(590), + [anon_sym_L] = ACTIONS(590), + [anon_sym___attribute__] = ACTIONS(590), + [anon_sym_sizeof] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_union] = ACTIONS(590), + [anon_sym_unsigned] = ACTIONS(590), + [anon_sym_short] = ACTIONS(590), + [anon_sym_do] = ACTIONS(590), + [aux_sym_preproc_else_token1] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(592), + [sym_preproc_directive] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(592), + [aux_sym_preproc_if_token1] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_LPAREN2] = ACTIONS(592), + [anon_sym_else] = ACTIONS(590), + [sym_primitive_type] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [aux_sym_preproc_include_token1] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_static] = ACTIONS(590), + [anon_sym_register] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_if] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(590), + [sym_true] = ACTIONS(590), + [anon_sym_enum] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(592), + [aux_sym_preproc_def_token1] = ACTIONS(590), + [anon_sym_auto] = ACTIONS(590), + [anon_sym_inline] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + }, + [586] = { + [sym_continue_statement] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(586), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(586), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(586), + [sym_return_statement] = STATE(586), + [sym_preproc_include] = STATE(586), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(586), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_goto_statement] = STATE(586), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(586), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_do_statement] = STATE(586), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(586), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(586), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(586), + [sym_preproc_if] = STATE(586), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(586), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(2227), + [anon_sym_restrict] = ACTIONS(610), + [sym_identifier] = ACTIONS(2230), + [anon_sym_goto] = ACTIONS(2233), + [aux_sym_preproc_if_token2] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(610), + [anon_sym_typedef] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(645), + [anon_sym__Atomic] = ACTIONS(610), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2241), + [sym_number_literal] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_extern] = ACTIONS(2247), + [anon_sym_PLUS_PLUS] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_signed] = ACTIONS(607), + [anon_sym_long] = ACTIONS(607), + [anon_sym_while] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2241), + [aux_sym_preproc_elif_token1] = ACTIONS(2236), + [anon_sym_L] = ACTIONS(711), + [anon_sym___attribute__] = ACTIONS(714), + [anon_sym_sizeof] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(601), + [anon_sym_unsigned] = ACTIONS(607), + [anon_sym_short] = ACTIONS(607), + [anon_sym_do] = ACTIONS(2256), + [aux_sym_preproc_else_token1] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(625), + [sym_preproc_directive] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym_LPAREN2] = ACTIONS(639), + [sym_primitive_type] = ACTIONS(651), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2268), + [aux_sym_preproc_include_token1] = ACTIONS(2271), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_static] = ACTIONS(669), + [anon_sym_register] = ACTIONS(669), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_switch] = ACTIONS(2277), + [sym_true] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(684), + [sym_null] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2286), + [aux_sym_preproc_def_token1] = ACTIONS(2289), + [anon_sym_auto] = ACTIONS(669), + [anon_sym_inline] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(687), + }, + [587] = { + [sym_false] = ACTIONS(804), + [anon_sym_restrict] = ACTIONS(804), + [sym_identifier] = ACTIONS(804), + [anon_sym_goto] = ACTIONS(804), + [aux_sym_preproc_if_token2] = ACTIONS(804), + [anon_sym_const] = ACTIONS(804), + [anon_sym_typedef] = ACTIONS(804), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym__Atomic] = ACTIONS(804), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(804), + [sym_number_literal] = ACTIONS(802), + [anon_sym_volatile] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(802), + [anon_sym_extern] = ACTIONS(804), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_struct] = ACTIONS(804), + [anon_sym_signed] = ACTIONS(804), + [anon_sym_long] = ACTIONS(804), + [anon_sym_while] = ACTIONS(804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(804), + [aux_sym_preproc_elif_token1] = ACTIONS(804), + [anon_sym_L] = ACTIONS(804), + [anon_sym___attribute__] = ACTIONS(804), + [anon_sym_sizeof] = ACTIONS(804), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_union] = ACTIONS(804), + [anon_sym_unsigned] = ACTIONS(804), + [anon_sym_short] = ACTIONS(804), + [anon_sym_do] = ACTIONS(804), + [aux_sym_preproc_else_token1] = ACTIONS(804), + [anon_sym_TILDE] = ACTIONS(802), + [sym_preproc_directive] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(802), + [aux_sym_preproc_if_token1] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_LPAREN2] = ACTIONS(802), + [sym_primitive_type] = ACTIONS(804), + [anon_sym_for] = ACTIONS(804), + [anon_sym_break] = ACTIONS(804), + [aux_sym_preproc_include_token1] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_static] = ACTIONS(804), + [anon_sym_register] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(802), + [anon_sym_if] = ACTIONS(804), + [anon_sym_switch] = ACTIONS(804), + [sym_true] = ACTIONS(804), + [anon_sym_enum] = ACTIONS(804), + [sym_null] = ACTIONS(804), + [anon_sym_return] = ACTIONS(804), + [anon_sym_continue] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(802), + [aux_sym_preproc_def_token1] = ACTIONS(804), + [anon_sym_auto] = ACTIONS(804), + [anon_sym_inline] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(804), + }, + [588] = { + [sym_false] = ACTIONS(816), + [anon_sym_restrict] = ACTIONS(816), + [sym_identifier] = ACTIONS(816), + [anon_sym_goto] = ACTIONS(816), + [aux_sym_preproc_if_token2] = ACTIONS(816), + [anon_sym_const] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(818), + [anon_sym__Atomic] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(816), + [sym_number_literal] = ACTIONS(818), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(816), + [anon_sym_PLUS_PLUS] = ACTIONS(818), + [anon_sym_struct] = ACTIONS(816), + [anon_sym_signed] = ACTIONS(816), + [anon_sym_long] = ACTIONS(816), + [anon_sym_while] = ACTIONS(816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(816), + [aux_sym_preproc_elif_token1] = ACTIONS(816), + [anon_sym_L] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(816), + [anon_sym_sizeof] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsigned] = ACTIONS(816), + [anon_sym_short] = ACTIONS(816), + [anon_sym_do] = ACTIONS(816), + [aux_sym_preproc_else_token1] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(818), + [anon_sym_else] = ACTIONS(816), + [sym_primitive_type] = ACTIONS(816), + [anon_sym_for] = ACTIONS(816), + [anon_sym_break] = ACTIONS(816), + [aux_sym_preproc_include_token1] = ACTIONS(816), + [anon_sym_BANG] = ACTIONS(818), + [anon_sym_static] = ACTIONS(816), + [anon_sym_register] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_if] = ACTIONS(816), + [anon_sym_switch] = ACTIONS(816), + [sym_true] = ACTIONS(816), + [anon_sym_enum] = ACTIONS(816), + [sym_null] = ACTIONS(816), + [anon_sym_return] = ACTIONS(816), + [anon_sym_continue] = ACTIONS(816), + [anon_sym_SEMI] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(816), + [anon_sym_auto] = ACTIONS(816), + [anon_sym_inline] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + }, + [589] = { + [sym_false] = ACTIONS(850), + [anon_sym_restrict] = ACTIONS(850), + [sym_identifier] = ACTIONS(850), + [anon_sym_goto] = ACTIONS(850), + [aux_sym_preproc_if_token2] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_typedef] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(852), + [anon_sym__Atomic] = ACTIONS(850), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(850), + [sym_number_literal] = ACTIONS(852), + [anon_sym_volatile] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_PLUS_PLUS] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(850), + [anon_sym_signed] = ACTIONS(850), + [anon_sym_long] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [aux_sym_preproc_ifdef_token2] = ACTIONS(850), + [aux_sym_preproc_elif_token1] = ACTIONS(850), + [anon_sym_L] = ACTIONS(850), + [anon_sym___attribute__] = ACTIONS(850), + [anon_sym_sizeof] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_union] = ACTIONS(850), + [anon_sym_unsigned] = ACTIONS(850), + [anon_sym_short] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [aux_sym_preproc_else_token1] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [sym_preproc_directive] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(852), + [aux_sym_preproc_if_token1] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(852), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_else] = ACTIONS(850), + [sym_primitive_type] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_static] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_if] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(850), + [sym_true] = ACTIONS(850), + [anon_sym_enum] = ACTIONS(850), + [sym_null] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(852), + [aux_sym_preproc_def_token1] = ACTIONS(850), + [anon_sym_auto] = ACTIONS(850), + [anon_sym_inline] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + }, + [590] = { + [sym_false] = ACTIONS(856), + [anon_sym_restrict] = ACTIONS(856), + [sym_identifier] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(856), + [aux_sym_preproc_if_token2] = ACTIONS(856), + [anon_sym_const] = ACTIONS(856), + [anon_sym_typedef] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym__Atomic] = ACTIONS(856), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(856), + [sym_number_literal] = ACTIONS(858), + [anon_sym_volatile] = ACTIONS(856), + [anon_sym_SQUOTE] = ACTIONS(858), + [anon_sym_extern] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_struct] = ACTIONS(856), + [anon_sym_signed] = ACTIONS(856), + [anon_sym_long] = ACTIONS(856), + [anon_sym_while] = ACTIONS(856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(856), + [aux_sym_preproc_elif_token1] = ACTIONS(856), + [anon_sym_L] = ACTIONS(856), + [anon_sym___attribute__] = ACTIONS(856), + [anon_sym_sizeof] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_union] = ACTIONS(856), + [anon_sym_unsigned] = ACTIONS(856), + [anon_sym_short] = ACTIONS(856), + [anon_sym_do] = ACTIONS(856), + [aux_sym_preproc_else_token1] = ACTIONS(856), + [anon_sym_TILDE] = ACTIONS(858), + [sym_preproc_directive] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [aux_sym_preproc_if_token1] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(858), + [anon_sym_LPAREN2] = ACTIONS(858), + [anon_sym_else] = ACTIONS(856), + [sym_primitive_type] = ACTIONS(856), + [anon_sym_for] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [aux_sym_preproc_include_token1] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_static] = ACTIONS(856), + [anon_sym_register] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(858), + [anon_sym_if] = ACTIONS(856), + [anon_sym_switch] = ACTIONS(856), + [sym_true] = ACTIONS(856), + [anon_sym_enum] = ACTIONS(856), + [sym_null] = ACTIONS(856), + [anon_sym_return] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(858), + [aux_sym_preproc_def_token1] = ACTIONS(856), + [anon_sym_auto] = ACTIONS(856), + [anon_sym_inline] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), + }, + [591] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(862), + [anon_sym_union] = ACTIONS(862), + [anon_sym_unsigned] = ACTIONS(862), + [anon_sym_restrict] = ACTIONS(862), + [anon_sym_short] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_volatile] = ACTIONS(862), + [anon_sym_register] = ACTIONS(862), + [anon_sym_extern] = ACTIONS(862), + [sym_identifier] = ACTIONS(862), + [anon_sym_struct] = ACTIONS(862), + [sym_preproc_directive] = ACTIONS(862), + [anon_sym_signed] = ACTIONS(862), + [aux_sym_preproc_if_token1] = ACTIONS(862), + [anon_sym_long] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_const] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(862), + [anon_sym__Atomic] = ACTIONS(862), + [anon_sym_auto] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(862), + [anon_sym_inline] = ACTIONS(862), + [anon_sym___attribute__] = ACTIONS(862), + [sym_comment] = ACTIONS(3), + }, + [592] = { + [sym_false] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [sym_identifier] = ACTIONS(866), + [anon_sym_goto] = ACTIONS(866), + [aux_sym_preproc_if_token2] = ACTIONS(866), + [anon_sym_const] = ACTIONS(866), + [anon_sym_typedef] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym__Atomic] = ACTIONS(866), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(866), + [sym_number_literal] = ACTIONS(864), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_SQUOTE] = ACTIONS(864), + [anon_sym_extern] = ACTIONS(866), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_struct] = ACTIONS(866), + [anon_sym_signed] = ACTIONS(866), + [anon_sym_long] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [aux_sym_preproc_ifdef_token2] = ACTIONS(866), + [aux_sym_preproc_elif_token1] = ACTIONS(866), + [anon_sym_L] = ACTIONS(866), + [anon_sym___attribute__] = ACTIONS(866), + [anon_sym_sizeof] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsigned] = ACTIONS(866), + [anon_sym_short] = ACTIONS(866), + [anon_sym_do] = ACTIONS(866), + [aux_sym_preproc_else_token1] = ACTIONS(866), + [anon_sym_TILDE] = ACTIONS(864), + [sym_preproc_directive] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(864), + [aux_sym_preproc_if_token1] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(864), + [anon_sym_LPAREN2] = ACTIONS(864), + [sym_primitive_type] = ACTIONS(866), + [anon_sym_for] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [aux_sym_preproc_include_token1] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_static] = ACTIONS(866), + [anon_sym_register] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_if] = ACTIONS(866), + [anon_sym_switch] = ACTIONS(866), + [sym_true] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [sym_null] = ACTIONS(866), + [anon_sym_return] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(864), + [aux_sym_preproc_def_token1] = ACTIONS(866), + [anon_sym_auto] = ACTIONS(866), + [anon_sym_inline] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + }, + [593] = { + [anon_sym_case] = ACTIONS(918), + [sym_false] = ACTIONS(918), + [anon_sym_restrict] = ACTIONS(918), + [sym_identifier] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym_default] = ACTIONS(918), + [anon_sym__Atomic] = ACTIONS(918), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [sym_number_literal] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_signed] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [anon_sym_L] = ACTIONS(918), + [anon_sym___attribute__] = ACTIONS(918), + [anon_sym_sizeof] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_union] = ACTIONS(918), + [anon_sym_unsigned] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_else] = ACTIONS(918), + [sym_primitive_type] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_static] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_if] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(918), + [sym_true] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [sym_null] = ACTIONS(918), + [ts_builtin_sym_end] = ACTIONS(920), + [anon_sym_return] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [anon_sym_auto] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + }, + [594] = { + [anon_sym_LBRACE] = ACTIONS(967), [anon_sym_union] = ACTIONS(965), + [anon_sym_sizeof] = ACTIONS(965), [anon_sym_unsigned] = ACTIONS(965), + [anon_sym_restrict] = ACTIONS(965), [anon_sym_short] = ACTIONS(965), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), [anon_sym_do] = ACTIONS(965), - [aux_sym_preproc_else_token1] = ACTIONS(965), - [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_goto] = ACTIONS(965), + [sym_identifier] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), [sym_preproc_directive] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(967), [aux_sym_preproc_if_token1] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(963), - [sym_true] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_LPAREN2] = ACTIONS(967), + [anon_sym_typedef] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym__Atomic] = ACTIONS(965), [sym_primitive_type] = ACTIONS(965), + [sym_comment] = ACTIONS(3), [anon_sym_for] = ACTIONS(965), [anon_sym_break] = ACTIONS(965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(965), [aux_sym_preproc_include_token1] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_static] = ACTIONS(965), + [anon_sym_volatile] = ACTIONS(965), [anon_sym_register] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_STAR] = ACTIONS(963), + [anon_sym_extern] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(967), [anon_sym_if] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), [anon_sym_switch] = ACTIONS(965), - [sym_false] = ACTIONS(965), + [anon_sym_signed] = ACTIONS(965), [anon_sym_enum] = ACTIONS(965), - [sym_identifier] = ACTIONS(965), + [anon_sym_long] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(967), [anon_sym_return] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), [anon_sym_continue] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(963), + [aux_sym_preproc_ifdef_token2] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [sym_number_literal] = ACTIONS(967), [aux_sym_preproc_def_token1] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(967), [anon_sym_auto] = ACTIONS(965), + [anon_sym_L] = ACTIONS(965), [anon_sym_inline] = ACTIONS(965), + [anon_sym___attribute__] = ACTIONS(965), [anon_sym_DASH] = ACTIONS(965), }, - [585] = { - [sym_null] = ACTIONS(967), - [anon_sym_restrict] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(967), - [aux_sym_preproc_if_token2] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_typedef] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym__Atomic] = ACTIONS(967), - [aux_sym_preproc_ifdef_token1] = ACTIONS(967), - [sym_number_literal] = ACTIONS(969), - [anon_sym_volatile] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_signed] = ACTIONS(967), - [anon_sym_long] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(967), - [aux_sym_preproc_elif_token1] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [anon_sym___attribute__] = ACTIONS(967), - [anon_sym_sizeof] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsigned] = ACTIONS(967), - [anon_sym_short] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [aux_sym_preproc_else_token1] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(969), - [sym_preproc_directive] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), - [aux_sym_preproc_if_token1] = ACTIONS(967), - [anon_sym_LPAREN2] = ACTIONS(969), - [anon_sym_else] = ACTIONS(2244), - [sym_true] = ACTIONS(967), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [aux_sym_preproc_include_token1] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_static] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_if] = ACTIONS(967), - [anon_sym_switch] = ACTIONS(967), - [sym_false] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [sym_identifier] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [aux_sym_preproc_def_token1] = ACTIONS(967), - [anon_sym_auto] = ACTIONS(967), - [anon_sym_inline] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - }, - [586] = { - [sym_null] = ACTIONS(1011), - [anon_sym_restrict] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1011), - [aux_sym_preproc_if_token2] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_typedef] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym__Atomic] = ACTIONS(1011), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1011), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_volatile] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_signed] = ACTIONS(1011), - [anon_sym_long] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1011), - [aux_sym_preproc_elif_token1] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym___attribute__] = ACTIONS(1011), - [anon_sym_sizeof] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_unsigned] = ACTIONS(1011), - [anon_sym_short] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [aux_sym_preproc_else_token1] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [sym_preproc_directive] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1013), - [aux_sym_preproc_if_token1] = ACTIONS(1011), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_else] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [sym_primitive_type] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [aux_sym_preproc_include_token1] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_switch] = ACTIONS(1011), - [sym_false] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [aux_sym_preproc_def_token1] = ACTIONS(1011), - [anon_sym_auto] = ACTIONS(1011), - [anon_sym_inline] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), + [595] = { + [sym_false] = ACTIONS(986), + [anon_sym_restrict] = ACTIONS(986), + [sym_identifier] = ACTIONS(986), + [anon_sym_goto] = ACTIONS(986), + [aux_sym_preproc_if_token2] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(986), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(986), + [sym_number_literal] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(986), + [anon_sym_signed] = ACTIONS(986), + [anon_sym_long] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(986), + [aux_sym_preproc_elif_token1] = ACTIONS(986), + [anon_sym_L] = ACTIONS(986), + [anon_sym___attribute__] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_union] = ACTIONS(986), + [anon_sym_unsigned] = ACTIONS(986), + [anon_sym_short] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [aux_sym_preproc_else_token1] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [aux_sym_preproc_include_token1] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_static] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_if] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(986), + [sym_true] = ACTIONS(986), + [anon_sym_enum] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(986), + [anon_sym_auto] = ACTIONS(986), + [anon_sym_inline] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), }, - [587] = { - [sym_null] = ACTIONS(1035), - [anon_sym_restrict] = ACTIONS(1035), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1035), - [aux_sym_preproc_if_token2] = ACTIONS(1035), - [anon_sym_const] = ACTIONS(1035), - [anon_sym_typedef] = ACTIONS(1035), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [anon_sym__Atomic] = ACTIONS(1035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1035), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_volatile] = ACTIONS(1035), - [anon_sym_extern] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1035), - [anon_sym_signed] = ACTIONS(1035), - [anon_sym_long] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(1035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1035), - [aux_sym_preproc_elif_token1] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym___attribute__] = ACTIONS(1035), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1035), - [anon_sym_unsigned] = ACTIONS(1035), - [anon_sym_short] = ACTIONS(1035), - [anon_sym_do] = ACTIONS(1035), - [aux_sym_preproc_else_token1] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1035), - [anon_sym_LPAREN2] = ACTIONS(1037), - [anon_sym_else] = ACTIONS(1035), - [sym_true] = ACTIONS(1035), - [sym_primitive_type] = ACTIONS(1035), - [anon_sym_for] = ACTIONS(1035), - [anon_sym_break] = ACTIONS(1035), - [aux_sym_preproc_include_token1] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1035), - [anon_sym_register] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1035), - [sym_false] = ACTIONS(1035), - [anon_sym_enum] = ACTIONS(1035), - [sym_identifier] = ACTIONS(1035), - [anon_sym_return] = ACTIONS(1035), - [anon_sym_continue] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1035), - [anon_sym_auto] = ACTIONS(1035), - [anon_sym_inline] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), + [596] = { + [sym_false] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [sym_identifier] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym__Atomic] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [sym_number_literal] = ACTIONS(994), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [aux_sym_preproc_elif_token1] = ACTIONS(996), + [anon_sym_L] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_union] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [aux_sym_preproc_else_token1] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(994), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(994), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_static] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_if] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [sym_true] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), }, - [588] = { - [sym_null] = ACTIONS(1039), - [anon_sym_restrict] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1039), - [aux_sym_preproc_if_token2] = ACTIONS(1039), - [anon_sym_const] = ACTIONS(1039), - [anon_sym_typedef] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1041), - [anon_sym__Atomic] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_volatile] = ACTIONS(1039), - [anon_sym_extern] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1039), - [anon_sym_signed] = ACTIONS(1039), - [anon_sym_long] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [aux_sym_preproc_elif_token1] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym___attribute__] = ACTIONS(1039), - [anon_sym_sizeof] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1039), - [anon_sym_unsigned] = ACTIONS(1039), - [anon_sym_short] = ACTIONS(1039), - [anon_sym_do] = ACTIONS(1039), - [aux_sym_preproc_else_token1] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [anon_sym_LPAREN2] = ACTIONS(1041), - [anon_sym_else] = ACTIONS(1039), - [sym_true] = ACTIONS(1039), - [sym_primitive_type] = ACTIONS(1039), - [anon_sym_for] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(1039), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_register] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_enum] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1039), - [anon_sym_return] = ACTIONS(1039), - [anon_sym_continue] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [anon_sym_auto] = ACTIONS(1039), - [anon_sym_inline] = ACTIONS(1039), - [anon_sym_DASH] = ACTIONS(1039), + [597] = { + [sym_false] = ACTIONS(998), + [anon_sym_restrict] = ACTIONS(998), + [sym_identifier] = ACTIONS(998), + [anon_sym_goto] = ACTIONS(998), + [aux_sym_preproc_if_token2] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(998), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(998), + [anon_sym_signed] = ACTIONS(998), + [anon_sym_long] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(998), + [aux_sym_preproc_elif_token1] = ACTIONS(998), + [anon_sym_L] = ACTIONS(998), + [anon_sym___attribute__] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(998), + [anon_sym_unsigned] = ACTIONS(998), + [anon_sym_short] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [aux_sym_preproc_else_token1] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(2292), + [sym_primitive_type] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [aux_sym_preproc_include_token1] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(998), + [anon_sym_switch] = ACTIONS(998), + [sym_true] = ACTIONS(998), + [anon_sym_enum] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(998), + [anon_sym_auto] = ACTIONS(998), + [anon_sym_inline] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), }, - [589] = { - [sym_null] = ACTIONS(1043), - [anon_sym_restrict] = ACTIONS(1043), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1043), - [aux_sym_preproc_if_token2] = ACTIONS(1043), - [anon_sym_const] = ACTIONS(1043), - [anon_sym_typedef] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1045), - [anon_sym__Atomic] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [sym_number_literal] = ACTIONS(1045), - [anon_sym_volatile] = ACTIONS(1043), - [anon_sym_extern] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1043), - [anon_sym_signed] = ACTIONS(1043), - [anon_sym_long] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [aux_sym_preproc_elif_token1] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1045), - [anon_sym___attribute__] = ACTIONS(1043), - [anon_sym_sizeof] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1043), - [anon_sym_unsigned] = ACTIONS(1043), - [anon_sym_short] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1043), - [aux_sym_preproc_else_token1] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1045), - [sym_preproc_directive] = ACTIONS(1043), - [anon_sym_AMP] = ACTIONS(1045), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [anon_sym_LPAREN2] = ACTIONS(1045), - [anon_sym_else] = ACTIONS(1043), - [sym_true] = ACTIONS(1043), - [sym_primitive_type] = ACTIONS(1043), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_break] = ACTIONS(1043), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_register] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(1043), - [sym_false] = ACTIONS(1043), - [anon_sym_enum] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_continue] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1045), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [anon_sym_auto] = ACTIONS(1043), - [anon_sym_inline] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), + [598] = { + [sym_false] = ACTIONS(1042), + [anon_sym_restrict] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1042), + [anon_sym_goto] = ACTIONS(1042), + [aux_sym_preproc_if_token2] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), + [sym_number_literal] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1042), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), + [aux_sym_preproc_elif_token1] = ACTIONS(1042), + [anon_sym_L] = ACTIONS(1042), + [anon_sym___attribute__] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [aux_sym_preproc_else_token1] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1042), + [sym_true] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [sym_null] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1042), + [anon_sym_auto] = ACTIONS(1042), + [anon_sym_inline] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), }, - [590] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [anon_sym_union] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym_short] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1051), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1051), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [anon_sym_const] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1049), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [anon_sym__Atomic] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [anon_sym_inline] = ACTIONS(1051), - [anon_sym___attribute__] = ACTIONS(1051), + [599] = { + [sym_false] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [sym_identifier] = 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_comment] = ACTIONS(3), + [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), + [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] = ACTIONS(1062), + [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), + [anon_sym_TILDE] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1062), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_switch] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [sym_null] = 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_auto] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), }, - [591] = { - [sym_null] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [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), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [sym_number_literal] = ACTIONS(1130), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_signed] = ACTIONS(1128), - [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_SQUOTE] = ACTIONS(1130), - [anon_sym_DQUOTE] = 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), - [anon_sym_TILDE] = ACTIONS(1130), - [sym_preproc_directive] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1130), - [aux_sym_preproc_if_token1] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [sym_true] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [sym_identifier] = 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_auto] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), + [600] = { + [sym_false] = ACTIONS(1066), + [anon_sym_restrict] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1066), + [anon_sym_goto] = ACTIONS(1066), + [aux_sym_preproc_if_token2] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1066), + [sym_number_literal] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1066), + [anon_sym_signed] = ACTIONS(1066), + [anon_sym_long] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1066), + [aux_sym_preproc_elif_token1] = ACTIONS(1066), + [anon_sym_L] = ACTIONS(1066), + [anon_sym___attribute__] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1066), + [anon_sym_unsigned] = ACTIONS(1066), + [anon_sym_short] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [aux_sym_preproc_else_token1] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [aux_sym_preproc_include_token1] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_switch] = ACTIONS(1066), + [sym_true] = ACTIONS(1066), + [anon_sym_enum] = ACTIONS(1066), + [sym_null] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1066), + [anon_sym_auto] = ACTIONS(1066), + [anon_sym_inline] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), }, - [592] = { - [sym_null] = ACTIONS(1144), - [anon_sym_restrict] = ACTIONS(1144), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1144), - [aux_sym_preproc_if_token2] = ACTIONS(1144), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_typedef] = ACTIONS(1144), - [anon_sym_DASH_DASH] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1144), - [sym_number_literal] = ACTIONS(1142), - [anon_sym_volatile] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1144), - [aux_sym_preproc_elif_token1] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_DQUOTE] = ACTIONS(1142), - [anon_sym___attribute__] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [aux_sym_preproc_else_token1] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1142), - [sym_preproc_directive] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(1142), - [sym_true] = ACTIONS(1144), - [sym_primitive_type] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [aux_sym_preproc_include_token1] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_register] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(1144), - [sym_false] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1144), - [anon_sym_auto] = ACTIONS(1144), - [anon_sym_inline] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1144), + [601] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), }, - [593] = { - [sym__declaration_specifiers] = STATE(851), - [sym_preproc_def] = STATE(593), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(593), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(593), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [sym_preproc_call] = STATE(593), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(593), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(593), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(593), - [sym_field_declaration] = STATE(593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2246), - [anon_sym_union] = ACTIONS(1175), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_register] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(2156), - [sym_preproc_directive] = ACTIONS(2249), - [anon_sym_signed] = ACTIONS(1178), - [aux_sym_preproc_if_token1] = ACTIONS(2252), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1187), - [sym_identifier] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2246), - [aux_sym_preproc_def_token1] = ACTIONS(2255), - [anon_sym__Atomic] = ACTIONS(1181), - [anon_sym_auto] = ACTIONS(1184), - [sym_primitive_type] = ACTIONS(1207), - [anon_sym_inline] = ACTIONS(1184), - [anon_sym___attribute__] = ACTIONS(1210), + [602] = { + [sym_false] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [aux_sym_preproc_if_token2] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym__Atomic] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [sym_number_literal] = ACTIONS(1160), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [aux_sym_preproc_elif_token1] = ACTIONS(1158), + [anon_sym_L] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [aux_sym_preproc_else_token1] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1160), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym_LPAREN2] = ACTIONS(1160), + [sym_primitive_type] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [sym_true] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1160), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), }, - [594] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1221), - [sym_preproc_directive] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1221), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), + [603] = { + [sym_false] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [aux_sym_preproc_if_token2] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym__Atomic] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [sym_number_literal] = ACTIONS(1172), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [aux_sym_preproc_elif_token1] = ACTIONS(1174), + [anon_sym_L] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [aux_sym_preproc_else_token1] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1172), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1172), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1172), + [anon_sym_LPAREN2] = ACTIONS(1172), + [sym_primitive_type] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [sym_true] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [sym_null] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1172), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), }, - [595] = { - [sym_null] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1239), - [aux_sym_preproc_if_token2] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym__Atomic] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [aux_sym_preproc_elif_token1] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [aux_sym_preproc_else_token1] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1239), - [sym_true] = ACTIONS(1239), - [sym_primitive_type] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_switch] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [sym_identifier] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), + [604] = { + [sym__declaration_specifiers] = STATE(868), + [sym_preproc_def] = STATE(604), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(604), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(604), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [sym_preproc_call] = STATE(604), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(604), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(604), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(604), + [sym_field_declaration] = STATE(604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(1205), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1217), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [sym_preproc_directive] = ACTIONS(2297), + [anon_sym_signed] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(2300), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), + [aux_sym_preproc_def_token1] = ACTIONS(2303), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym___attribute__] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), }, - [596] = { - [sym_null] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1249), - [aux_sym_preproc_if_token2] = ACTIONS(1249), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [sym_number_literal] = ACTIONS(1247), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [aux_sym_preproc_elif_token1] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_DQUOTE] = ACTIONS(1247), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [aux_sym_preproc_else_token1] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1247), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1247), - [sym_true] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1249), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1247), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), + [605] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_if_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_signed] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), }, - [597] = { - [sym_null] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1311), - [aux_sym_preproc_if_token2] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [aux_sym_preproc_elif_token1] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [aux_sym_preproc_else_token1] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1313), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1313), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1313), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), + [606] = { + [sym_false] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [aux_sym_preproc_if_token2] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1273), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [aux_sym_preproc_elif_token1] = ACTIONS(1273), + [anon_sym_L] = ACTIONS(1273), + [anon_sym___attribute__] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_short] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [aux_sym_preproc_else_token1] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1273), + [sym_true] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [sym_null] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [anon_sym_auto] = ACTIONS(1273), + [anon_sym_inline] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), }, - [598] = { - [sym_null] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1339), - [aux_sym_preproc_if_token2] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [aux_sym_preproc_elif_token1] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [aux_sym_preproc_else_token1] = ACTIONS(1339), - [anon_sym_TILDE] = ACTIONS(1337), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1337), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1337), - [sym_true] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1337), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), + [607] = { + [sym_false] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [sym_identifier] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [aux_sym_preproc_if_token2] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym__Atomic] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [aux_sym_preproc_elif_token1] = ACTIONS(1283), + [anon_sym_L] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [aux_sym_preproc_else_token1] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1281), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1281), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_LPAREN2] = ACTIONS(1281), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [sym_null] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1281), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), }, - [599] = { - [sym_null] = ACTIONS(1345), + [608] = { + [sym_false] = ACTIONS(1345), [anon_sym_restrict] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1345), [anon_sym_goto] = ACTIONS(1345), [aux_sym_preproc_if_token2] = ACTIONS(1345), [anon_sym_const] = ACTIONS(1345), [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1347), [anon_sym__Atomic] = ACTIONS(1345), + [sym_comment] = ACTIONS(3), [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1347), [anon_sym_volatile] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), [anon_sym_extern] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), [anon_sym_struct] = ACTIONS(1345), [anon_sym_signed] = ACTIONS(1345), [anon_sym_long] = ACTIONS(1345), [anon_sym_while] = ACTIONS(1345), [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), [aux_sym_preproc_elif_token1] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), + [anon_sym_L] = ACTIONS(1345), [anon_sym___attribute__] = ACTIONS(1345), [anon_sym_sizeof] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1347), [anon_sym_union] = ACTIONS(1345), [anon_sym_unsigned] = ACTIONS(1345), [anon_sym_short] = ACTIONS(1345), [anon_sym_do] = ACTIONS(1345), [aux_sym_preproc_else_token1] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1347), [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1347), [aux_sym_preproc_if_token1] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1343), - [sym_true] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1347), [sym_primitive_type] = ACTIONS(1345), [anon_sym_for] = ACTIONS(1345), [anon_sym_break] = ACTIONS(1345), [aux_sym_preproc_include_token1] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1347), [anon_sym_static] = ACTIONS(1345), [anon_sym_register] = ACTIONS(1345), [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1347), [anon_sym_if] = ACTIONS(1345), [anon_sym_switch] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), + [sym_true] = ACTIONS(1345), [anon_sym_enum] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1345), + [sym_null] = ACTIONS(1345), [anon_sym_return] = ACTIONS(1345), [anon_sym_continue] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1347), [aux_sym_preproc_def_token1] = ACTIONS(1345), [anon_sym_auto] = ACTIONS(1345), [anon_sym_inline] = ACTIONS(1345), [anon_sym_DASH] = ACTIONS(1345), }, - [600] = { - [sym_while_statement] = STATE(613), - [sym_continue_statement] = STATE(613), - [sym_goto_statement] = STATE(613), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(613), - [sym_expression_statement] = STATE(613), - [sym_if_statement] = STATE(613), - [sym_do_statement] = STATE(613), - [sym_for_statement] = STATE(613), - [sym__expression] = STATE(834), - [sym_comma_expression] = STATE(833), - [sym_bitwise_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(834), - [sym_concatenated_string] = STATE(834), - [sym_switch_statement] = STATE(613), - [sym_return_statement] = STATE(613), - [sym_break_statement] = STATE(613), - [sym_conditional_expression] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(613), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_null] = ACTIONS(398), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(398), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(408), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [sym_identifier] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [601] = { - [sym_null] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1353), - [aux_sym_preproc_if_token2] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [aux_sym_preproc_elif_token1] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [aux_sym_preproc_else_token1] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_else] = ACTIONS(1353), - [sym_true] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), + [609] = { + [sym_false] = ACTIONS(1373), + [anon_sym_restrict] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1373), + [aux_sym_preproc_if_token2] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_typedef] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym__Atomic] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1371), + [anon_sym_volatile] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_signed] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), + [aux_sym_preproc_elif_token1] = ACTIONS(1373), + [anon_sym_L] = ACTIONS(1373), + [anon_sym___attribute__] = ACTIONS(1373), + [anon_sym_sizeof] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_unsigned] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [aux_sym_preproc_else_token1] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1371), + [sym_preproc_directive] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [aux_sym_preproc_if_token1] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_LPAREN2] = ACTIONS(1371), + [sym_primitive_type] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [sym_true] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [sym_null] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1371), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [anon_sym_auto] = ACTIONS(1373), + [anon_sym_inline] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), }, - [602] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), - [anon_sym_union] = ACTIONS(1379), - [anon_sym_unsigned] = ACTIONS(1379), + [610] = { + [sym_false] = ACTIONS(1379), [anon_sym_restrict] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1379), + [aux_sym_preproc_if_token2] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_typedef] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym__Atomic] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), + [sym_number_literal] = ACTIONS(1377), [anon_sym_volatile] = ACTIONS(1379), - [anon_sym_register] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1377), [anon_sym_extern] = ACTIONS(1379), - [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_struct] = ACTIONS(1379), - [sym_preproc_directive] = ACTIONS(1379), [anon_sym_signed] = ACTIONS(1379), - [aux_sym_preproc_if_token1] = ACTIONS(1379), [anon_sym_long] = ACTIONS(1379), - [anon_sym_enum] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1379), [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [anon_sym__Atomic] = ACTIONS(1379), - [anon_sym_auto] = ACTIONS(1379), - [sym_primitive_type] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), + [aux_sym_preproc_elif_token1] = ACTIONS(1379), + [anon_sym_L] = ACTIONS(1379), [anon_sym___attribute__] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_union] = ACTIONS(1379), + [anon_sym_unsigned] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [aux_sym_preproc_else_token1] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1377), + [sym_preproc_directive] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [aux_sym_preproc_if_token1] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1377), + [sym_primitive_type] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [aux_sym_preproc_include_token1] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_register] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [sym_true] = ACTIONS(1379), + [anon_sym_enum] = ACTIONS(1379), + [sym_null] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1377), + [aux_sym_preproc_def_token1] = ACTIONS(1379), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_inline] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), }, - [603] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1391), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_unsigned] = ACTIONS(1391), - [anon_sym_restrict] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_volatile] = ACTIONS(1391), - [anon_sym_register] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1391), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1391), - [sym_preproc_directive] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1391), - [aux_sym_preproc_if_token1] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1389), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1391), - [aux_sym_preproc_def_token1] = ACTIONS(1391), - [anon_sym__Atomic] = ACTIONS(1391), - [anon_sym_auto] = ACTIONS(1391), - [sym_primitive_type] = ACTIONS(1391), - [anon_sym_inline] = ACTIONS(1391), - [anon_sym___attribute__] = ACTIONS(1391), - }, - [604] = { - [sym_null] = ACTIONS(1435), - [anon_sym_restrict] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1435), - [aux_sym_preproc_if_token2] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_typedef] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym__Atomic] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), - [sym_number_literal] = ACTIONS(1437), - [anon_sym_volatile] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym___attribute__] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_unsigned] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1437), - [sym_true] = ACTIONS(1435), - [sym_primitive_type] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [aux_sym_preproc_include_token1] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_register] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [sym_false] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1435), - [anon_sym_auto] = ACTIONS(1435), - [anon_sym_inline] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - }, - [605] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - }, - [606] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_signed] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - }, - [607] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsigned] = ACTIONS(1478), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym_short] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1478), - [sym_preproc_directive] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1478), - [aux_sym_preproc_if_token1] = ACTIONS(1478), - [anon_sym_long] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), - [aux_sym_preproc_def_token1] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym_auto] = ACTIONS(1478), - [sym_primitive_type] = ACTIONS(1478), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym___attribute__] = ACTIONS(1478), - }, - [608] = { - [sym_null] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym__Atomic] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [aux_sym_preproc_elif_token1] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [aux_sym_preproc_else_token1] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1498), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1498), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1498), - [sym_true] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - }, - [609] = { - [sym_null] = ACTIONS(1546), - [anon_sym_restrict] = ACTIONS(1546), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1546), - [aux_sym_preproc_if_token2] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_typedef] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1548), - [anon_sym__Atomic] = ACTIONS(1546), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1546), - [sym_number_literal] = ACTIONS(1548), - [anon_sym_volatile] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1548), - [anon_sym_struct] = ACTIONS(1546), - [anon_sym_signed] = ACTIONS(1546), - [anon_sym_long] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1546), - [aux_sym_preproc_elif_token1] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(1548), - [anon_sym___attribute__] = ACTIONS(1546), - [anon_sym_sizeof] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsigned] = ACTIONS(1546), - [anon_sym_short] = ACTIONS(1546), - [anon_sym_do] = ACTIONS(1546), - [aux_sym_preproc_else_token1] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1548), - [sym_preproc_directive] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1548), - [aux_sym_preproc_if_token1] = ACTIONS(1546), - [anon_sym_LPAREN2] = ACTIONS(1548), - [sym_true] = ACTIONS(1546), - [sym_primitive_type] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [aux_sym_preproc_include_token1] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_register] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_switch] = ACTIONS(1546), - [sym_false] = ACTIONS(1546), - [anon_sym_enum] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1548), - [aux_sym_preproc_def_token1] = ACTIONS(1546), - [anon_sym_auto] = ACTIONS(1546), - [anon_sym_inline] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - }, - [610] = { - [sym_while_statement] = STATE(620), - [sym_continue_statement] = STATE(620), - [sym_goto_statement] = STATE(620), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(620), - [sym_expression_statement] = STATE(620), - [sym_if_statement] = STATE(620), - [sym_do_statement] = STATE(620), - [sym_for_statement] = STATE(620), - [sym__expression] = STATE(834), - [sym_comma_expression] = STATE(833), - [sym_bitwise_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(834), - [sym_concatenated_string] = STATE(834), - [sym_switch_statement] = STATE(620), - [sym_return_statement] = STATE(620), - [sym_break_statement] = STATE(620), - [sym_conditional_expression] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(620), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_null] = ACTIONS(398), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), + [611] = { + [sym_while_statement] = STATE(625), + [sym_continue_statement] = STATE(625), + [sym_goto_statement] = STATE(625), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(625), + [sym_expression_statement] = STATE(625), + [sym_if_statement] = STATE(625), + [sym_do_statement] = STATE(625), + [sym_for_statement] = STATE(625), + [sym__expression] = STATE(851), + [sym_comma_expression] = STATE(850), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), + [sym_switch_statement] = STATE(625), + [sym_return_statement] = STATE(625), + [sym_break_statement] = STATE(625), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(625), + [anon_sym_LBRACE] = ACTIONS(428), + [sym_false] = ACTIONS(408), + [sym_identifier] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(430), + [anon_sym_goto] = ACTIONS(412), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(398), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(408), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [sym_identifier] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [611] = { - [sym_null] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1581), - [aux_sym_preproc_if_token2] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1579), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [aux_sym_preproc_elif_token1] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [aux_sym_preproc_else_token1] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1579), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1579), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1579), - [sym_true] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [sym_false] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [sym_identifier] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1579), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [anon_sym_auto] = ACTIONS(1581), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_while] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [612] = { - [sym_null] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1585), - [aux_sym_preproc_if_token2] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym__Atomic] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1583), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [aux_sym_preproc_elif_token1] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [aux_sym_preproc_else_token1] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1583), - [sym_preproc_directive] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1583), - [sym_true] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [sym_identifier] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(1585), - [anon_sym_auto] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), + [sym_false] = ACTIONS(1387), + [anon_sym_restrict] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1387), + [anon_sym_goto] = ACTIONS(1387), + [aux_sym_preproc_if_token2] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_typedef] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym__Atomic] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), + [sym_number_literal] = ACTIONS(1389), + [anon_sym_volatile] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), + [aux_sym_preproc_elif_token1] = ACTIONS(1387), + [anon_sym_L] = ACTIONS(1387), + [anon_sym___attribute__] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [aux_sym_preproc_else_token1] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1389), + [sym_preproc_directive] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [aux_sym_preproc_if_token1] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_LPAREN2] = ACTIONS(1389), + [anon_sym_else] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [aux_sym_preproc_include_token1] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [sym_true] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [sym_null] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1389), + [aux_sym_preproc_def_token1] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), }, [613] = { - [sym_null] = ACTIONS(1587), - [anon_sym_restrict] = ACTIONS(1587), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1587), - [aux_sym_preproc_if_token2] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym__Atomic] = ACTIONS(1587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1587), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_volatile] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_signed] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1587), - [aux_sym_preproc_elif_token1] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym___attribute__] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_unsigned] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [aux_sym_preproc_else_token1] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1589), - [sym_preproc_directive] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1587), - [sym_true] = ACTIONS(1587), - [sym_primitive_type] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [aux_sym_preproc_include_token1] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [anon_sym_enum] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1587), - [anon_sym_auto] = ACTIONS(1587), - [anon_sym_inline] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsigned] = ACTIONS(1409), + [anon_sym_restrict] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_volatile] = ACTIONS(1409), + [anon_sym_register] = ACTIONS(1409), + [anon_sym_extern] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1409), + [anon_sym_struct] = ACTIONS(1409), + [sym_preproc_directive] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1409), + [aux_sym_preproc_if_token1] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [anon_sym__Atomic] = ACTIONS(1409), + [anon_sym_auto] = ACTIONS(1409), + [sym_primitive_type] = ACTIONS(1409), + [anon_sym_inline] = ACTIONS(1409), + [anon_sym___attribute__] = ACTIONS(1409), + [sym_comment] = ACTIONS(3), }, [614] = { - [sym_null] = ACTIONS(1599), - [anon_sym_restrict] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1599), - [aux_sym_preproc_if_token2] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1599), - [sym_number_literal] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1599), - [anon_sym_extern] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1599), - [anon_sym_signed] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1599), - [aux_sym_preproc_elif_token1] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_unsigned] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [aux_sym_preproc_else_token1] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [sym_preproc_directive] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1599), - [sym_true] = ACTIONS(1599), - [sym_primitive_type] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [aux_sym_preproc_include_token1] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_register] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [anon_sym_enum] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [aux_sym_preproc_def_token1] = ACTIONS(1599), - [anon_sym_auto] = ACTIONS(1599), - [anon_sym_inline] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [sym_preproc_directive] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1421), + [aux_sym_preproc_if_token1] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), + [aux_sym_preproc_def_token1] = ACTIONS(1421), + [anon_sym__Atomic] = ACTIONS(1421), + [anon_sym_auto] = ACTIONS(1421), + [sym_primitive_type] = ACTIONS(1421), + [anon_sym_inline] = ACTIONS(1421), + [anon_sym___attribute__] = ACTIONS(1421), + [sym_comment] = ACTIONS(3), }, [615] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [anon_sym__Atomic] = ACTIONS(1703), - [anon_sym_auto] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_sizeof] = ACTIONS(1429), + [anon_sym_unsigned] = ACTIONS(1429), + [anon_sym_restrict] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [sym_true] = ACTIONS(1429), + [sym_false] = ACTIONS(1429), + [sym_null] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_goto] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1431), + [sym_preproc_directive] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [aux_sym_preproc_if_token1] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_typedef] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym__Atomic] = ACTIONS(1429), + [sym_primitive_type] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), + [aux_sym_preproc_include_token1] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_volatile] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_signed] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [sym_number_literal] = ACTIONS(1431), + [aux_sym_preproc_def_token1] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_auto] = ACTIONS(1429), + [anon_sym_L] = ACTIONS(1429), + [anon_sym_inline] = ACTIONS(1429), + [anon_sym___attribute__] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), }, [616] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_unsigned] = ACTIONS(1729), - [anon_sym_restrict] = ACTIONS(1729), - [anon_sym_short] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_volatile] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1729), - [sym_preproc_directive] = ACTIONS(1729), - [anon_sym_signed] = ACTIONS(1729), - [aux_sym_preproc_if_token1] = ACTIONS(1729), - [anon_sym_long] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [sym_identifier] = ACTIONS(1729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1729), - [aux_sym_preproc_def_token1] = ACTIONS(1729), - [anon_sym__Atomic] = ACTIONS(1729), - [anon_sym_auto] = ACTIONS(1729), - [sym_primitive_type] = ACTIONS(1729), - [anon_sym_inline] = ACTIONS(1729), - [anon_sym___attribute__] = ACTIONS(1729), + [sym_false] = ACTIONS(1473), + [anon_sym_restrict] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1473), + [anon_sym_goto] = ACTIONS(1473), + [aux_sym_preproc_if_token2] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_typedef] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym__Atomic] = ACTIONS(1473), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1473), + [sym_number_literal] = ACTIONS(1475), + [anon_sym_volatile] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_signed] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1473), + [aux_sym_preproc_elif_token1] = ACTIONS(1473), + [anon_sym_L] = ACTIONS(1473), + [anon_sym___attribute__] = ACTIONS(1473), + [anon_sym_sizeof] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_unsigned] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [aux_sym_preproc_else_token1] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1475), + [sym_preproc_directive] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1475), + [aux_sym_preproc_if_token1] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1475), + [sym_primitive_type] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [aux_sym_preproc_include_token1] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [sym_true] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [sym_null] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [aux_sym_preproc_def_token1] = ACTIONS(1473), + [anon_sym_auto] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), }, [617] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_restrict] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1735), - [sym_preproc_directive] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1735), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1735), - [aux_sym_preproc_def_token1] = ACTIONS(1735), - [anon_sym__Atomic] = ACTIONS(1735), - [anon_sym_auto] = ACTIONS(1735), - [sym_primitive_type] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym___attribute__] = ACTIONS(1735), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), }, [618] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_restrict] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_volatile] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1757), - [sym_preproc_directive] = ACTIONS(1757), - [anon_sym_signed] = ACTIONS(1757), - [aux_sym_preproc_if_token1] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1757), - [aux_sym_preproc_def_token1] = ACTIONS(1757), - [anon_sym__Atomic] = ACTIONS(1757), - [anon_sym_auto] = ACTIONS(1757), - [sym_primitive_type] = ACTIONS(1757), - [anon_sym_inline] = ACTIONS(1757), - [anon_sym___attribute__] = ACTIONS(1757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1502), + [aux_sym_preproc_if_token2] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), }, [619] = { - [sym_null] = ACTIONS(1814), - [anon_sym_restrict] = ACTIONS(1814), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1814), - [aux_sym_preproc_if_token2] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_typedef] = ACTIONS(1814), - [anon_sym_DASH_DASH] = ACTIONS(1816), - [anon_sym__Atomic] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1814), - [sym_number_literal] = ACTIONS(1816), - [anon_sym_volatile] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym_PLUS_PLUS] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1814), - [anon_sym_signed] = ACTIONS(1814), - [anon_sym_long] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1814), - [aux_sym_preproc_elif_token1] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DQUOTE] = ACTIONS(1816), - [anon_sym___attribute__] = ACTIONS(1814), - [anon_sym_sizeof] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1814), - [anon_sym_unsigned] = ACTIONS(1814), - [anon_sym_short] = ACTIONS(1814), - [anon_sym_do] = ACTIONS(1814), - [aux_sym_preproc_else_token1] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1816), - [sym_preproc_directive] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1816), - [aux_sym_preproc_if_token1] = ACTIONS(1814), - [anon_sym_LPAREN2] = ACTIONS(1816), - [sym_true] = ACTIONS(1814), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [aux_sym_preproc_include_token1] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1814), - [anon_sym_register] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_switch] = ACTIONS(1814), - [sym_false] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1814), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [anon_sym_SEMI] = ACTIONS(1816), - [aux_sym_preproc_def_token1] = ACTIONS(1814), - [anon_sym_auto] = ACTIONS(1814), - [anon_sym_inline] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), }, [620] = { - [sym_null] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym__Atomic] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [aux_sym_preproc_elif_token1] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym_sizeof] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [aux_sym_preproc_else_token1] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1824), - [sym_preproc_directive] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [sym_true] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), + [sym_false] = ACTIONS(1538), + [anon_sym_restrict] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1538), + [anon_sym_goto] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_typedef] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1536), + [anon_sym_volatile] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1538), + [aux_sym_preproc_elif_token1] = ACTIONS(1538), + [anon_sym_L] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_unsigned] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [aux_sym_preproc_else_token1] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1536), + [sym_preproc_directive] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1536), + [sym_primitive_type] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1538), + [sym_true] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [sym_null] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1538), + [anon_sym_auto] = ACTIONS(1538), + [anon_sym_inline] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), }, [621] = { - [sym_while_statement] = STATE(625), - [sym_continue_statement] = STATE(625), - [sym_goto_statement] = STATE(625), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(625), - [sym_expression_statement] = STATE(625), - [sym_if_statement] = STATE(625), - [sym_do_statement] = STATE(625), - [sym_for_statement] = STATE(625), - [sym__expression] = STATE(834), - [sym_comma_expression] = STATE(833), - [sym_bitwise_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(834), - [sym_concatenated_string] = STATE(834), - [sym_switch_statement] = STATE(625), - [sym_return_statement] = STATE(625), - [sym_break_statement] = STATE(625), - [sym_conditional_expression] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(625), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_null] = ACTIONS(398), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), + [sym_false] = ACTIONS(1584), + [anon_sym_restrict] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1584), + [anon_sym_goto] = ACTIONS(1584), + [aux_sym_preproc_if_token2] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [anon_sym_typedef] = ACTIONS(1584), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym__Atomic] = ACTIONS(1584), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1584), + [sym_number_literal] = ACTIONS(1586), + [anon_sym_volatile] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_struct] = ACTIONS(1584), + [anon_sym_signed] = ACTIONS(1584), + [anon_sym_long] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1584), + [aux_sym_preproc_elif_token1] = ACTIONS(1584), + [anon_sym_L] = ACTIONS(1584), + [anon_sym___attribute__] = ACTIONS(1584), + [anon_sym_sizeof] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_union] = ACTIONS(1584), + [anon_sym_unsigned] = ACTIONS(1584), + [anon_sym_short] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [aux_sym_preproc_else_token1] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1586), + [sym_preproc_directive] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [aux_sym_preproc_if_token1] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1586), + [anon_sym_LPAREN2] = ACTIONS(1586), + [sym_primitive_type] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [aux_sym_preproc_include_token1] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(1584), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_switch] = ACTIONS(1584), + [sym_true] = ACTIONS(1584), + [anon_sym_enum] = ACTIONS(1584), + [sym_null] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1586), + [aux_sym_preproc_def_token1] = ACTIONS(1584), + [anon_sym_auto] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + }, + [622] = { + [sym_while_statement] = STATE(632), + [sym_continue_statement] = STATE(632), + [sym_goto_statement] = STATE(632), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(632), + [sym_expression_statement] = STATE(632), + [sym_if_statement] = STATE(632), + [sym_do_statement] = STATE(632), + [sym_for_statement] = STATE(632), + [sym__expression] = STATE(851), + [sym_comma_expression] = STATE(850), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), + [sym_switch_statement] = STATE(632), + [sym_return_statement] = STATE(632), + [sym_break_statement] = STATE(632), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(632), + [anon_sym_LBRACE] = ACTIONS(428), + [sym_false] = ACTIONS(408), + [sym_identifier] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(430), + [anon_sym_goto] = ACTIONS(412), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(398), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(408), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [sym_identifier] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_while] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [622] = { + [623] = { + [sym_false] = ACTIONS(1619), + [anon_sym_restrict] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1619), + [anon_sym_goto] = ACTIONS(1619), + [aux_sym_preproc_if_token2] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym__Atomic] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1619), + [sym_number_literal] = ACTIONS(1617), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_struct] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1619), + [aux_sym_preproc_elif_token1] = ACTIONS(1619), + [anon_sym_L] = ACTIONS(1619), + [anon_sym___attribute__] = ACTIONS(1619), + [anon_sym_sizeof] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [aux_sym_preproc_else_token1] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1617), + [sym_preproc_directive] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [aux_sym_preproc_if_token1] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(1617), + [sym_primitive_type] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [aux_sym_preproc_include_token1] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1619), + [sym_true] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1617), + [aux_sym_preproc_def_token1] = ACTIONS(1619), + [anon_sym_auto] = ACTIONS(1619), + [anon_sym_inline] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + }, + [624] = { + [sym_false] = ACTIONS(1623), + [anon_sym_restrict] = ACTIONS(1623), + [sym_identifier] = ACTIONS(1623), + [anon_sym_goto] = ACTIONS(1623), + [aux_sym_preproc_if_token2] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [anon_sym_typedef] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym__Atomic] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1623), + [sym_number_literal] = ACTIONS(1621), + [anon_sym_volatile] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1623), + [aux_sym_preproc_elif_token1] = ACTIONS(1623), + [anon_sym_L] = ACTIONS(1623), + [anon_sym___attribute__] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [aux_sym_preproc_else_token1] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1621), + [sym_preproc_directive] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [aux_sym_preproc_if_token1] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1621), + [sym_primitive_type] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [aux_sym_preproc_include_token1] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_switch] = ACTIONS(1623), + [sym_true] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1623), + [sym_null] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1623), + [anon_sym_auto] = ACTIONS(1623), + [anon_sym_inline] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1623), + }, + [625] = { + [sym_false] = ACTIONS(1625), + [anon_sym_restrict] = ACTIONS(1625), + [sym_identifier] = ACTIONS(1625), + [anon_sym_goto] = ACTIONS(1625), + [aux_sym_preproc_if_token2] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_typedef] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym__Atomic] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), + [sym_number_literal] = ACTIONS(1627), + [anon_sym_volatile] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_signed] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), + [aux_sym_preproc_elif_token1] = ACTIONS(1625), + [anon_sym_L] = ACTIONS(1625), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym_sizeof] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_unsigned] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [aux_sym_preproc_else_token1] = ACTIONS(1625), + [anon_sym_TILDE] = ACTIONS(1627), + [sym_preproc_directive] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1627), + [aux_sym_preproc_if_token1] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_else] = ACTIONS(1625), + [sym_primitive_type] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [aux_sym_preproc_include_token1] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [sym_true] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [aux_sym_preproc_def_token1] = ACTIONS(1625), + [anon_sym_auto] = ACTIONS(1625), + [anon_sym_inline] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + }, + [626] = { + [sym_false] = ACTIONS(1637), + [anon_sym_restrict] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1637), + [anon_sym_goto] = ACTIONS(1637), + [aux_sym_preproc_if_token2] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1637), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), + [sym_number_literal] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_signed] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), + [aux_sym_preproc_elif_token1] = ACTIONS(1637), + [anon_sym_L] = ACTIONS(1637), + [anon_sym___attribute__] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [aux_sym_preproc_else_token1] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1639), + [sym_preproc_directive] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1639), + [aux_sym_preproc_if_token1] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1637), + [sym_primitive_type] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [sym_true] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [sym_null] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_auto] = ACTIONS(1637), + [anon_sym_inline] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + }, + [627] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + }, + [628] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1770), + [anon_sym_union] = ACTIONS(1770), + [anon_sym_unsigned] = ACTIONS(1770), + [anon_sym_restrict] = ACTIONS(1770), + [anon_sym_short] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1770), + [anon_sym_volatile] = ACTIONS(1770), + [anon_sym_register] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1770), + [aux_sym_preproc_if_token2] = ACTIONS(1770), + [sym_preproc_directive] = ACTIONS(1770), + [anon_sym_signed] = ACTIONS(1770), + [aux_sym_preproc_if_token1] = ACTIONS(1770), + [anon_sym_long] = ACTIONS(1770), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [anon_sym_struct] = ACTIONS(1770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1770), + [aux_sym_preproc_def_token1] = ACTIONS(1770), + [anon_sym__Atomic] = ACTIONS(1770), + [anon_sym_auto] = ACTIONS(1770), + [sym_primitive_type] = ACTIONS(1770), + [anon_sym_inline] = ACTIONS(1770), + [anon_sym___attribute__] = ACTIONS(1770), + [sym_comment] = ACTIONS(3), + }, + [629] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_unsigned] = ACTIONS(1776), + [anon_sym_restrict] = ACTIONS(1776), + [anon_sym_short] = ACTIONS(1776), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_volatile] = ACTIONS(1776), + [anon_sym_register] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [sym_identifier] = ACTIONS(1776), + [aux_sym_preproc_if_token2] = ACTIONS(1776), + [sym_preproc_directive] = ACTIONS(1776), + [anon_sym_signed] = ACTIONS(1776), + [aux_sym_preproc_if_token1] = ACTIONS(1776), + [anon_sym_long] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1776), + [aux_sym_preproc_def_token1] = ACTIONS(1776), + [anon_sym__Atomic] = ACTIONS(1776), + [anon_sym_auto] = ACTIONS(1776), + [sym_primitive_type] = ACTIONS(1776), + [anon_sym_inline] = ACTIONS(1776), + [anon_sym___attribute__] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + }, + [630] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_unsigned] = ACTIONS(1798), + [anon_sym_restrict] = ACTIONS(1798), + [anon_sym_short] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_volatile] = ACTIONS(1798), + [anon_sym_register] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1798), + [aux_sym_preproc_if_token2] = ACTIONS(1798), + [sym_preproc_directive] = ACTIONS(1798), + [anon_sym_signed] = ACTIONS(1798), + [aux_sym_preproc_if_token1] = ACTIONS(1798), + [anon_sym_long] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_struct] = ACTIONS(1798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), + [aux_sym_preproc_def_token1] = ACTIONS(1798), + [anon_sym__Atomic] = ACTIONS(1798), + [anon_sym_auto] = ACTIONS(1798), + [sym_primitive_type] = ACTIONS(1798), + [anon_sym_inline] = ACTIONS(1798), + [anon_sym___attribute__] = ACTIONS(1798), + [sym_comment] = ACTIONS(3), + }, + [631] = { + [sym_false] = ACTIONS(1855), + [anon_sym_restrict] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1855), + [anon_sym_goto] = ACTIONS(1855), + [aux_sym_preproc_if_token2] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_typedef] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym__Atomic] = ACTIONS(1855), + [sym_comment] = ACTIONS(3), [aux_sym_preproc_ifdef_token1] = ACTIONS(1855), + [sym_number_literal] = ACTIONS(1857), + [anon_sym_volatile] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_signed] = ACTIONS(1855), + [anon_sym_long] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1855), + [aux_sym_preproc_elif_token1] = ACTIONS(1855), + [anon_sym_L] = ACTIONS(1855), + [anon_sym___attribute__] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1857), [anon_sym_union] = ACTIONS(1855), [anon_sym_unsigned] = ACTIONS(1855), - [anon_sym_restrict] = ACTIONS(1855), [anon_sym_short] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_volatile] = ACTIONS(1855), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [aux_sym_preproc_else_token1] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1857), [sym_preproc_directive] = ACTIONS(1855), - [anon_sym_signed] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1857), [aux_sym_preproc_if_token1] = ACTIONS(1855), - [anon_sym_long] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym_LPAREN2] = ACTIONS(1857), + [sym_primitive_type] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [aux_sym_preproc_include_token1] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(1855), + [sym_true] = ACTIONS(1855), [anon_sym_enum] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1855), + [sym_null] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1857), [aux_sym_preproc_def_token1] = ACTIONS(1855), - [anon_sym__Atomic] = ACTIONS(1855), [anon_sym_auto] = ACTIONS(1855), - [sym_primitive_type] = ACTIONS(1855), [anon_sym_inline] = ACTIONS(1855), - [anon_sym___attribute__] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), }, - [623] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1859), - [anon_sym_union] = ACTIONS(1859), - [anon_sym_unsigned] = ACTIONS(1859), - [anon_sym_restrict] = ACTIONS(1859), - [anon_sym_short] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1859), - [anon_sym_volatile] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1859), - [sym_preproc_directive] = ACTIONS(1859), - [anon_sym_signed] = ACTIONS(1859), - [aux_sym_preproc_if_token1] = ACTIONS(1859), - [anon_sym_long] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [anon_sym_struct] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1859), - [aux_sym_preproc_def_token1] = ACTIONS(1859), - [anon_sym__Atomic] = ACTIONS(1859), - [anon_sym_auto] = ACTIONS(1859), - [sym_primitive_type] = ACTIONS(1859), - [anon_sym_inline] = ACTIONS(1859), - [anon_sym___attribute__] = ACTIONS(1859), + [632] = { + [sym_false] = ACTIONS(1863), + [anon_sym_restrict] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1863), + [anon_sym_goto] = ACTIONS(1863), + [aux_sym_preproc_if_token2] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_typedef] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym__Atomic] = ACTIONS(1863), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), + [sym_number_literal] = ACTIONS(1865), + [anon_sym_volatile] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_struct] = ACTIONS(1863), + [anon_sym_signed] = ACTIONS(1863), + [anon_sym_long] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), + [aux_sym_preproc_elif_token1] = ACTIONS(1863), + [anon_sym_L] = ACTIONS(1863), + [anon_sym___attribute__] = ACTIONS(1863), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1863), + [anon_sym_unsigned] = ACTIONS(1863), + [anon_sym_short] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [aux_sym_preproc_else_token1] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1865), + [sym_preproc_directive] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1865), + [aux_sym_preproc_if_token1] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1865), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1863), + [sym_primitive_type] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [aux_sym_preproc_include_token1] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1865), + [aux_sym_preproc_def_token1] = ACTIONS(1863), + [anon_sym_auto] = ACTIONS(1863), + [anon_sym_inline] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), }, - [624] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_restrict] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1867), - [sym_preproc_directive] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [aux_sym_preproc_if_token1] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [sym_identifier] = ACTIONS(1867), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1867), - [aux_sym_preproc_def_token1] = ACTIONS(1867), - [anon_sym__Atomic] = ACTIONS(1867), - [anon_sym_auto] = ACTIONS(1867), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym___attribute__] = ACTIONS(1867), + [633] = { + [sym_while_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym__expression] = STATE(851), + [sym_comma_expression] = STATE(850), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), + [sym_switch_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(637), + [anon_sym_LBRACE] = ACTIONS(428), + [sym_false] = ACTIONS(408), + [sym_identifier] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(430), + [anon_sym_goto] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_while] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [625] = { - [sym_null] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1890), - [aux_sym_preproc_if_token2] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_typedef] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym__Atomic] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [aux_sym_preproc_elif_token1] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym_sizeof] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [aux_sym_preproc_else_token1] = ACTIONS(1890), - [anon_sym_TILDE] = ACTIONS(1892), - [sym_preproc_directive] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1892), - [aux_sym_preproc_if_token1] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1890), - [sym_true] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [aux_sym_preproc_include_token1] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1890), - [sym_false] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1892), - [aux_sym_preproc_def_token1] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), + [634] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_unsigned] = ACTIONS(1896), + [anon_sym_restrict] = ACTIONS(1896), + [anon_sym_short] = ACTIONS(1896), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_volatile] = ACTIONS(1896), + [anon_sym_register] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1896), + [aux_sym_preproc_if_token2] = ACTIONS(1896), + [sym_preproc_directive] = ACTIONS(1896), + [anon_sym_signed] = ACTIONS(1896), + [aux_sym_preproc_if_token1] = ACTIONS(1896), + [anon_sym_long] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1896), + [aux_sym_preproc_def_token1] = ACTIONS(1896), + [anon_sym__Atomic] = ACTIONS(1896), + [anon_sym_auto] = ACTIONS(1896), + [sym_primitive_type] = ACTIONS(1896), + [anon_sym_inline] = ACTIONS(1896), + [anon_sym___attribute__] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), }, - [626] = { - [sym_while_statement] = STATE(627), - [sym_continue_statement] = STATE(627), - [sym_goto_statement] = STATE(627), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(627), - [sym_expression_statement] = STATE(627), - [sym_if_statement] = STATE(627), - [sym_do_statement] = STATE(627), - [sym_for_statement] = STATE(627), - [sym__expression] = STATE(834), - [sym_comma_expression] = STATE(833), - [sym_bitwise_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(834), - [sym_concatenated_string] = STATE(834), - [sym_switch_statement] = STATE(627), - [sym_return_statement] = STATE(627), - [sym_break_statement] = STATE(627), - [sym_conditional_expression] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(627), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_null] = ACTIONS(398), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), + [635] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsigned] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [anon_sym_short] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1900), + [aux_sym_preproc_if_token2] = ACTIONS(1900), + [sym_preproc_directive] = ACTIONS(1900), + [anon_sym_signed] = ACTIONS(1900), + [aux_sym_preproc_if_token1] = ACTIONS(1900), + [anon_sym_long] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), + [aux_sym_preproc_def_token1] = ACTIONS(1900), + [anon_sym__Atomic] = ACTIONS(1900), + [anon_sym_auto] = ACTIONS(1900), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_inline] = ACTIONS(1900), + [anon_sym___attribute__] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + }, + [636] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [sym_preproc_directive] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_def_token1] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + }, + [637] = { + [sym_false] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [aux_sym_preproc_if_token2] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym__Atomic] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [aux_sym_preproc_elif_token1] = ACTIONS(1931), + [anon_sym_L] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [aux_sym_preproc_else_token1] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1933), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1933), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [aux_sym_preproc_include_token1] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [sym_null] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [anon_sym_auto] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + }, + [638] = { + [sym_while_statement] = STATE(639), + [sym_continue_statement] = STATE(639), + [sym_goto_statement] = STATE(639), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(639), + [sym_expression_statement] = STATE(639), + [sym_if_statement] = STATE(639), + [sym_do_statement] = STATE(639), + [sym_for_statement] = STATE(639), + [sym__expression] = STATE(851), + [sym_comma_expression] = STATE(850), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), + [sym_switch_statement] = STATE(639), + [sym_return_statement] = STATE(639), + [sym_break_statement] = STATE(639), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(639), + [anon_sym_LBRACE] = ACTIONS(428), + [sym_false] = ACTIONS(408), + [sym_identifier] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(430), + [anon_sym_goto] = ACTIONS(412), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(398), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(408), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [sym_identifier] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_while] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [627] = { - [sym_null] = ACTIONS(2008), - [anon_sym_restrict] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2008), - [aux_sym_preproc_if_token2] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2008), - [anon_sym_DASH_DASH] = ACTIONS(2010), - [anon_sym__Atomic] = ACTIONS(2008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), - [sym_number_literal] = ACTIONS(2010), - [anon_sym_volatile] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2010), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2008), - [anon_sym_long] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), - [aux_sym_preproc_elif_token1] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2010), - [anon_sym_DQUOTE] = ACTIONS(2010), - [anon_sym___attribute__] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsigned] = ACTIONS(2008), - [anon_sym_short] = ACTIONS(2008), - [anon_sym_do] = ACTIONS(2008), - [aux_sym_preproc_else_token1] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2010), - [sym_preproc_directive] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2010), - [aux_sym_preproc_if_token1] = ACTIONS(2008), - [anon_sym_LPAREN2] = ACTIONS(2010), - [anon_sym_else] = ACTIONS(2008), - [sym_true] = ACTIONS(2008), - [sym_primitive_type] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [aux_sym_preproc_include_token1] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_register] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_switch] = ACTIONS(2008), - [sym_false] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2010), - [aux_sym_preproc_def_token1] = ACTIONS(2008), - [anon_sym_auto] = ACTIONS(2008), - [anon_sym_inline] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2008), + [639] = { + [sym_false] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [aux_sym_preproc_if_token2] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym__Atomic] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [aux_sym_preproc_elif_token1] = ACTIONS(2052), + [anon_sym_L] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym_sizeof] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [aux_sym_preproc_else_token1] = ACTIONS(2052), + [anon_sym_TILDE] = ACTIONS(2054), + [sym_preproc_directive] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2054), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_else] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [sym_true] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [anon_sym_DASH] = ACTIONS(2052), }, - [628] = { - [sym_while_statement] = STATE(629), - [sym_continue_statement] = STATE(629), - [sym_goto_statement] = STATE(629), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(629), - [sym_expression_statement] = STATE(629), - [sym_if_statement] = STATE(629), - [sym_do_statement] = STATE(629), - [sym_for_statement] = STATE(629), - [sym__expression] = STATE(834), - [sym_comma_expression] = STATE(833), - [sym_bitwise_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(834), - [sym_concatenated_string] = STATE(834), - [sym_switch_statement] = STATE(629), - [sym_return_statement] = STATE(629), - [sym_break_statement] = STATE(629), - [sym_conditional_expression] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(629), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_null] = ACTIONS(398), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), + [640] = { + [sym_while_statement] = STATE(641), + [sym_continue_statement] = STATE(641), + [sym_goto_statement] = STATE(641), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(641), + [sym_expression_statement] = STATE(641), + [sym_if_statement] = STATE(641), + [sym_do_statement] = STATE(641), + [sym_for_statement] = STATE(641), + [sym__expression] = STATE(851), + [sym_comma_expression] = STATE(850), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), + [sym_switch_statement] = STATE(641), + [sym_return_statement] = STATE(641), + [sym_break_statement] = STATE(641), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(641), + [anon_sym_LBRACE] = ACTIONS(428), + [sym_false] = ACTIONS(408), + [sym_identifier] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(430), + [anon_sym_goto] = ACTIONS(412), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(398), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(408), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [sym_identifier] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_while] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [629] = { - [sym_null] = ACTIONS(2014), - [anon_sym_restrict] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2014), - [aux_sym_preproc_if_token2] = ACTIONS(2014), - [anon_sym_const] = ACTIONS(2014), - [anon_sym_typedef] = ACTIONS(2014), - [anon_sym_DASH_DASH] = ACTIONS(2016), - [anon_sym__Atomic] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2014), - [sym_number_literal] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2014), - [anon_sym_PLUS_PLUS] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2014), - [anon_sym_signed] = ACTIONS(2014), - [anon_sym_long] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2014), - [aux_sym_preproc_elif_token1] = ACTIONS(2014), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2016), - [anon_sym___attribute__] = ACTIONS(2014), - [anon_sym_sizeof] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2014), - [anon_sym_unsigned] = ACTIONS(2014), - [anon_sym_short] = ACTIONS(2014), - [anon_sym_do] = ACTIONS(2014), - [aux_sym_preproc_else_token1] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2016), - [sym_preproc_directive] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2016), - [anon_sym_else] = ACTIONS(2014), - [sym_true] = ACTIONS(2014), - [sym_primitive_type] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2014), - [anon_sym_register] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_switch] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), - [anon_sym_enum] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2014), - [anon_sym_continue] = ACTIONS(2014), - [anon_sym_SEMI] = ACTIONS(2016), - [aux_sym_preproc_def_token1] = ACTIONS(2014), - [anon_sym_auto] = ACTIONS(2014), - [anon_sym_inline] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), + [641] = { + [sym_false] = ACTIONS(2058), + [anon_sym_restrict] = ACTIONS(2058), + [sym_identifier] = ACTIONS(2058), + [anon_sym_goto] = ACTIONS(2058), + [aux_sym_preproc_if_token2] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_typedef] = ACTIONS(2058), + [anon_sym_DASH_DASH] = ACTIONS(2060), + [anon_sym__Atomic] = ACTIONS(2058), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), + [sym_number_literal] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_signed] = ACTIONS(2058), + [anon_sym_long] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), + [aux_sym_preproc_elif_token1] = ACTIONS(2058), + [anon_sym_L] = ACTIONS(2058), + [anon_sym___attribute__] = ACTIONS(2058), + [anon_sym_sizeof] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsigned] = ACTIONS(2058), + [anon_sym_short] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [aux_sym_preproc_else_token1] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2060), + [sym_preproc_directive] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), + [aux_sym_preproc_if_token1] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2060), + [anon_sym_else] = ACTIONS(2058), + [sym_primitive_type] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [aux_sym_preproc_include_token1] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_PLUS] = ACTIONS(2058), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_switch] = ACTIONS(2058), + [sym_true] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [sym_null] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2060), + [aux_sym_preproc_def_token1] = ACTIONS(2058), + [anon_sym_auto] = ACTIONS(2058), + [anon_sym_inline] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2058), }, - [630] = { - [sym_while_statement] = STATE(631), - [sym_continue_statement] = STATE(631), - [sym_goto_statement] = STATE(631), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(834), - [sym_math_expression] = STATE(834), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(631), - [sym_expression_statement] = STATE(631), - [sym_if_statement] = STATE(631), - [sym_do_statement] = STATE(631), - [sym_for_statement] = STATE(631), - [sym__expression] = STATE(834), - [sym_comma_expression] = STATE(833), - [sym_bitwise_expression] = STATE(834), - [sym_equality_expression] = STATE(834), - [sym_sizeof_expression] = STATE(834), - [sym_compound_literal_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(834), - [sym_concatenated_string] = STATE(834), - [sym_switch_statement] = STATE(631), - [sym_return_statement] = STATE(631), - [sym_break_statement] = STATE(631), - [sym_conditional_expression] = STATE(834), - [sym_assignment_expression] = STATE(834), - [sym_relational_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(631), - [anon_sym_LBRACE] = ACTIONS(416), - [sym_null] = ACTIONS(398), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(418), - [anon_sym_goto] = ACTIONS(400), + [642] = { + [sym_while_statement] = STATE(643), + [sym_continue_statement] = STATE(643), + [sym_goto_statement] = STATE(643), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(643), + [sym_expression_statement] = STATE(643), + [sym_if_statement] = STATE(643), + [sym_do_statement] = STATE(643), + [sym_for_statement] = STATE(643), + [sym__expression] = STATE(851), + [sym_comma_expression] = STATE(850), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), + [sym_switch_statement] = STATE(643), + [sym_return_statement] = STATE(643), + [sym_break_statement] = STATE(643), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(643), + [anon_sym_LBRACE] = ACTIONS(428), + [sym_false] = ACTIONS(408), + [sym_identifier] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(430), + [anon_sym_goto] = ACTIONS(412), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(398), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(408), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [sym_identifier] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(438), - [anon_sym_while] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_while] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [631] = { - [sym_null] = ACTIONS(2018), - [anon_sym_restrict] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2018), - [aux_sym_preproc_if_token2] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [anon_sym_typedef] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2018), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2018), - [anon_sym_signed] = ACTIONS(2018), - [anon_sym_long] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2018), - [aux_sym_preproc_elif_token1] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym___attribute__] = ACTIONS(2018), - [anon_sym_sizeof] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2018), - [anon_sym_unsigned] = ACTIONS(2018), - [anon_sym_short] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [aux_sym_preproc_else_token1] = ACTIONS(2018), - [anon_sym_TILDE] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_else] = ACTIONS(2018), - [sym_true] = ACTIONS(2018), - [sym_primitive_type] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [aux_sym_preproc_include_token1] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_switch] = ACTIONS(2018), - [sym_false] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_SEMI] = ACTIONS(2020), - [aux_sym_preproc_def_token1] = ACTIONS(2018), - [anon_sym_auto] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2018), - [anon_sym_DASH] = ACTIONS(2018), + [643] = { + [sym_false] = ACTIONS(2062), + [anon_sym_restrict] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2062), + [anon_sym_goto] = ACTIONS(2062), + [aux_sym_preproc_if_token2] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2062), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym__Atomic] = ACTIONS(2062), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2062), + [sym_number_literal] = ACTIONS(2064), + [anon_sym_volatile] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2062), + [anon_sym_signed] = ACTIONS(2062), + [anon_sym_long] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2062), + [aux_sym_preproc_elif_token1] = ACTIONS(2062), + [anon_sym_L] = ACTIONS(2062), + [anon_sym___attribute__] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2062), + [anon_sym_unsigned] = ACTIONS(2062), + [anon_sym_short] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [aux_sym_preproc_else_token1] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2064), + [sym_preproc_directive] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), + [aux_sym_preproc_if_token1] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2062), + [sym_primitive_type] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [aux_sym_preproc_include_token1] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_register] = ACTIONS(2062), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_switch] = ACTIONS(2062), + [sym_true] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [sym_null] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2064), + [aux_sym_preproc_def_token1] = ACTIONS(2062), + [anon_sym_auto] = ACTIONS(2062), + [anon_sym_inline] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), }, - [632] = { - [sym_null] = ACTIONS(263), - [anon_sym_restrict] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(263), - [aux_sym_preproc_if_token2] = ACTIONS(263), - [anon_sym_const] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(263), - [anon_sym_DASH_DASH] = ACTIONS(265), - [anon_sym__Atomic] = ACTIONS(263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(263), - [sym_number_literal] = ACTIONS(265), - [anon_sym_volatile] = ACTIONS(263), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_PLUS_PLUS] = ACTIONS(265), - [anon_sym_struct] = ACTIONS(263), - [anon_sym_signed] = ACTIONS(263), - [anon_sym_long] = ACTIONS(263), - [anon_sym_while] = ACTIONS(263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(263), - [anon_sym_SQUOTE] = ACTIONS(265), - [anon_sym_DQUOTE] = ACTIONS(265), - [anon_sym___attribute__] = ACTIONS(263), - [anon_sym_sizeof] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_union] = ACTIONS(263), - [anon_sym_unsigned] = ACTIONS(263), - [anon_sym_short] = ACTIONS(263), - [anon_sym_do] = ACTIONS(263), - [anon_sym_TILDE] = ACTIONS(265), - [sym_preproc_directive] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(265), - [aux_sym_preproc_if_token1] = ACTIONS(263), - [anon_sym_LPAREN2] = ACTIONS(265), - [anon_sym_else] = ACTIONS(263), - [sym_true] = ACTIONS(263), - [sym_primitive_type] = ACTIONS(263), - [anon_sym_for] = ACTIONS(263), - [anon_sym_break] = ACTIONS(263), - [aux_sym_preproc_include_token1] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(265), - [anon_sym_static] = ACTIONS(263), - [anon_sym_register] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_if] = ACTIONS(263), - [anon_sym_switch] = ACTIONS(263), - [sym_false] = ACTIONS(263), - [anon_sym_enum] = ACTIONS(263), - [sym_identifier] = ACTIONS(263), - [anon_sym_return] = ACTIONS(263), - [anon_sym_continue] = ACTIONS(263), - [anon_sym_SEMI] = ACTIONS(265), - [aux_sym_preproc_def_token1] = ACTIONS(263), - [anon_sym_auto] = ACTIONS(263), - [anon_sym_inline] = ACTIONS(263), - [anon_sym_DASH] = ACTIONS(263), + [644] = { + [sym_false] = ACTIONS(269), + [anon_sym_restrict] = ACTIONS(269), + [sym_identifier] = ACTIONS(269), + [anon_sym_goto] = ACTIONS(269), + [aux_sym_preproc_if_token2] = ACTIONS(269), + [anon_sym_const] = ACTIONS(269), + [anon_sym_typedef] = ACTIONS(269), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym__Atomic] = ACTIONS(269), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(269), + [sym_number_literal] = ACTIONS(271), + [anon_sym_volatile] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_struct] = ACTIONS(269), + [anon_sym_signed] = ACTIONS(269), + [anon_sym_long] = ACTIONS(269), + [anon_sym_while] = ACTIONS(269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(269), + [anon_sym_L] = ACTIONS(269), + [anon_sym___attribute__] = ACTIONS(269), + [anon_sym_sizeof] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(271), + [anon_sym_union] = ACTIONS(269), + [anon_sym_unsigned] = ACTIONS(269), + [anon_sym_short] = ACTIONS(269), + [anon_sym_do] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(271), + [sym_preproc_directive] = ACTIONS(269), + [anon_sym_AMP] = ACTIONS(271), + [aux_sym_preproc_if_token1] = ACTIONS(269), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_LPAREN2] = ACTIONS(271), + [anon_sym_else] = ACTIONS(269), + [sym_primitive_type] = ACTIONS(269), + [anon_sym_for] = ACTIONS(269), + [anon_sym_break] = ACTIONS(269), + [aux_sym_preproc_include_token1] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_static] = ACTIONS(269), + [anon_sym_register] = ACTIONS(269), + [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_if] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(269), + [sym_true] = ACTIONS(269), + [anon_sym_enum] = ACTIONS(269), + [sym_null] = ACTIONS(269), + [anon_sym_return] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(271), + [aux_sym_preproc_def_token1] = ACTIONS(269), + [anon_sym_auto] = ACTIONS(269), + [anon_sym_inline] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(269), }, - [633] = { - [sym_null] = ACTIONS(342), - [anon_sym_restrict] = ACTIONS(342), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(342), - [aux_sym_preproc_if_token2] = ACTIONS(342), - [anon_sym_const] = ACTIONS(342), - [anon_sym_typedef] = ACTIONS(342), - [anon_sym_DASH_DASH] = ACTIONS(344), - [anon_sym__Atomic] = ACTIONS(342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(342), - [sym_number_literal] = ACTIONS(344), - [anon_sym_volatile] = ACTIONS(342), - [anon_sym_extern] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(344), - [anon_sym_struct] = ACTIONS(342), - [anon_sym_signed] = ACTIONS(342), - [anon_sym_long] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym___attribute__] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(342), - [anon_sym_LBRACE] = ACTIONS(344), - [anon_sym_union] = ACTIONS(342), - [anon_sym_unsigned] = ACTIONS(342), - [anon_sym_short] = ACTIONS(342), - [anon_sym_do] = ACTIONS(342), - [anon_sym_TILDE] = ACTIONS(344), - [sym_preproc_directive] = ACTIONS(342), - [anon_sym_AMP] = ACTIONS(344), - [aux_sym_preproc_if_token1] = ACTIONS(342), - [anon_sym_LPAREN2] = ACTIONS(344), - [anon_sym_else] = ACTIONS(342), - [sym_true] = ACTIONS(342), - [sym_primitive_type] = ACTIONS(342), - [anon_sym_for] = ACTIONS(342), - [anon_sym_break] = ACTIONS(342), - [aux_sym_preproc_include_token1] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(344), - [anon_sym_static] = ACTIONS(342), - [anon_sym_register] = ACTIONS(342), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_if] = ACTIONS(342), - [anon_sym_switch] = ACTIONS(342), - [sym_false] = ACTIONS(342), - [anon_sym_enum] = ACTIONS(342), - [sym_identifier] = ACTIONS(342), - [anon_sym_return] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_SEMI] = ACTIONS(344), - [aux_sym_preproc_def_token1] = ACTIONS(342), - [anon_sym_auto] = ACTIONS(342), - [anon_sym_inline] = ACTIONS(342), - [anon_sym_DASH] = ACTIONS(342), + [645] = { + [sym_false] = ACTIONS(354), + [anon_sym_restrict] = ACTIONS(354), + [sym_identifier] = ACTIONS(354), + [anon_sym_goto] = ACTIONS(354), + [aux_sym_preproc_if_token2] = ACTIONS(354), + [anon_sym_const] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(354), + [anon_sym_DASH_DASH] = ACTIONS(356), + [anon_sym__Atomic] = ACTIONS(354), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(354), + [sym_number_literal] = ACTIONS(356), + [anon_sym_volatile] = ACTIONS(354), + [anon_sym_SQUOTE] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(356), + [anon_sym_struct] = ACTIONS(354), + [anon_sym_signed] = ACTIONS(354), + [anon_sym_long] = ACTIONS(354), + [anon_sym_while] = ACTIONS(354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(354), + [anon_sym_L] = ACTIONS(354), + [anon_sym___attribute__] = ACTIONS(354), + [anon_sym_sizeof] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_union] = ACTIONS(354), + [anon_sym_unsigned] = ACTIONS(354), + [anon_sym_short] = ACTIONS(354), + [anon_sym_do] = ACTIONS(354), + [anon_sym_TILDE] = ACTIONS(356), + [sym_preproc_directive] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(356), + [aux_sym_preproc_if_token1] = ACTIONS(354), + [anon_sym_DQUOTE] = ACTIONS(356), + [anon_sym_LPAREN2] = ACTIONS(356), + [anon_sym_else] = ACTIONS(354), + [sym_primitive_type] = ACTIONS(354), + [anon_sym_for] = ACTIONS(354), + [anon_sym_break] = ACTIONS(354), + [aux_sym_preproc_include_token1] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(356), + [anon_sym_static] = ACTIONS(354), + [anon_sym_register] = ACTIONS(354), + [anon_sym_PLUS] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_if] = ACTIONS(354), + [anon_sym_switch] = ACTIONS(354), + [sym_true] = ACTIONS(354), + [anon_sym_enum] = ACTIONS(354), + [sym_null] = ACTIONS(354), + [anon_sym_return] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(354), + [anon_sym_SEMI] = ACTIONS(356), + [aux_sym_preproc_def_token1] = ACTIONS(354), + [anon_sym_auto] = ACTIONS(354), + [anon_sym_inline] = ACTIONS(354), + [anon_sym_DASH] = ACTIONS(354), }, - [634] = { - [sym_null] = ACTIONS(370), - [anon_sym_restrict] = ACTIONS(370), + [646] = { + [sym_while_statement] = STATE(660), + [sym_continue_statement] = STATE(660), + [sym_goto_statement] = STATE(660), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(923), + [sym_math_expression] = STATE(923), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_if_statement] = STATE(660), + [sym_do_statement] = STATE(660), + [sym_for_statement] = STATE(660), + [sym__expression] = STATE(923), + [sym_comma_expression] = STATE(922), + [sym_bitwise_expression] = STATE(923), + [sym_equality_expression] = STATE(923), + [sym_sizeof_expression] = STATE(923), + [sym_compound_literal_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(923), + [sym_concatenated_string] = STATE(923), + [sym_switch_statement] = STATE(660), + [sym_return_statement] = STATE(660), + [sym_break_statement] = STATE(660), + [sym_conditional_expression] = STATE(923), + [sym_assignment_expression] = STATE(923), + [sym_relational_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(660), + [anon_sym_LBRACE] = ACTIONS(870), + [sym_false] = ACTIONS(872), + [sym_identifier] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(370), - [aux_sym_preproc_if_token2] = ACTIONS(370), - [anon_sym_const] = ACTIONS(370), - [anon_sym_typedef] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym__Atomic] = ACTIONS(370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(370), - [sym_number_literal] = ACTIONS(372), - [anon_sym_volatile] = ACTIONS(370), - [anon_sym_extern] = ACTIONS(370), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_struct] = ACTIONS(370), - [anon_sym_signed] = ACTIONS(370), - [anon_sym_long] = ACTIONS(370), - [anon_sym_while] = ACTIONS(370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(370), - [aux_sym_preproc_elif_token1] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(372), - [anon_sym___attribute__] = ACTIONS(370), - [anon_sym_sizeof] = ACTIONS(370), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_union] = ACTIONS(370), - [anon_sym_unsigned] = ACTIONS(370), - [anon_sym_short] = ACTIONS(370), - [anon_sym_do] = ACTIONS(370), - [aux_sym_preproc_else_token1] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - [sym_preproc_directive] = ACTIONS(370), - [anon_sym_AMP] = ACTIONS(372), - [aux_sym_preproc_if_token1] = ACTIONS(370), - [anon_sym_LPAREN2] = ACTIONS(372), - [sym_true] = ACTIONS(370), - [sym_primitive_type] = ACTIONS(370), - [anon_sym_for] = ACTIONS(370), - [anon_sym_break] = ACTIONS(370), - [aux_sym_preproc_include_token1] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(372), - [anon_sym_static] = ACTIONS(370), - [anon_sym_register] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_if] = ACTIONS(370), - [anon_sym_switch] = ACTIONS(370), - [sym_false] = ACTIONS(370), - [anon_sym_enum] = ACTIONS(370), - [sym_identifier] = ACTIONS(370), - [anon_sym_return] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(372), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [anon_sym_auto] = ACTIONS(370), - [anon_sym_inline] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(370), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(902), + [sym_true] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [635] = { - [sym_null] = ACTIONS(390), - [anon_sym_restrict] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(390), - [aux_sym_preproc_if_token2] = ACTIONS(390), - [anon_sym_const] = ACTIONS(390), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym__Atomic] = ACTIONS(390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(390), - [sym_number_literal] = ACTIONS(388), - [anon_sym_volatile] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_struct] = ACTIONS(390), - [anon_sym_signed] = ACTIONS(390), - [anon_sym_long] = ACTIONS(390), - [anon_sym_while] = ACTIONS(390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(390), - [aux_sym_preproc_elif_token1] = ACTIONS(390), - [anon_sym_SQUOTE] = ACTIONS(388), - [anon_sym_DQUOTE] = ACTIONS(388), - [anon_sym___attribute__] = ACTIONS(390), - [anon_sym_sizeof] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_union] = ACTIONS(390), - [anon_sym_unsigned] = ACTIONS(390), - [anon_sym_short] = ACTIONS(390), - [anon_sym_do] = ACTIONS(390), - [aux_sym_preproc_else_token1] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(388), - [sym_preproc_directive] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(388), - [aux_sym_preproc_if_token1] = ACTIONS(390), - [anon_sym_LPAREN2] = ACTIONS(388), - [sym_true] = ACTIONS(390), - [sym_primitive_type] = ACTIONS(390), - [anon_sym_for] = ACTIONS(390), - [anon_sym_break] = ACTIONS(390), - [aux_sym_preproc_include_token1] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(388), - [anon_sym_static] = ACTIONS(390), - [anon_sym_register] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(390), - [sym_false] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [sym_identifier] = ACTIONS(390), - [anon_sym_return] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_SEMI] = ACTIONS(388), - [aux_sym_preproc_def_token1] = ACTIONS(390), - [anon_sym_auto] = ACTIONS(390), - [anon_sym_inline] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), + [647] = { + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(2308), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(151), }, - [636] = { - [sym_null] = ACTIONS(487), - [anon_sym_restrict] = ACTIONS(487), - [sym_comment] = ACTIONS(3), - [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), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [sym_number_literal] = ACTIONS(489), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_extern] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_signed] = ACTIONS(487), - [anon_sym_long] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = 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), - [anon_sym_TILDE] = ACTIONS(489), - [sym_preproc_directive] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(489), - [aux_sym_preproc_if_token1] = ACTIONS(487), - [anon_sym_LPAREN2] = ACTIONS(489), - [anon_sym_else] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_primitive_type] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [aux_sym_preproc_include_token1] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(489), - [anon_sym_static] = ACTIONS(487), - [anon_sym_register] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_if] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [sym_identifier] = 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_auto] = ACTIONS(487), - [anon_sym_inline] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), + [648] = { + [sym_false] = ACTIONS(400), + [anon_sym_restrict] = ACTIONS(400), + [sym_identifier] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(400), + [aux_sym_preproc_if_token2] = ACTIONS(400), + [anon_sym_const] = ACTIONS(400), + [anon_sym_typedef] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym__Atomic] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(400), + [sym_number_literal] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(400), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(400), + [anon_sym_signed] = ACTIONS(400), + [anon_sym_long] = ACTIONS(400), + [anon_sym_while] = ACTIONS(400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(400), + [aux_sym_preproc_elif_token1] = ACTIONS(400), + [anon_sym_L] = ACTIONS(400), + [anon_sym___attribute__] = ACTIONS(400), + [anon_sym_sizeof] = ACTIONS(400), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(400), + [anon_sym_unsigned] = ACTIONS(400), + [anon_sym_short] = ACTIONS(400), + [anon_sym_do] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(400), + [anon_sym_TILDE] = ACTIONS(398), + [sym_preproc_directive] = ACTIONS(400), + [anon_sym_AMP] = ACTIONS(398), + [aux_sym_preproc_if_token1] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(398), + [anon_sym_LPAREN2] = ACTIONS(398), + [sym_primitive_type] = ACTIONS(400), + [anon_sym_for] = ACTIONS(400), + [anon_sym_break] = ACTIONS(400), + [aux_sym_preproc_include_token1] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_static] = ACTIONS(400), + [anon_sym_register] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_switch] = ACTIONS(400), + [sym_true] = ACTIONS(400), + [anon_sym_enum] = ACTIONS(400), + [sym_null] = ACTIONS(400), + [anon_sym_return] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(400), + [anon_sym_SEMI] = ACTIONS(398), + [aux_sym_preproc_def_token1] = ACTIONS(400), + [anon_sym_auto] = ACTIONS(400), + [anon_sym_inline] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), }, - [637] = { - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_union] = ACTIONS(495), - [anon_sym_sizeof] = ACTIONS(495), - [anon_sym_unsigned] = ACTIONS(495), - [anon_sym_restrict] = ACTIONS(495), - [anon_sym_short] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(493), - [sym_null] = ACTIONS(495), - [sym_identifier] = ACTIONS(495), - [anon_sym_do] = ACTIONS(495), - [anon_sym_goto] = ACTIONS(495), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(495), - [sym_preproc_directive] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(493), - [aux_sym_preproc_if_token1] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(493), - [anon_sym_const] = ACTIONS(495), - [anon_sym_LPAREN2] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(493), - [anon_sym__Atomic] = ACTIONS(495), - [sym_primitive_type] = ACTIONS(495), - [sym_true] = ACTIONS(495), - [anon_sym_for] = ACTIONS(495), - [anon_sym_break] = ACTIONS(495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(495), - [aux_sym_preproc_include_token1] = ACTIONS(495), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_static] = ACTIONS(495), - [anon_sym_volatile] = ACTIONS(495), - [anon_sym_register] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_if] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(495), - [anon_sym_switch] = ACTIONS(495), - [anon_sym_signed] = ACTIONS(495), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_long] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_return] = ACTIONS(495), - [anon_sym_while] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(493), - [sym_number_literal] = ACTIONS(493), - [aux_sym_preproc_def_token1] = ACTIONS(495), - [sym_false] = ACTIONS(495), - [anon_sym_auto] = ACTIONS(495), - [anon_sym_SQUOTE] = ACTIONS(493), - [anon_sym_inline] = ACTIONS(495), - [anon_sym___attribute__] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), + [649] = { + [sym_false] = ACTIONS(489), + [anon_sym_restrict] = ACTIONS(489), + [sym_identifier] = ACTIONS(489), + [anon_sym_goto] = ACTIONS(489), + [aux_sym_preproc_if_token2] = ACTIONS(489), + [anon_sym_const] = ACTIONS(489), + [anon_sym_typedef] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(491), + [anon_sym__Atomic] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(489), + [sym_number_literal] = ACTIONS(491), + [anon_sym_volatile] = ACTIONS(489), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_PLUS_PLUS] = ACTIONS(491), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_signed] = ACTIONS(489), + [anon_sym_long] = ACTIONS(489), + [anon_sym_while] = ACTIONS(489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(489), + [aux_sym_preproc_elif_token1] = ACTIONS(489), + [anon_sym_L] = ACTIONS(489), + [anon_sym___attribute__] = ACTIONS(489), + [anon_sym_sizeof] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_union] = ACTIONS(489), + [anon_sym_unsigned] = ACTIONS(489), + [anon_sym_short] = ACTIONS(489), + [anon_sym_do] = ACTIONS(489), + [aux_sym_preproc_else_token1] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(491), + [sym_preproc_directive] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(491), + [aux_sym_preproc_if_token1] = ACTIONS(489), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_LPAREN2] = ACTIONS(491), + [sym_primitive_type] = ACTIONS(489), + [anon_sym_for] = ACTIONS(489), + [anon_sym_break] = ACTIONS(489), + [aux_sym_preproc_include_token1] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_static] = ACTIONS(489), + [anon_sym_register] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_if] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(489), + [sym_true] = ACTIONS(489), + [anon_sym_enum] = ACTIONS(489), + [sym_null] = ACTIONS(489), + [anon_sym_return] = ACTIONS(489), + [anon_sym_continue] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(491), + [aux_sym_preproc_def_token1] = ACTIONS(489), + [anon_sym_auto] = ACTIONS(489), + [anon_sym_inline] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(489), }, - [638] = { - [sym_while_statement] = STATE(654), - [sym_continue_statement] = STATE(654), - [sym_goto_statement] = STATE(654), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(905), - [sym_math_expression] = STATE(905), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(654), - [sym_expression_statement] = STATE(654), - [sym_if_statement] = STATE(654), - [sym_do_statement] = STATE(654), - [sym_for_statement] = STATE(654), - [sym__expression] = STATE(905), - [sym_comma_expression] = STATE(904), - [sym_bitwise_expression] = STATE(905), - [sym_equality_expression] = STATE(905), - [sym_sizeof_expression] = STATE(905), - [sym_compound_literal_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(905), - [sym_concatenated_string] = STATE(905), - [sym_switch_statement] = STATE(654), - [sym_return_statement] = STATE(654), - [sym_break_statement] = STATE(654), - [sym_conditional_expression] = STATE(905), - [sym_assignment_expression] = STATE(905), - [sym_relational_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(654), - [anon_sym_LBRACE] = ACTIONS(842), - [sym_null] = ACTIONS(844), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [sym_identifier] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [650] = { + [sym_false] = ACTIONS(505), + [anon_sym_restrict] = ACTIONS(505), + [sym_identifier] = ACTIONS(505), + [anon_sym_goto] = ACTIONS(505), + [aux_sym_preproc_if_token2] = ACTIONS(505), + [anon_sym_const] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(505), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym__Atomic] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(505), + [sym_number_literal] = ACTIONS(507), + [anon_sym_volatile] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(505), + [anon_sym_signed] = ACTIONS(505), + [anon_sym_long] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [aux_sym_preproc_ifdef_token2] = ACTIONS(505), + [anon_sym_L] = ACTIONS(505), + [anon_sym___attribute__] = ACTIONS(505), + [anon_sym_sizeof] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_union] = ACTIONS(505), + [anon_sym_unsigned] = ACTIONS(505), + [anon_sym_short] = ACTIONS(505), + [anon_sym_do] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(507), + [sym_preproc_directive] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(507), + [aux_sym_preproc_if_token1] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_LPAREN2] = ACTIONS(507), + [anon_sym_else] = ACTIONS(505), + [sym_primitive_type] = ACTIONS(505), + [anon_sym_for] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [aux_sym_preproc_include_token1] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_static] = ACTIONS(505), + [anon_sym_register] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_if] = ACTIONS(505), + [anon_sym_switch] = ACTIONS(505), + [sym_true] = ACTIONS(505), + [anon_sym_enum] = ACTIONS(505), + [sym_null] = ACTIONS(505), + [anon_sym_return] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [aux_sym_preproc_def_token1] = ACTIONS(505), + [anon_sym_auto] = ACTIONS(505), + [anon_sym_inline] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + }, + [651] = { + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_union] = ACTIONS(513), + [anon_sym_sizeof] = ACTIONS(513), + [anon_sym_unsigned] = ACTIONS(513), + [anon_sym_restrict] = ACTIONS(513), + [anon_sym_short] = ACTIONS(513), + [sym_true] = ACTIONS(513), + [sym_false] = ACTIONS(513), + [sym_null] = ACTIONS(513), + [anon_sym_do] = ACTIONS(513), + [anon_sym_goto] = ACTIONS(513), + [sym_identifier] = ACTIONS(513), + [aux_sym_preproc_if_token2] = ACTIONS(513), + [sym_preproc_directive] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(511), + [aux_sym_preproc_if_token1] = ACTIONS(513), + [anon_sym_TILDE] = ACTIONS(511), + [anon_sym_const] = ACTIONS(513), + [anon_sym_LPAREN2] = ACTIONS(511), + [anon_sym_typedef] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(511), + [anon_sym_DQUOTE] = ACTIONS(511), + [anon_sym__Atomic] = ACTIONS(513), + [sym_primitive_type] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(513), + [anon_sym_break] = ACTIONS(513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(513), + [aux_sym_preproc_include_token1] = ACTIONS(513), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_volatile] = ACTIONS(513), + [anon_sym_register] = ACTIONS(513), + [anon_sym_extern] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(513), + [anon_sym_signed] = ACTIONS(513), + [anon_sym_enum] = ACTIONS(513), + [anon_sym_long] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(511), + [anon_sym_return] = ACTIONS(513), + [anon_sym_while] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(513), + [anon_sym_SEMI] = ACTIONS(511), + [sym_number_literal] = ACTIONS(511), + [aux_sym_preproc_def_token1] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(511), + [anon_sym_auto] = ACTIONS(513), + [anon_sym_L] = ACTIONS(513), + [anon_sym_inline] = ACTIONS(513), + [anon_sym___attribute__] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), }, - [639] = { - [sym_while_statement] = STATE(656), - [sym_continue_statement] = STATE(656), - [sym_goto_statement] = STATE(656), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(905), - [sym_math_expression] = STATE(905), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(656), - [sym_expression_statement] = STATE(656), - [sym_if_statement] = STATE(656), - [sym_do_statement] = STATE(656), - [sym_for_statement] = STATE(656), - [sym__expression] = STATE(905), - [sym_comma_expression] = STATE(904), - [sym_bitwise_expression] = STATE(905), - [sym_equality_expression] = STATE(905), - [sym_sizeof_expression] = STATE(905), - [sym_compound_literal_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(905), - [sym_concatenated_string] = STATE(905), - [sym_switch_statement] = STATE(656), - [sym_return_statement] = STATE(656), - [sym_break_statement] = STATE(656), - [sym_conditional_expression] = STATE(905), - [sym_assignment_expression] = STATE(905), - [sym_relational_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(656), - [anon_sym_LBRACE] = ACTIONS(842), - [sym_null] = ACTIONS(844), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), + [652] = { + [sym_while_statement] = STATE(668), + [sym_continue_statement] = STATE(668), + [sym_goto_statement] = STATE(668), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(923), + [sym_math_expression] = STATE(923), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_if_statement] = STATE(668), + [sym_do_statement] = STATE(668), + [sym_for_statement] = STATE(668), + [sym__expression] = STATE(923), + [sym_comma_expression] = STATE(922), + [sym_bitwise_expression] = STATE(923), + [sym_equality_expression] = STATE(923), + [sym_sizeof_expression] = STATE(923), + [sym_compound_literal_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(923), + [sym_concatenated_string] = STATE(923), + [sym_switch_statement] = STATE(668), + [sym_return_statement] = STATE(668), + [sym_break_statement] = STATE(668), + [sym_conditional_expression] = STATE(923), + [sym_assignment_expression] = STATE(923), + [sym_relational_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(668), + [anon_sym_LBRACE] = ACTIONS(870), + [sym_false] = ACTIONS(872), + [sym_identifier] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [sym_identifier] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(902), + [sym_true] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [640] = { - [sym_null] = ACTIONS(537), - [anon_sym_restrict] = ACTIONS(537), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(537), - [aux_sym_preproc_if_token2] = ACTIONS(537), - [anon_sym_const] = ACTIONS(537), - [anon_sym_typedef] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym__Atomic] = ACTIONS(537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(537), - [sym_number_literal] = ACTIONS(539), - [anon_sym_volatile] = ACTIONS(537), - [anon_sym_extern] = ACTIONS(537), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_struct] = ACTIONS(537), - [anon_sym_signed] = ACTIONS(537), - [anon_sym_long] = ACTIONS(537), - [anon_sym_while] = ACTIONS(537), - [aux_sym_preproc_ifdef_token2] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym___attribute__] = ACTIONS(537), - [anon_sym_sizeof] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(539), - [anon_sym_union] = ACTIONS(537), - [anon_sym_unsigned] = ACTIONS(537), - [anon_sym_short] = ACTIONS(537), - [anon_sym_do] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(539), - [sym_preproc_directive] = ACTIONS(537), - [anon_sym_AMP] = ACTIONS(539), - [aux_sym_preproc_if_token1] = ACTIONS(537), - [anon_sym_LPAREN2] = ACTIONS(539), - [anon_sym_else] = ACTIONS(537), - [sym_true] = ACTIONS(537), - [sym_primitive_type] = ACTIONS(537), - [anon_sym_for] = ACTIONS(537), - [anon_sym_break] = ACTIONS(537), - [aux_sym_preproc_include_token1] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(539), - [anon_sym_static] = ACTIONS(537), - [anon_sym_register] = ACTIONS(537), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_if] = ACTIONS(537), - [anon_sym_switch] = ACTIONS(537), - [sym_false] = ACTIONS(537), - [anon_sym_enum] = ACTIONS(537), - [sym_identifier] = ACTIONS(537), - [anon_sym_return] = ACTIONS(537), - [anon_sym_continue] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(539), - [aux_sym_preproc_def_token1] = ACTIONS(537), - [anon_sym_auto] = ACTIONS(537), - [anon_sym_inline] = ACTIONS(537), - [anon_sym_DASH] = ACTIONS(537), + [653] = { + [sym_false] = ACTIONS(551), + [anon_sym_restrict] = ACTIONS(551), + [sym_identifier] = ACTIONS(551), + [anon_sym_goto] = ACTIONS(551), + [aux_sym_preproc_if_token2] = ACTIONS(551), + [anon_sym_const] = ACTIONS(551), + [anon_sym_typedef] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym__Atomic] = ACTIONS(551), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(551), + [sym_number_literal] = ACTIONS(553), + [anon_sym_volatile] = ACTIONS(551), + [anon_sym_SQUOTE] = ACTIONS(553), + [anon_sym_extern] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_signed] = ACTIONS(551), + [anon_sym_long] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(551), + [anon_sym_L] = ACTIONS(551), + [anon_sym___attribute__] = ACTIONS(551), + [anon_sym_sizeof] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_union] = ACTIONS(551), + [anon_sym_unsigned] = ACTIONS(551), + [anon_sym_short] = ACTIONS(551), + [anon_sym_do] = ACTIONS(551), + [anon_sym_TILDE] = ACTIONS(553), + [sym_preproc_directive] = ACTIONS(551), + [anon_sym_AMP] = ACTIONS(553), + [aux_sym_preproc_if_token1] = ACTIONS(551), + [anon_sym_DQUOTE] = ACTIONS(553), + [anon_sym_LPAREN2] = ACTIONS(553), + [anon_sym_else] = ACTIONS(551), + [sym_primitive_type] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [aux_sym_preproc_include_token1] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_static] = ACTIONS(551), + [anon_sym_register] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_if] = ACTIONS(551), + [anon_sym_switch] = ACTIONS(551), + [sym_true] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(551), + [sym_null] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(553), + [aux_sym_preproc_def_token1] = ACTIONS(551), + [anon_sym_auto] = ACTIONS(551), + [anon_sym_inline] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), }, - [641] = { - [sym_while_statement] = STATE(658), - [sym_continue_statement] = STATE(658), - [sym_goto_statement] = STATE(658), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(905), - [sym_math_expression] = STATE(905), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(658), - [sym_expression_statement] = STATE(658), - [sym_if_statement] = STATE(658), - [sym_do_statement] = STATE(658), - [sym_for_statement] = STATE(658), - [sym__expression] = STATE(905), - [sym_comma_expression] = STATE(904), - [sym_bitwise_expression] = STATE(905), - [sym_equality_expression] = STATE(905), - [sym_sizeof_expression] = STATE(905), - [sym_compound_literal_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(905), - [sym_concatenated_string] = STATE(905), - [sym_switch_statement] = STATE(658), - [sym_return_statement] = STATE(658), - [sym_break_statement] = STATE(658), - [sym_conditional_expression] = STATE(905), - [sym_assignment_expression] = STATE(905), - [sym_relational_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(658), - [anon_sym_LBRACE] = ACTIONS(842), - [sym_null] = ACTIONS(844), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), + [654] = { + [sym_while_statement] = STATE(671), + [sym_continue_statement] = STATE(671), + [sym_goto_statement] = STATE(671), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(923), + [sym_math_expression] = STATE(923), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(671), + [sym_expression_statement] = STATE(671), + [sym_if_statement] = STATE(671), + [sym_do_statement] = STATE(671), + [sym_for_statement] = STATE(671), + [sym__expression] = STATE(923), + [sym_comma_expression] = STATE(922), + [sym_bitwise_expression] = STATE(923), + [sym_equality_expression] = STATE(923), + [sym_sizeof_expression] = STATE(923), + [sym_compound_literal_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(923), + [sym_concatenated_string] = STATE(923), + [sym_switch_statement] = STATE(671), + [sym_return_statement] = STATE(671), + [sym_break_statement] = STATE(671), + [sym_conditional_expression] = STATE(923), + [sym_assignment_expression] = STATE(923), + [sym_relational_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(671), + [anon_sym_LBRACE] = ACTIONS(870), + [sym_false] = ACTIONS(872), + [sym_identifier] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [sym_identifier] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [642] = { - [sym_null] = ACTIONS(543), - [anon_sym_restrict] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(543), - [aux_sym_preproc_if_token2] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_typedef] = ACTIONS(543), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym__Atomic] = ACTIONS(543), - [aux_sym_preproc_ifdef_token1] = ACTIONS(543), - [sym_number_literal] = ACTIONS(545), - [anon_sym_volatile] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(543), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_struct] = ACTIONS(543), - [anon_sym_signed] = ACTIONS(543), - [anon_sym_long] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [aux_sym_preproc_ifdef_token2] = ACTIONS(543), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [anon_sym___attribute__] = ACTIONS(543), - [anon_sym_sizeof] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_union] = ACTIONS(543), - [anon_sym_unsigned] = ACTIONS(543), - [anon_sym_short] = ACTIONS(543), - [anon_sym_do] = ACTIONS(543), - [anon_sym_TILDE] = ACTIONS(545), - [sym_preproc_directive] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(545), - [aux_sym_preproc_if_token1] = ACTIONS(543), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_else] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [sym_primitive_type] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [aux_sym_preproc_include_token1] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_static] = ACTIONS(543), - [anon_sym_register] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_if] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [sym_identifier] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(545), - [aux_sym_preproc_def_token1] = ACTIONS(543), - [anon_sym_auto] = ACTIONS(543), - [anon_sym_inline] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(902), + [sym_true] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [643] = { - [sym_null] = ACTIONS(570), - [anon_sym_restrict] = ACTIONS(570), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(570), - [aux_sym_preproc_if_token2] = ACTIONS(570), - [anon_sym_const] = ACTIONS(570), - [anon_sym_typedef] = ACTIONS(570), - [anon_sym_DASH_DASH] = ACTIONS(572), - [anon_sym__Atomic] = ACTIONS(570), - [aux_sym_preproc_ifdef_token1] = ACTIONS(570), - [sym_number_literal] = ACTIONS(572), - [anon_sym_volatile] = ACTIONS(570), - [anon_sym_extern] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(572), - [anon_sym_struct] = ACTIONS(570), - [anon_sym_signed] = ACTIONS(570), - [anon_sym_long] = ACTIONS(570), - [anon_sym_while] = ACTIONS(570), - [aux_sym_preproc_ifdef_token2] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym___attribute__] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_union] = ACTIONS(570), - [anon_sym_unsigned] = ACTIONS(570), - [anon_sym_short] = ACTIONS(570), - [anon_sym_do] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(572), - [sym_preproc_directive] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [aux_sym_preproc_if_token1] = ACTIONS(570), - [anon_sym_LPAREN2] = ACTIONS(572), - [anon_sym_else] = ACTIONS(570), - [sym_true] = ACTIONS(570), - [sym_primitive_type] = ACTIONS(570), - [anon_sym_for] = ACTIONS(570), - [anon_sym_break] = ACTIONS(570), - [aux_sym_preproc_include_token1] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_static] = ACTIONS(570), - [anon_sym_register] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_if] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(570), - [sym_false] = ACTIONS(570), - [anon_sym_enum] = ACTIONS(570), - [sym_identifier] = ACTIONS(570), - [anon_sym_return] = ACTIONS(570), - [anon_sym_continue] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(572), - [aux_sym_preproc_def_token1] = ACTIONS(570), - [anon_sym_auto] = ACTIONS(570), - [anon_sym_inline] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(570), + [655] = { + [sym_false] = ACTIONS(557), + [anon_sym_restrict] = ACTIONS(557), + [sym_identifier] = ACTIONS(557), + [anon_sym_goto] = ACTIONS(557), + [aux_sym_preproc_if_token2] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_typedef] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym__Atomic] = ACTIONS(557), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(557), + [sym_number_literal] = ACTIONS(559), + [anon_sym_volatile] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(559), + [anon_sym_extern] = ACTIONS(557), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(557), + [anon_sym_signed] = ACTIONS(557), + [anon_sym_long] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(557), + [anon_sym_L] = ACTIONS(557), + [anon_sym___attribute__] = ACTIONS(557), + [anon_sym_sizeof] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_union] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(557), + [anon_sym_short] = ACTIONS(557), + [anon_sym_do] = ACTIONS(557), + [anon_sym_TILDE] = ACTIONS(559), + [sym_preproc_directive] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(559), + [aux_sym_preproc_if_token1] = ACTIONS(557), + [anon_sym_DQUOTE] = ACTIONS(559), + [anon_sym_LPAREN2] = ACTIONS(559), + [anon_sym_else] = ACTIONS(557), + [sym_primitive_type] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [aux_sym_preproc_include_token1] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_static] = ACTIONS(557), + [anon_sym_register] = ACTIONS(557), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(559), + [anon_sym_if] = ACTIONS(557), + [anon_sym_switch] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [aux_sym_preproc_def_token1] = ACTIONS(557), + [anon_sym_auto] = ACTIONS(557), + [anon_sym_inline] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), }, - [644] = { - [sym_continue_statement] = STATE(644), - [sym_preproc_function_def] = STATE(644), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(905), - [sym_declaration] = STATE(644), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(644), - [sym_for_statement] = STATE(644), - [sym_comma_expression] = STATE(904), - [sym_equality_expression] = STATE(905), - [sym_type_definition] = STATE(644), - [sym_sizeof_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(905), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(644), - [sym_return_statement] = STATE(644), - [sym_preproc_include] = STATE(644), - [sym_conditional_expression] = STATE(905), - [sym_preproc_ifdef] = STATE(644), - [sym_relational_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(644), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(644), - [sym_while_statement] = STATE(644), - [sym_preproc_def] = STATE(644), - [sym_goto_statement] = STATE(644), - [sym_logical_expression] = STATE(905), - [sym_function_definition] = STATE(644), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(644), - [sym_expression_statement] = STATE(644), - [sym_do_statement] = STATE(644), - [sym__expression] = STATE(905), - [sym_preproc_call] = STATE(644), - [sym_bitwise_expression] = STATE(905), - [sym__declaration_specifiers] = STATE(906), - [sym_compound_literal_expression] = STATE(905), - [sym_char_literal] = STATE(905), - [sym__empty_declaration] = STATE(644), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(644), - [sym_preproc_if] = STATE(644), - [sym_assignment_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_linkage_specification] = STATE(644), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_union] = ACTIONS(581), - [anon_sym_sizeof] = ACTIONS(584), - [anon_sym_unsigned] = ACTIONS(587), + [656] = { + [sym_false] = ACTIONS(590), [anon_sym_restrict] = ACTIONS(590), - [anon_sym_short] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(593), - [sym_null] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2269), - [anon_sym_goto] = ACTIONS(2272), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(2185), - [sym_preproc_directive] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(616), - [aux_sym_preproc_if_token1] = ACTIONS(2278), - [anon_sym_TILDE] = ACTIONS(610), + [sym_identifier] = ACTIONS(590), + [anon_sym_goto] = ACTIONS(590), + [aux_sym_preproc_if_token2] = ACTIONS(590), [anon_sym_const] = ACTIONS(590), - [anon_sym_LPAREN2] = ACTIONS(622), - [anon_sym_typedef] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(628), + [anon_sym_typedef] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(592), [anon_sym__Atomic] = ACTIONS(590), - [sym_primitive_type] = ACTIONS(631), - [sym_true] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2290), - [aux_sym_preproc_include_token1] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(646), - [anon_sym_static] = ACTIONS(649), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(590), + [sym_number_literal] = ACTIONS(592), [anon_sym_volatile] = ACTIONS(590), - [anon_sym_register] = ACTIONS(649), - [anon_sym_extern] = ACTIONS(2296), - [anon_sym_STAR] = ACTIONS(616), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_struct] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_signed] = ACTIONS(587), - [anon_sym_enum] = ACTIONS(664), - [anon_sym_long] = ACTIONS(587), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_PLUS_PLUS] = ACTIONS(628), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2314), - [sym_number_literal] = ACTIONS(2317), - [aux_sym_preproc_def_token1] = ACTIONS(2320), - [sym_false] = ACTIONS(2263), - [anon_sym_auto] = ACTIONS(649), - [anon_sym_SQUOTE] = ACTIONS(688), - [anon_sym_inline] = ACTIONS(649), - [anon_sym___attribute__] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(590), + [anon_sym_signed] = ACTIONS(590), + [anon_sym_long] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(590), + [anon_sym_L] = ACTIONS(590), + [anon_sym___attribute__] = ACTIONS(590), + [anon_sym_sizeof] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_union] = ACTIONS(590), + [anon_sym_unsigned] = ACTIONS(590), + [anon_sym_short] = ACTIONS(590), + [anon_sym_do] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(592), + [sym_preproc_directive] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(592), + [aux_sym_preproc_if_token1] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_LPAREN2] = ACTIONS(592), + [anon_sym_else] = ACTIONS(590), + [sym_primitive_type] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [aux_sym_preproc_include_token1] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_static] = ACTIONS(590), + [anon_sym_register] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_if] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(590), + [sym_true] = ACTIONS(590), + [anon_sym_enum] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(592), + [aux_sym_preproc_def_token1] = ACTIONS(590), + [anon_sym_auto] = ACTIONS(590), + [anon_sym_inline] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), }, - [645] = { - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_union] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(781), - [anon_sym_unsigned] = ACTIONS(781), - [anon_sym_restrict] = ACTIONS(781), - [anon_sym_short] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(779), - [sym_null] = ACTIONS(781), - [sym_identifier] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [anon_sym_goto] = ACTIONS(781), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(781), - [sym_preproc_directive] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(779), - [aux_sym_preproc_if_token1] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_const] = ACTIONS(781), - [anon_sym_LPAREN2] = ACTIONS(779), - [anon_sym_typedef] = ACTIONS(781), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym__Atomic] = ACTIONS(781), - [sym_primitive_type] = ACTIONS(781), - [sym_true] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(781), - [aux_sym_preproc_include_token1] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_static] = ACTIONS(781), - [anon_sym_volatile] = ACTIONS(781), - [anon_sym_register] = ACTIONS(781), - [anon_sym_extern] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(779), - [anon_sym_if] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(781), - [anon_sym_switch] = ACTIONS(781), - [anon_sym_signed] = ACTIONS(781), - [anon_sym_enum] = ACTIONS(781), - [anon_sym_long] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_return] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(779), - [sym_number_literal] = ACTIONS(779), - [aux_sym_preproc_def_token1] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [anon_sym_auto] = ACTIONS(781), - [anon_sym_SQUOTE] = ACTIONS(779), - [anon_sym_inline] = ACTIONS(781), - [anon_sym___attribute__] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), + [657] = { + [sym_continue_statement] = STATE(657), + [sym_preproc_function_def] = STATE(657), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(923), + [sym_declaration] = STATE(657), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(657), + [sym_for_statement] = STATE(657), + [sym_comma_expression] = STATE(922), + [sym_equality_expression] = STATE(923), + [sym_type_definition] = STATE(657), + [sym_sizeof_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(923), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(657), + [sym_return_statement] = STATE(657), + [sym_preproc_include] = STATE(657), + [sym_conditional_expression] = STATE(923), + [sym_preproc_ifdef] = STATE(657), + [sym_relational_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(657), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(657), + [sym_while_statement] = STATE(657), + [sym_preproc_def] = STATE(657), + [sym_goto_statement] = STATE(657), + [sym_logical_expression] = STATE(923), + [sym_function_definition] = STATE(657), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(657), + [sym_expression_statement] = STATE(657), + [sym_do_statement] = STATE(657), + [sym__expression] = STATE(923), + [sym_preproc_call] = STATE(657), + [sym_bitwise_expression] = STATE(923), + [sym__declaration_specifiers] = STATE(924), + [sym_compound_literal_expression] = STATE(923), + [sym_char_literal] = STATE(923), + [sym__empty_declaration] = STATE(657), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(657), + [sym_preproc_if] = STATE(657), + [sym_assignment_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_linkage_specification] = STATE(657), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_union] = ACTIONS(601), + [anon_sym_sizeof] = ACTIONS(604), + [anon_sym_unsigned] = ACTIONS(607), + [anon_sym_restrict] = ACTIONS(610), + [anon_sym_short] = ACTIONS(607), + [sym_true] = ACTIONS(2313), + [sym_false] = ACTIONS(2313), + [sym_null] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2316), + [anon_sym_goto] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2322), + [aux_sym_preproc_if_token2] = ACTIONS(2236), + [sym_preproc_directive] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(631), + [aux_sym_preproc_if_token1] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(625), + [anon_sym_const] = ACTIONS(610), + [anon_sym_LPAREN2] = ACTIONS(639), + [anon_sym_typedef] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym__Atomic] = ACTIONS(610), + [sym_primitive_type] = ACTIONS(651), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2340), + [aux_sym_preproc_include_token1] = ACTIONS(2343), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_static] = ACTIONS(669), + [anon_sym_volatile] = ACTIONS(610), + [anon_sym_register] = ACTIONS(669), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_switch] = ACTIONS(2352), + [anon_sym_signed] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(684), + [anon_sym_long] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(645), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2364), + [sym_number_literal] = ACTIONS(2367), + [aux_sym_preproc_def_token1] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_auto] = ACTIONS(669), + [anon_sym_L] = ACTIONS(711), + [anon_sym_inline] = ACTIONS(669), + [anon_sym___attribute__] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(687), }, - [646] = { - [sym_null] = ACTIONS(793), - [anon_sym_restrict] = ACTIONS(793), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(793), - [aux_sym_preproc_if_token2] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_typedef] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym__Atomic] = ACTIONS(793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(793), - [sym_number_literal] = ACTIONS(795), - [anon_sym_volatile] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_struct] = ACTIONS(793), - [anon_sym_signed] = ACTIONS(793), - [anon_sym_long] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(793), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(795), - [anon_sym___attribute__] = ACTIONS(793), - [anon_sym_sizeof] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_union] = ACTIONS(793), - [anon_sym_unsigned] = ACTIONS(793), - [anon_sym_short] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(795), - [sym_preproc_directive] = ACTIONS(793), - [anon_sym_AMP] = ACTIONS(795), - [aux_sym_preproc_if_token1] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_else] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_primitive_type] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [aux_sym_preproc_include_token1] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_static] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_if] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [anon_sym_enum] = ACTIONS(793), - [sym_identifier] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(795), - [aux_sym_preproc_def_token1] = ACTIONS(793), - [anon_sym_auto] = ACTIONS(793), - [anon_sym_inline] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), + [658] = { + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_union] = ACTIONS(804), + [anon_sym_sizeof] = ACTIONS(804), + [anon_sym_unsigned] = ACTIONS(804), + [anon_sym_restrict] = ACTIONS(804), + [anon_sym_short] = ACTIONS(804), + [sym_true] = ACTIONS(804), + [sym_false] = ACTIONS(804), + [sym_null] = ACTIONS(804), + [anon_sym_do] = ACTIONS(804), + [anon_sym_goto] = ACTIONS(804), + [sym_identifier] = ACTIONS(804), + [aux_sym_preproc_if_token2] = ACTIONS(804), + [sym_preproc_directive] = ACTIONS(804), + [anon_sym_AMP] = ACTIONS(802), + [aux_sym_preproc_if_token1] = ACTIONS(804), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_const] = ACTIONS(804), + [anon_sym_LPAREN2] = ACTIONS(802), + [anon_sym_typedef] = ACTIONS(804), + [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym__Atomic] = ACTIONS(804), + [sym_primitive_type] = ACTIONS(804), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(804), + [anon_sym_break] = ACTIONS(804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(804), + [aux_sym_preproc_include_token1] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(802), + [anon_sym_static] = ACTIONS(804), + [anon_sym_volatile] = ACTIONS(804), + [anon_sym_register] = ACTIONS(804), + [anon_sym_extern] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(802), + [anon_sym_if] = ACTIONS(804), + [anon_sym_struct] = ACTIONS(804), + [anon_sym_switch] = ACTIONS(804), + [anon_sym_signed] = ACTIONS(804), + [anon_sym_enum] = ACTIONS(804), + [anon_sym_long] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(804), + [anon_sym_PLUS_PLUS] = ACTIONS(802), + [anon_sym_return] = ACTIONS(804), + [anon_sym_while] = ACTIONS(804), + [anon_sym_continue] = ACTIONS(804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(802), + [sym_number_literal] = ACTIONS(802), + [aux_sym_preproc_def_token1] = ACTIONS(804), + [anon_sym_SQUOTE] = ACTIONS(802), + [anon_sym_auto] = ACTIONS(804), + [anon_sym_L] = ACTIONS(804), + [anon_sym_inline] = ACTIONS(804), + [anon_sym___attribute__] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(804), }, - [647] = { - [sym_null] = ACTIONS(823), - [anon_sym_restrict] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(823), - [aux_sym_preproc_if_token2] = ACTIONS(823), - [anon_sym_const] = ACTIONS(823), - [anon_sym_typedef] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(825), - [anon_sym__Atomic] = ACTIONS(823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(823), - [sym_number_literal] = ACTIONS(825), - [anon_sym_volatile] = ACTIONS(823), - [anon_sym_extern] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_signed] = ACTIONS(823), - [anon_sym_long] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(823), - [aux_sym_preproc_elif_token1] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(825), - [anon_sym___attribute__] = ACTIONS(823), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_union] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(823), - [anon_sym_short] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [aux_sym_preproc_else_token1] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(825), - [sym_preproc_directive] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(825), - [aux_sym_preproc_if_token1] = ACTIONS(823), - [anon_sym_LPAREN2] = ACTIONS(825), - [sym_true] = ACTIONS(823), - [sym_primitive_type] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(825), - [anon_sym_static] = ACTIONS(823), - [anon_sym_register] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_if] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [anon_sym_enum] = ACTIONS(823), - [sym_identifier] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(825), - [aux_sym_preproc_def_token1] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_inline] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), + [659] = { + [sym_false] = ACTIONS(816), + [anon_sym_restrict] = ACTIONS(816), + [sym_identifier] = ACTIONS(816), + [anon_sym_goto] = ACTIONS(816), + [aux_sym_preproc_if_token2] = ACTIONS(816), + [anon_sym_const] = ACTIONS(816), + [anon_sym_typedef] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(818), + [anon_sym__Atomic] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(816), + [sym_number_literal] = ACTIONS(818), + [anon_sym_volatile] = ACTIONS(816), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(816), + [anon_sym_PLUS_PLUS] = ACTIONS(818), + [anon_sym_struct] = ACTIONS(816), + [anon_sym_signed] = ACTIONS(816), + [anon_sym_long] = ACTIONS(816), + [anon_sym_while] = ACTIONS(816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(816), + [anon_sym_L] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(816), + [anon_sym_sizeof] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsigned] = ACTIONS(816), + [anon_sym_short] = ACTIONS(816), + [anon_sym_do] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(818), + [sym_preproc_directive] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(818), + [aux_sym_preproc_if_token1] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(818), + [anon_sym_else] = ACTIONS(816), + [sym_primitive_type] = ACTIONS(816), + [anon_sym_for] = ACTIONS(816), + [anon_sym_break] = ACTIONS(816), + [aux_sym_preproc_include_token1] = ACTIONS(816), + [anon_sym_BANG] = ACTIONS(818), + [anon_sym_static] = ACTIONS(816), + [anon_sym_register] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_if] = ACTIONS(816), + [anon_sym_switch] = ACTIONS(816), + [sym_true] = ACTIONS(816), + [anon_sym_enum] = ACTIONS(816), + [sym_null] = ACTIONS(816), + [anon_sym_return] = ACTIONS(816), + [anon_sym_continue] = ACTIONS(816), + [anon_sym_SEMI] = ACTIONS(818), + [aux_sym_preproc_def_token1] = ACTIONS(816), + [anon_sym_auto] = ACTIONS(816), + [anon_sym_inline] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), }, - [648] = { - [sym_null] = ACTIONS(834), - [anon_sym_restrict] = ACTIONS(834), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(834), - [aux_sym_preproc_if_token2] = ACTIONS(834), - [anon_sym_const] = ACTIONS(834), - [anon_sym_typedef] = ACTIONS(834), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym__Atomic] = ACTIONS(834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(834), - [sym_number_literal] = ACTIONS(836), - [anon_sym_volatile] = ACTIONS(834), - [anon_sym_extern] = ACTIONS(834), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_struct] = ACTIONS(834), - [anon_sym_signed] = ACTIONS(834), - [anon_sym_long] = ACTIONS(834), - [anon_sym_while] = ACTIONS(834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(834), - [anon_sym_SQUOTE] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym___attribute__] = ACTIONS(834), - [anon_sym_sizeof] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_union] = ACTIONS(834), - [anon_sym_unsigned] = ACTIONS(834), - [anon_sym_short] = ACTIONS(834), - [anon_sym_do] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(836), - [sym_preproc_directive] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(836), - [aux_sym_preproc_if_token1] = ACTIONS(834), - [anon_sym_LPAREN2] = ACTIONS(836), - [anon_sym_else] = ACTIONS(834), - [sym_true] = ACTIONS(834), - [sym_primitive_type] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_break] = ACTIONS(834), - [aux_sym_preproc_include_token1] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(836), - [anon_sym_static] = ACTIONS(834), - [anon_sym_register] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_if] = ACTIONS(834), - [anon_sym_switch] = ACTIONS(834), - [sym_false] = ACTIONS(834), - [anon_sym_enum] = ACTIONS(834), - [sym_identifier] = ACTIONS(834), - [anon_sym_return] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(836), - [aux_sym_preproc_def_token1] = ACTIONS(834), - [anon_sym_auto] = ACTIONS(834), - [anon_sym_inline] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), + [660] = { + [sym_false] = ACTIONS(850), + [anon_sym_restrict] = ACTIONS(850), + [sym_identifier] = ACTIONS(850), + [anon_sym_goto] = ACTIONS(850), + [aux_sym_preproc_if_token2] = ACTIONS(850), + [anon_sym_const] = ACTIONS(850), + [anon_sym_typedef] = ACTIONS(850), + [anon_sym_DASH_DASH] = ACTIONS(852), + [anon_sym__Atomic] = ACTIONS(850), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(850), + [sym_number_literal] = ACTIONS(852), + [anon_sym_volatile] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_PLUS_PLUS] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(850), + [anon_sym_signed] = ACTIONS(850), + [anon_sym_long] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [aux_sym_preproc_ifdef_token2] = ACTIONS(850), + [anon_sym_L] = ACTIONS(850), + [anon_sym___attribute__] = ACTIONS(850), + [anon_sym_sizeof] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_union] = ACTIONS(850), + [anon_sym_unsigned] = ACTIONS(850), + [anon_sym_short] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [sym_preproc_directive] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(852), + [aux_sym_preproc_if_token1] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(852), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_else] = ACTIONS(850), + [sym_primitive_type] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [aux_sym_preproc_include_token1] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_static] = ACTIONS(850), + [anon_sym_register] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_if] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(850), + [sym_true] = ACTIONS(850), + [anon_sym_enum] = ACTIONS(850), + [sym_null] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(852), + [aux_sym_preproc_def_token1] = ACTIONS(850), + [anon_sym_auto] = ACTIONS(850), + [anon_sym_inline] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), }, - [649] = { - [sym_null] = ACTIONS(840), - [anon_sym_restrict] = ACTIONS(840), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(840), - [aux_sym_preproc_if_token2] = ACTIONS(840), - [anon_sym_const] = ACTIONS(840), - [anon_sym_typedef] = ACTIONS(840), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym__Atomic] = ACTIONS(840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [sym_number_literal] = ACTIONS(838), - [anon_sym_volatile] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(840), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_struct] = ACTIONS(840), - [anon_sym_signed] = ACTIONS(840), - [anon_sym_long] = ACTIONS(840), - [anon_sym_while] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [aux_sym_preproc_elif_token1] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(838), - [anon_sym___attribute__] = ACTIONS(840), - [anon_sym_sizeof] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsigned] = ACTIONS(840), - [anon_sym_short] = ACTIONS(840), - [anon_sym_do] = ACTIONS(840), - [aux_sym_preproc_else_token1] = ACTIONS(840), - [anon_sym_TILDE] = ACTIONS(838), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(838), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [anon_sym_LPAREN2] = ACTIONS(838), - [sym_true] = ACTIONS(840), - [sym_primitive_type] = ACTIONS(840), - [anon_sym_for] = ACTIONS(840), - [anon_sym_break] = ACTIONS(840), - [aux_sym_preproc_include_token1] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(838), - [anon_sym_static] = ACTIONS(840), - [anon_sym_register] = ACTIONS(840), - [anon_sym_PLUS] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(838), - [anon_sym_if] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(840), - [sym_false] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(840), - [sym_identifier] = ACTIONS(840), - [anon_sym_return] = ACTIONS(840), - [anon_sym_continue] = ACTIONS(840), - [anon_sym_SEMI] = ACTIONS(838), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [anon_sym_auto] = ACTIONS(840), - [anon_sym_inline] = ACTIONS(840), - [anon_sym_DASH] = ACTIONS(840), + [661] = { + [sym_false] = ACTIONS(856), + [anon_sym_restrict] = ACTIONS(856), + [sym_identifier] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(856), + [aux_sym_preproc_if_token2] = ACTIONS(856), + [anon_sym_const] = ACTIONS(856), + [anon_sym_typedef] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym__Atomic] = ACTIONS(856), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(856), + [sym_number_literal] = ACTIONS(858), + [anon_sym_volatile] = ACTIONS(856), + [anon_sym_SQUOTE] = ACTIONS(858), + [anon_sym_extern] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_struct] = ACTIONS(856), + [anon_sym_signed] = ACTIONS(856), + [anon_sym_long] = ACTIONS(856), + [anon_sym_while] = ACTIONS(856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(856), + [anon_sym_L] = ACTIONS(856), + [anon_sym___attribute__] = ACTIONS(856), + [anon_sym_sizeof] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_union] = ACTIONS(856), + [anon_sym_unsigned] = ACTIONS(856), + [anon_sym_short] = ACTIONS(856), + [anon_sym_do] = ACTIONS(856), + [anon_sym_TILDE] = ACTIONS(858), + [sym_preproc_directive] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [aux_sym_preproc_if_token1] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(858), + [anon_sym_LPAREN2] = ACTIONS(858), + [anon_sym_else] = ACTIONS(856), + [sym_primitive_type] = ACTIONS(856), + [anon_sym_for] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [aux_sym_preproc_include_token1] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_static] = ACTIONS(856), + [anon_sym_register] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(858), + [anon_sym_if] = ACTIONS(856), + [anon_sym_switch] = ACTIONS(856), + [sym_true] = ACTIONS(856), + [anon_sym_enum] = ACTIONS(856), + [sym_null] = ACTIONS(856), + [anon_sym_return] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(858), + [aux_sym_preproc_def_token1] = ACTIONS(856), + [anon_sym_auto] = ACTIONS(856), + [anon_sym_inline] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), }, - [650] = { - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_union] = ACTIONS(888), - [anon_sym_sizeof] = ACTIONS(888), - [anon_sym_unsigned] = ACTIONS(888), - [anon_sym_restrict] = ACTIONS(888), - [anon_sym_short] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(886), - [sym_null] = ACTIONS(888), - [sym_identifier] = ACTIONS(888), - [anon_sym_do] = ACTIONS(888), - [anon_sym_goto] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(888), - [sym_preproc_directive] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(886), - [aux_sym_preproc_if_token1] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(886), - [anon_sym_const] = ACTIONS(888), - [anon_sym_LPAREN2] = ACTIONS(886), - [anon_sym_typedef] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(886), - [anon_sym__Atomic] = ACTIONS(888), - [sym_primitive_type] = ACTIONS(888), - [sym_true] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(888), - [aux_sym_preproc_include_token1] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_static] = ACTIONS(888), - [anon_sym_volatile] = ACTIONS(888), - [anon_sym_register] = ACTIONS(888), - [anon_sym_extern] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_if] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(888), - [anon_sym_switch] = ACTIONS(888), - [anon_sym_signed] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_long] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_return] = ACTIONS(888), - [anon_sym_while] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [aux_sym_preproc_ifdef_token2] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(886), - [sym_number_literal] = ACTIONS(886), - [aux_sym_preproc_def_token1] = ACTIONS(888), - [sym_false] = ACTIONS(888), - [anon_sym_auto] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym___attribute__] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), + [662] = { + [sym_false] = ACTIONS(862), + [anon_sym_restrict] = ACTIONS(862), + [sym_identifier] = ACTIONS(862), + [anon_sym_goto] = ACTIONS(862), + [aux_sym_preproc_if_token2] = ACTIONS(862), + [anon_sym_const] = ACTIONS(862), + [anon_sym_typedef] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(860), + [anon_sym__Atomic] = ACTIONS(862), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(862), + [sym_number_literal] = ACTIONS(860), + [anon_sym_volatile] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_extern] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(860), + [anon_sym_struct] = ACTIONS(862), + [anon_sym_signed] = ACTIONS(862), + [anon_sym_long] = ACTIONS(862), + [anon_sym_while] = ACTIONS(862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(862), + [aux_sym_preproc_elif_token1] = ACTIONS(862), + [anon_sym_L] = ACTIONS(862), + [anon_sym___attribute__] = ACTIONS(862), + [anon_sym_sizeof] = ACTIONS(862), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_union] = ACTIONS(862), + [anon_sym_unsigned] = ACTIONS(862), + [anon_sym_short] = ACTIONS(862), + [anon_sym_do] = ACTIONS(862), + [aux_sym_preproc_else_token1] = ACTIONS(862), + [anon_sym_TILDE] = ACTIONS(860), + [sym_preproc_directive] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(860), + [aux_sym_preproc_if_token1] = ACTIONS(862), + [anon_sym_DQUOTE] = ACTIONS(860), + [anon_sym_LPAREN2] = ACTIONS(860), + [sym_primitive_type] = ACTIONS(862), + [anon_sym_for] = ACTIONS(862), + [anon_sym_break] = ACTIONS(862), + [aux_sym_preproc_include_token1] = ACTIONS(862), + [anon_sym_BANG] = ACTIONS(860), + [anon_sym_static] = ACTIONS(862), + [anon_sym_register] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_if] = ACTIONS(862), + [anon_sym_switch] = ACTIONS(862), + [sym_true] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [sym_null] = ACTIONS(862), + [anon_sym_return] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(860), + [aux_sym_preproc_def_token1] = ACTIONS(862), + [anon_sym_auto] = ACTIONS(862), + [anon_sym_inline] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(862), }, - [651] = { - [sym_null] = ACTIONS(896), - [anon_sym_restrict] = ACTIONS(896), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(896), - [sym_number_literal] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_signed] = ACTIONS(896), - [anon_sym_long] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsigned] = ACTIONS(896), - [anon_sym_short] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(898), - [anon_sym_else] = ACTIONS(896), - [sym_true] = ACTIONS(896), - [sym_primitive_type] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [aux_sym_preproc_include_token1] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_static] = ACTIONS(896), - [anon_sym_register] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_if] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [sym_identifier] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(896), - [anon_sym_auto] = ACTIONS(896), - [anon_sym_inline] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), + [663] = { + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_union] = ACTIONS(866), + [anon_sym_sizeof] = ACTIONS(866), + [anon_sym_unsigned] = ACTIONS(866), + [anon_sym_restrict] = ACTIONS(866), + [anon_sym_short] = ACTIONS(866), + [sym_true] = ACTIONS(866), + [sym_false] = ACTIONS(866), + [sym_null] = ACTIONS(866), + [anon_sym_do] = ACTIONS(866), + [anon_sym_goto] = ACTIONS(866), + [sym_identifier] = ACTIONS(866), + [aux_sym_preproc_if_token2] = ACTIONS(866), + [sym_preproc_directive] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(864), + [aux_sym_preproc_if_token1] = ACTIONS(866), + [anon_sym_TILDE] = ACTIONS(864), + [anon_sym_const] = ACTIONS(866), + [anon_sym_LPAREN2] = ACTIONS(864), + [anon_sym_typedef] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym_DQUOTE] = ACTIONS(864), + [anon_sym__Atomic] = ACTIONS(866), + [sym_primitive_type] = ACTIONS(866), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [aux_sym_preproc_ifdef_token1] = ACTIONS(866), + [aux_sym_preproc_include_token1] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_static] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_register] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_if] = ACTIONS(866), + [anon_sym_struct] = ACTIONS(866), + [anon_sym_switch] = ACTIONS(866), + [anon_sym_signed] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [anon_sym_long] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [aux_sym_preproc_ifdef_token2] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(864), + [sym_number_literal] = ACTIONS(864), + [aux_sym_preproc_def_token1] = ACTIONS(866), + [anon_sym_SQUOTE] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(866), + [anon_sym_L] = ACTIONS(866), + [anon_sym_inline] = ACTIONS(866), + [anon_sym___attribute__] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), }, - [652] = { - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_union] = ACTIONS(955), - [anon_sym_sizeof] = ACTIONS(955), - [anon_sym_unsigned] = ACTIONS(955), - [anon_sym_restrict] = ACTIONS(955), - [anon_sym_short] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym_null] = ACTIONS(955), - [sym_identifier] = ACTIONS(955), - [anon_sym_do] = ACTIONS(955), - [anon_sym_goto] = ACTIONS(955), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(955), - [sym_preproc_directive] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(953), - [aux_sym_preproc_if_token1] = ACTIONS(955), - [anon_sym_TILDE] = ACTIONS(953), - [anon_sym_const] = ACTIONS(955), - [anon_sym_LPAREN2] = ACTIONS(953), - [anon_sym_typedef] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym__Atomic] = ACTIONS(955), - [sym_primitive_type] = ACTIONS(955), - [sym_true] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [aux_sym_preproc_ifdef_token1] = ACTIONS(955), - [aux_sym_preproc_include_token1] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_static] = ACTIONS(955), - [anon_sym_volatile] = ACTIONS(955), - [anon_sym_register] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_if] = ACTIONS(955), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_switch] = ACTIONS(955), - [anon_sym_signed] = ACTIONS(955), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_long] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_return] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [aux_sym_preproc_ifdef_token2] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(953), - [sym_number_literal] = ACTIONS(953), - [aux_sym_preproc_def_token1] = ACTIONS(955), - [sym_false] = ACTIONS(955), - [anon_sym_auto] = ACTIONS(955), - [anon_sym_SQUOTE] = ACTIONS(953), - [anon_sym_inline] = ACTIONS(955), - [anon_sym___attribute__] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), + [664] = { + [sym_false] = ACTIONS(918), + [anon_sym_restrict] = ACTIONS(918), + [sym_identifier] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(918), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [sym_number_literal] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_signed] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [anon_sym_L] = ACTIONS(918), + [anon_sym___attribute__] = ACTIONS(918), + [anon_sym_sizeof] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_union] = ACTIONS(918), + [anon_sym_unsigned] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_else] = ACTIONS(918), + [sym_primitive_type] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_static] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_if] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(918), + [sym_true] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [sym_null] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [anon_sym_auto] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), }, - [653] = { - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_union] = ACTIONS(965), - [anon_sym_sizeof] = ACTIONS(965), - [anon_sym_unsigned] = ACTIONS(965), + [665] = { + [sym_false] = ACTIONS(965), [anon_sym_restrict] = ACTIONS(965), - [anon_sym_short] = ACTIONS(965), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym_null] = ACTIONS(965), [sym_identifier] = ACTIONS(965), - [anon_sym_do] = ACTIONS(965), [anon_sym_goto] = ACTIONS(965), - [sym_comment] = ACTIONS(3), [aux_sym_preproc_if_token2] = ACTIONS(965), - [sym_preproc_directive] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(963), - [aux_sym_preproc_if_token1] = ACTIONS(965), - [anon_sym_TILDE] = ACTIONS(963), [anon_sym_const] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(963), [anon_sym_typedef] = ACTIONS(965), - [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(967), [anon_sym__Atomic] = ACTIONS(965), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(965), + [sym_number_literal] = ACTIONS(967), + [anon_sym_volatile] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_extern] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(967), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_signed] = ACTIONS(965), + [anon_sym_long] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(965), + [aux_sym_preproc_elif_token1] = ACTIONS(965), + [anon_sym_L] = ACTIONS(965), + [anon_sym___attribute__] = ACTIONS(965), + [anon_sym_sizeof] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsigned] = ACTIONS(965), + [anon_sym_short] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [aux_sym_preproc_else_token1] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [sym_preproc_directive] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [aux_sym_preproc_if_token1] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_LPAREN2] = ACTIONS(967), [sym_primitive_type] = ACTIONS(965), - [sym_true] = ACTIONS(965), [anon_sym_for] = ACTIONS(965), [anon_sym_break] = ACTIONS(965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(965), [aux_sym_preproc_include_token1] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(967), [anon_sym_static] = ACTIONS(965), - [anon_sym_volatile] = ACTIONS(965), [anon_sym_register] = ACTIONS(965), - [anon_sym_extern] = ACTIONS(965), - [anon_sym_STAR] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(967), [anon_sym_if] = ACTIONS(965), - [anon_sym_struct] = ACTIONS(965), [anon_sym_switch] = ACTIONS(965), - [anon_sym_signed] = ACTIONS(965), + [sym_true] = ACTIONS(965), [anon_sym_enum] = ACTIONS(965), - [anon_sym_long] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_PLUS_PLUS] = ACTIONS(963), + [sym_null] = ACTIONS(965), [anon_sym_return] = ACTIONS(965), - [anon_sym_while] = ACTIONS(965), [anon_sym_continue] = ACTIONS(965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(963), - [sym_number_literal] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(967), [aux_sym_preproc_def_token1] = ACTIONS(965), - [sym_false] = ACTIONS(965), [anon_sym_auto] = ACTIONS(965), - [anon_sym_SQUOTE] = ACTIONS(963), [anon_sym_inline] = ACTIONS(965), - [anon_sym___attribute__] = ACTIONS(965), [anon_sym_DASH] = ACTIONS(965), }, - [654] = { - [sym_null] = ACTIONS(967), - [anon_sym_restrict] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(967), - [aux_sym_preproc_if_token2] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_typedef] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym__Atomic] = ACTIONS(967), - [aux_sym_preproc_ifdef_token1] = ACTIONS(967), - [sym_number_literal] = ACTIONS(969), - [anon_sym_volatile] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_signed] = ACTIONS(967), - [anon_sym_long] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [aux_sym_preproc_ifdef_token2] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [anon_sym___attribute__] = ACTIONS(967), - [anon_sym_sizeof] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsigned] = ACTIONS(967), - [anon_sym_short] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(969), - [sym_preproc_directive] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(969), - [aux_sym_preproc_if_token1] = ACTIONS(967), - [anon_sym_LPAREN2] = ACTIONS(969), - [anon_sym_else] = ACTIONS(2323), - [sym_true] = ACTIONS(967), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [aux_sym_preproc_include_token1] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_static] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_if] = ACTIONS(967), - [anon_sym_switch] = ACTIONS(967), - [sym_false] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [sym_identifier] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [aux_sym_preproc_def_token1] = ACTIONS(967), - [anon_sym_auto] = ACTIONS(967), - [anon_sym_inline] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - }, - [655] = { - [sym_null] = ACTIONS(1011), - [anon_sym_restrict] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1011), - [aux_sym_preproc_if_token2] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_typedef] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym__Atomic] = ACTIONS(1011), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1011), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_volatile] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_signed] = ACTIONS(1011), - [anon_sym_long] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1011), - [anon_sym_SQUOTE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym___attribute__] = ACTIONS(1011), - [anon_sym_sizeof] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_unsigned] = ACTIONS(1011), - [anon_sym_short] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [sym_preproc_directive] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1013), - [aux_sym_preproc_if_token1] = ACTIONS(1011), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_else] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [sym_primitive_type] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [aux_sym_preproc_include_token1] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_switch] = ACTIONS(1011), - [sym_false] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [aux_sym_preproc_def_token1] = ACTIONS(1011), - [anon_sym_auto] = ACTIONS(1011), - [anon_sym_inline] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), + [666] = { + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_union] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(986), + [anon_sym_unsigned] = ACTIONS(986), + [anon_sym_restrict] = ACTIONS(986), + [anon_sym_short] = ACTIONS(986), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_goto] = ACTIONS(986), + [sym_identifier] = ACTIONS(986), + [aux_sym_preproc_if_token2] = ACTIONS(986), + [sym_preproc_directive] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(984), + [anon_sym_typedef] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(986), + [sym_primitive_type] = ACTIONS(986), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(986), + [aux_sym_preproc_include_token1] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_static] = ACTIONS(986), + [anon_sym_volatile] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_if] = ACTIONS(986), + [anon_sym_struct] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(986), + [anon_sym_signed] = ACTIONS(986), + [anon_sym_enum] = ACTIONS(986), + [anon_sym_long] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_return] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(984), + [sym_number_literal] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(986), + [anon_sym_L] = ACTIONS(986), + [anon_sym_inline] = ACTIONS(986), + [anon_sym___attribute__] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), }, - [656] = { - [sym_null] = ACTIONS(1035), - [anon_sym_restrict] = ACTIONS(1035), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1035), - [aux_sym_preproc_if_token2] = ACTIONS(1035), - [anon_sym_const] = ACTIONS(1035), - [anon_sym_typedef] = ACTIONS(1035), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [anon_sym__Atomic] = ACTIONS(1035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1035), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_volatile] = ACTIONS(1035), - [anon_sym_extern] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1035), - [anon_sym_signed] = ACTIONS(1035), - [anon_sym_long] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(1035), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym___attribute__] = ACTIONS(1035), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1035), - [anon_sym_unsigned] = ACTIONS(1035), - [anon_sym_short] = ACTIONS(1035), - [anon_sym_do] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1035), - [anon_sym_AMP] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1035), - [anon_sym_LPAREN2] = ACTIONS(1037), - [anon_sym_else] = ACTIONS(1035), - [sym_true] = ACTIONS(1035), - [sym_primitive_type] = ACTIONS(1035), - [anon_sym_for] = ACTIONS(1035), - [anon_sym_break] = ACTIONS(1035), - [aux_sym_preproc_include_token1] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1035), - [anon_sym_register] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1035), - [sym_false] = ACTIONS(1035), - [anon_sym_enum] = ACTIONS(1035), - [sym_identifier] = ACTIONS(1035), - [anon_sym_return] = ACTIONS(1035), - [anon_sym_continue] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1035), - [anon_sym_auto] = ACTIONS(1035), - [anon_sym_inline] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), + [667] = { + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_union] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(994), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_const] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [anon_sym__Atomic] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_static] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_if] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_return] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(994), + [sym_number_literal] = ACTIONS(994), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_L] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), }, - [657] = { - [sym_null] = ACTIONS(1039), - [anon_sym_restrict] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1039), - [aux_sym_preproc_if_token2] = ACTIONS(1039), - [anon_sym_const] = ACTIONS(1039), - [anon_sym_typedef] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1041), - [anon_sym__Atomic] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_volatile] = ACTIONS(1039), - [anon_sym_extern] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1039), - [anon_sym_signed] = ACTIONS(1039), - [anon_sym_long] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym___attribute__] = ACTIONS(1039), - [anon_sym_sizeof] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1039), - [anon_sym_unsigned] = ACTIONS(1039), - [anon_sym_short] = ACTIONS(1039), - [anon_sym_do] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [anon_sym_LPAREN2] = ACTIONS(1041), - [anon_sym_else] = ACTIONS(1039), - [sym_true] = ACTIONS(1039), - [sym_primitive_type] = ACTIONS(1039), - [anon_sym_for] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(1039), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_register] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_enum] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1039), - [anon_sym_return] = ACTIONS(1039), - [anon_sym_continue] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [anon_sym_auto] = ACTIONS(1039), - [anon_sym_inline] = ACTIONS(1039), - [anon_sym_DASH] = ACTIONS(1039), + [668] = { + [sym_false] = ACTIONS(998), + [anon_sym_restrict] = ACTIONS(998), + [sym_identifier] = ACTIONS(998), + [anon_sym_goto] = ACTIONS(998), + [aux_sym_preproc_if_token2] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(998), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(998), + [anon_sym_signed] = ACTIONS(998), + [anon_sym_long] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [aux_sym_preproc_ifdef_token2] = ACTIONS(998), + [anon_sym_L] = ACTIONS(998), + [anon_sym___attribute__] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(998), + [anon_sym_unsigned] = ACTIONS(998), + [anon_sym_short] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [aux_sym_preproc_include_token1] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(998), + [anon_sym_switch] = ACTIONS(998), + [sym_true] = ACTIONS(998), + [anon_sym_enum] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(998), + [anon_sym_auto] = ACTIONS(998), + [anon_sym_inline] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), }, - [658] = { - [sym_null] = ACTIONS(1043), - [anon_sym_restrict] = ACTIONS(1043), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1043), - [aux_sym_preproc_if_token2] = ACTIONS(1043), - [anon_sym_const] = ACTIONS(1043), - [anon_sym_typedef] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1045), - [anon_sym__Atomic] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [sym_number_literal] = ACTIONS(1045), - [anon_sym_volatile] = ACTIONS(1043), - [anon_sym_extern] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1043), - [anon_sym_signed] = ACTIONS(1043), - [anon_sym_long] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1045), - [anon_sym___attribute__] = ACTIONS(1043), - [anon_sym_sizeof] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1043), - [anon_sym_unsigned] = ACTIONS(1043), - [anon_sym_short] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1045), - [sym_preproc_directive] = ACTIONS(1043), - [anon_sym_AMP] = ACTIONS(1045), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [anon_sym_LPAREN2] = ACTIONS(1045), - [anon_sym_else] = ACTIONS(1043), - [sym_true] = ACTIONS(1043), - [sym_primitive_type] = ACTIONS(1043), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_break] = ACTIONS(1043), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_register] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(1043), - [sym_false] = ACTIONS(1043), - [anon_sym_enum] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_continue] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1045), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [anon_sym_auto] = ACTIONS(1043), - [anon_sym_inline] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), + [669] = { + [sym_false] = ACTIONS(1042), + [anon_sym_restrict] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1042), + [anon_sym_goto] = ACTIONS(1042), + [aux_sym_preproc_if_token2] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1042), + [sym_number_literal] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1042), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1042), + [anon_sym_L] = ACTIONS(1042), + [anon_sym___attribute__] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1042), + [sym_true] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [sym_null] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1042), + [anon_sym_auto] = ACTIONS(1042), + [anon_sym_inline] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), }, - [659] = { - [sym_null] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [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(1049), - [anon_sym__Atomic] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [sym_number_literal] = ACTIONS(1049), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1049), - [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_SQUOTE] = ACTIONS(1049), - [anon_sym_DQUOTE] = ACTIONS(1049), - [anon_sym___attribute__] = ACTIONS(1051), - [anon_sym_sizeof] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1049), - [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), - [anon_sym_TILDE] = ACTIONS(1049), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1049), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [anon_sym_LPAREN2] = ACTIONS(1049), - [sym_true] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1051), - [aux_sym_preproc_include_token1] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_switch] = ACTIONS(1051), - [sym_false] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1049), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [anon_sym_inline] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), + [670] = { + [sym_false] = ACTIONS(1062), + [anon_sym_restrict] = ACTIONS(1062), + [sym_identifier] = 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_comment] = ACTIONS(3), + [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), + [anon_sym_long] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1062), + [anon_sym_L] = ACTIONS(1062), + [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), + [anon_sym_TILDE] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1062), + [sym_primitive_type] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_static] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_switch] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [anon_sym_enum] = ACTIONS(1062), + [sym_null] = 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_auto] = ACTIONS(1062), + [anon_sym_inline] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), }, - [660] = { - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1128), - [anon_sym_sizeof] = ACTIONS(1128), - [anon_sym_unsigned] = ACTIONS(1128), - [anon_sym_restrict] = ACTIONS(1128), - [anon_sym_short] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1130), - [sym_null] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = 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_const] = ACTIONS(1128), - [anon_sym_LPAREN2] = ACTIONS(1130), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym__Atomic] = ACTIONS(1128), - [sym_primitive_type] = ACTIONS(1128), - [sym_true] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_break] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1128), - [aux_sym_preproc_include_token1] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_volatile] = ACTIONS(1128), - [anon_sym_register] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_struct] = ACTIONS(1128), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_signed] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_long] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1130), - [sym_number_literal] = ACTIONS(1130), - [aux_sym_preproc_def_token1] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [anon_sym_auto] = ACTIONS(1128), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym___attribute__] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), + [671] = { + [sym_false] = ACTIONS(1066), + [anon_sym_restrict] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1066), + [anon_sym_goto] = ACTIONS(1066), + [aux_sym_preproc_if_token2] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1066), + [sym_number_literal] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1066), + [anon_sym_signed] = ACTIONS(1066), + [anon_sym_long] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1066), + [anon_sym_L] = ACTIONS(1066), + [anon_sym___attribute__] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1066), + [anon_sym_unsigned] = ACTIONS(1066), + [anon_sym_short] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1066), + [sym_primitive_type] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [aux_sym_preproc_include_token1] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_switch] = ACTIONS(1066), + [sym_true] = ACTIONS(1066), + [anon_sym_enum] = ACTIONS(1066), + [sym_null] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1066), + [anon_sym_auto] = ACTIONS(1066), + [anon_sym_inline] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), }, - [661] = { - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1144), - [anon_sym_sizeof] = ACTIONS(1144), - [anon_sym_unsigned] = ACTIONS(1144), - [anon_sym_restrict] = ACTIONS(1144), - [anon_sym_short] = ACTIONS(1144), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_null] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [anon_sym_goto] = ACTIONS(1144), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1144), - [sym_preproc_directive] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(1142), - [anon_sym_typedef] = ACTIONS(1144), - [anon_sym_DASH_DASH] = ACTIONS(1142), - [anon_sym__Atomic] = ACTIONS(1144), - [sym_primitive_type] = ACTIONS(1144), - [sym_true] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1144), - [aux_sym_preproc_include_token1] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_volatile] = ACTIONS(1144), - [anon_sym_register] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_switch] = ACTIONS(1144), - [anon_sym_signed] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_long] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1142), - [sym_number_literal] = ACTIONS(1142), - [aux_sym_preproc_def_token1] = ACTIONS(1144), - [sym_false] = ACTIONS(1144), - [anon_sym_auto] = ACTIONS(1144), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_inline] = ACTIONS(1144), - [anon_sym___attribute__] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1144), + [672] = { + [sym_false] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [aux_sym_preproc_if_token2] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [sym_number_literal] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [aux_sym_preproc_elif_token1] = ACTIONS(1074), + [anon_sym_L] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [aux_sym_preproc_else_token1] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [sym_true] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), }, - [662] = { - [sym_null] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1239), - [aux_sym_preproc_if_token2] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym__Atomic] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1241), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1239), - [sym_true] = ACTIONS(1239), - [sym_primitive_type] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_switch] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [sym_identifier] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), + [673] = { + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_union] = ACTIONS(1158), + [anon_sym_sizeof] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(1158), + [anon_sym_restrict] = ACTIONS(1158), + [anon_sym_short] = ACTIONS(1158), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_goto] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1158), + [aux_sym_preproc_if_token2] = ACTIONS(1158), + [sym_preproc_directive] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1160), + [aux_sym_preproc_if_token1] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1158), + [anon_sym_LPAREN2] = ACTIONS(1160), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1160), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym__Atomic] = ACTIONS(1158), + [sym_primitive_type] = ACTIONS(1158), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_break] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1158), + [aux_sym_preproc_include_token1] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_volatile] = ACTIONS(1158), + [anon_sym_register] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_struct] = ACTIONS(1158), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_signed] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_long] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1158), + [anon_sym_PLUS_PLUS] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1160), + [sym_number_literal] = ACTIONS(1160), + [aux_sym_preproc_def_token1] = ACTIONS(1158), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_auto] = ACTIONS(1158), + [anon_sym_L] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym___attribute__] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), }, - [663] = { - [anon_sym_LBRACE] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1249), - [anon_sym_unsigned] = ACTIONS(1249), - [anon_sym_restrict] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1247), - [sym_null] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1249), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1249), - [sym_preproc_directive] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(1247), - [anon_sym_typedef] = ACTIONS(1249), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1249), - [sym_primitive_type] = ACTIONS(1249), - [sym_true] = ACTIONS(1249), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_break] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1249), - [anon_sym_volatile] = ACTIONS(1249), - [anon_sym_register] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_struct] = ACTIONS(1249), - [anon_sym_switch] = ACTIONS(1249), - [anon_sym_signed] = ACTIONS(1249), - [anon_sym_enum] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1249), - [anon_sym_continue] = ACTIONS(1249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1247), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [sym_false] = ACTIONS(1249), - [anon_sym_auto] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1249), - [anon_sym___attribute__] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), + [674] = { + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_sizeof] = ACTIONS(1174), + [anon_sym_unsigned] = ACTIONS(1174), + [anon_sym_restrict] = ACTIONS(1174), + [anon_sym_short] = ACTIONS(1174), + [sym_true] = ACTIONS(1174), + [sym_false] = ACTIONS(1174), + [sym_null] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_goto] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1174), + [aux_sym_preproc_if_token2] = ACTIONS(1174), + [sym_preproc_directive] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1172), + [aux_sym_preproc_if_token1] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1172), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_DQUOTE] = ACTIONS(1172), + [anon_sym__Atomic] = ACTIONS(1174), + [sym_primitive_type] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_break] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1174), + [aux_sym_preproc_include_token1] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_volatile] = ACTIONS(1174), + [anon_sym_register] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_struct] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_signed] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_long] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1174), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1174), + [anon_sym_SEMI] = ACTIONS(1172), + [sym_number_literal] = ACTIONS(1172), + [aux_sym_preproc_def_token1] = ACTIONS(1174), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_auto] = ACTIONS(1174), + [anon_sym_L] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym___attribute__] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), }, - [664] = { - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_null] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1311), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1313), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [sym_true] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1313), - [sym_number_literal] = ACTIONS(1313), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), + [675] = { + [sym_false] = ACTIONS(1273), + [anon_sym_restrict] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [aux_sym_preproc_if_token2] = ACTIONS(1273), + [anon_sym_const] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1273), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1273), + [anon_sym_long] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), + [anon_sym_L] = ACTIONS(1273), + [anon_sym___attribute__] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1273), + [anon_sym_unsigned] = ACTIONS(1273), + [anon_sym_short] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1273), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_register] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_switch] = ACTIONS(1273), + [sym_true] = ACTIONS(1273), + [anon_sym_enum] = ACTIONS(1273), + [sym_null] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [anon_sym_auto] = ACTIONS(1273), + [anon_sym_inline] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), }, - [665] = { - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_null] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1337), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [sym_true] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1337), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), + [676] = { + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [sym_null] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_if_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1281), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym__Atomic] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1281), + [sym_number_literal] = ACTIONS(1281), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_L] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), }, - [666] = { - [anon_sym_LBRACE] = ACTIONS(1343), + [677] = { + [anon_sym_LBRACE] = ACTIONS(1347), [anon_sym_union] = ACTIONS(1345), [anon_sym_sizeof] = ACTIONS(1345), [anon_sym_unsigned] = ACTIONS(1345), [anon_sym_restrict] = ACTIONS(1345), [anon_sym_short] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1343), + [sym_true] = ACTIONS(1345), + [sym_false] = ACTIONS(1345), [sym_null] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1345), [anon_sym_do] = ACTIONS(1345), [anon_sym_goto] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1345), [aux_sym_preproc_if_token2] = ACTIONS(1345), [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1347), [aux_sym_preproc_if_token1] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1347), [anon_sym_const] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1347), [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), [anon_sym__Atomic] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(1345), - [sym_true] = ACTIONS(1345), + [sym_comment] = ACTIONS(3), [anon_sym_for] = ACTIONS(1345), [anon_sym_break] = ACTIONS(1345), [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), [aux_sym_preproc_include_token1] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1347), [anon_sym_static] = ACTIONS(1345), [anon_sym_volatile] = ACTIONS(1345), [anon_sym_register] = ACTIONS(1345), [anon_sym_extern] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1347), [anon_sym_if] = ACTIONS(1345), [anon_sym_struct] = ACTIONS(1345), [anon_sym_switch] = ACTIONS(1345), @@ -32287,13850 +32905,14194 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1345), [anon_sym_long] = ACTIONS(1345), [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), [anon_sym_return] = ACTIONS(1345), [anon_sym_while] = ACTIONS(1345), [anon_sym_continue] = ACTIONS(1345), [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1347), [aux_sym_preproc_def_token1] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1347), [anon_sym_auto] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_L] = ACTIONS(1345), [anon_sym_inline] = ACTIONS(1345), [anon_sym___attribute__] = ACTIONS(1345), [anon_sym_DASH] = ACTIONS(1345), }, - [667] = { - [sym_while_statement] = STATE(677), - [sym_continue_statement] = STATE(677), - [sym_goto_statement] = STATE(677), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(905), - [sym_math_expression] = STATE(905), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(677), - [sym_expression_statement] = STATE(677), - [sym_if_statement] = STATE(677), - [sym_do_statement] = STATE(677), - [sym_for_statement] = STATE(677), - [sym__expression] = STATE(905), - [sym_comma_expression] = STATE(904), - [sym_bitwise_expression] = STATE(905), - [sym_equality_expression] = STATE(905), - [sym_sizeof_expression] = STATE(905), - [sym_compound_literal_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(905), - [sym_concatenated_string] = STATE(905), - [sym_switch_statement] = STATE(677), - [sym_return_statement] = STATE(677), - [sym_break_statement] = STATE(677), - [sym_conditional_expression] = STATE(905), - [sym_assignment_expression] = STATE(905), - [sym_relational_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(677), - [anon_sym_LBRACE] = ACTIONS(842), - [sym_null] = ACTIONS(844), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [sym_identifier] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [668] = { - [sym_null] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1353), - [aux_sym_preproc_if_token2] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym__Atomic] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1355), - [sym_preproc_directive] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_else] = ACTIONS(1353), - [sym_true] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - }, - [669] = { - [sym_null] = ACTIONS(1379), - [anon_sym_restrict] = ACTIONS(1379), + [678] = { + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_sizeof] = ACTIONS(1373), + [anon_sym_unsigned] = ACTIONS(1373), + [anon_sym_restrict] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [sym_true] = ACTIONS(1373), + [sym_false] = ACTIONS(1373), + [sym_null] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1373), + [aux_sym_preproc_if_token2] = ACTIONS(1373), + [sym_preproc_directive] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [aux_sym_preproc_if_token1] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_LPAREN2] = ACTIONS(1371), + [anon_sym_typedef] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym__Atomic] = ACTIONS(1373), + [sym_primitive_type] = ACTIONS(1373), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1379), - [aux_sym_preproc_if_token2] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_typedef] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym__Atomic] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), - [sym_number_literal] = ACTIONS(1377), - [anon_sym_volatile] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1379), - [anon_sym_signed] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), - [aux_sym_preproc_elif_token1] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(1377), - [anon_sym___attribute__] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_volatile] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1373), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_signed] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1371), + [sym_number_literal] = ACTIONS(1371), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_auto] = ACTIONS(1373), + [anon_sym_L] = ACTIONS(1373), + [anon_sym_inline] = ACTIONS(1373), + [anon_sym___attribute__] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + }, + [679] = { [anon_sym_LBRACE] = ACTIONS(1377), [anon_sym_union] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1379), [anon_sym_unsigned] = ACTIONS(1379), + [anon_sym_restrict] = ACTIONS(1379), [anon_sym_short] = ACTIONS(1379), + [sym_true] = ACTIONS(1379), + [sym_false] = ACTIONS(1379), + [sym_null] = ACTIONS(1379), [anon_sym_do] = ACTIONS(1379), - [aux_sym_preproc_else_token1] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_goto] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1379), + [aux_sym_preproc_if_token2] = ACTIONS(1379), [sym_preproc_directive] = ACTIONS(1379), [anon_sym_AMP] = ACTIONS(1377), [aux_sym_preproc_if_token1] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1379), [anon_sym_LPAREN2] = ACTIONS(1377), - [sym_true] = ACTIONS(1379), + [anon_sym_typedef] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym__Atomic] = ACTIONS(1379), [sym_primitive_type] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), [anon_sym_for] = ACTIONS(1379), [anon_sym_break] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), [aux_sym_preproc_include_token1] = ACTIONS(1379), [anon_sym_BANG] = ACTIONS(1377), [anon_sym_static] = ACTIONS(1379), + [anon_sym_volatile] = ACTIONS(1379), [anon_sym_register] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1379), [anon_sym_STAR] = ACTIONS(1377), [anon_sym_if] = ACTIONS(1379), + [anon_sym_struct] = ACTIONS(1379), [anon_sym_switch] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1379), [anon_sym_enum] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_return] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), [anon_sym_continue] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), [anon_sym_SEMI] = ACTIONS(1377), + [sym_number_literal] = ACTIONS(1377), [aux_sym_preproc_def_token1] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1377), [anon_sym_auto] = ACTIONS(1379), + [anon_sym_L] = ACTIONS(1379), [anon_sym_inline] = ACTIONS(1379), + [anon_sym___attribute__] = ACTIONS(1379), [anon_sym_DASH] = ACTIONS(1379), }, - [670] = { - [sym_null] = ACTIONS(1391), - [anon_sym_restrict] = ACTIONS(1391), + [680] = { + [sym_while_statement] = STATE(691), + [sym_continue_statement] = STATE(691), + [sym_goto_statement] = STATE(691), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(923), + [sym_math_expression] = STATE(923), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_if_statement] = STATE(691), + [sym_do_statement] = STATE(691), + [sym_for_statement] = STATE(691), + [sym__expression] = STATE(923), + [sym_comma_expression] = STATE(922), + [sym_bitwise_expression] = STATE(923), + [sym_equality_expression] = STATE(923), + [sym_sizeof_expression] = STATE(923), + [sym_compound_literal_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(923), + [sym_concatenated_string] = STATE(923), + [sym_switch_statement] = STATE(691), + [sym_return_statement] = STATE(691), + [sym_break_statement] = STATE(691), + [sym_conditional_expression] = STATE(923), + [sym_assignment_expression] = STATE(923), + [sym_relational_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(691), + [anon_sym_LBRACE] = ACTIONS(870), + [sym_false] = ACTIONS(872), + [sym_identifier] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1391), - [aux_sym_preproc_if_token2] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_typedef] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(902), + [sym_true] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [681] = { + [sym_false] = ACTIONS(1387), + [anon_sym_restrict] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1387), + [anon_sym_goto] = ACTIONS(1387), + [aux_sym_preproc_if_token2] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_typedef] = ACTIONS(1387), [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym__Atomic] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1391), + [anon_sym__Atomic] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), [sym_number_literal] = ACTIONS(1389), - [anon_sym_volatile] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1391), - [aux_sym_preproc_elif_token1] = ACTIONS(1391), + [anon_sym_volatile] = ACTIONS(1387), [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [anon_sym___attribute__] = ACTIONS(1391), - [anon_sym_sizeof] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), + [anon_sym_L] = ACTIONS(1387), + [anon_sym___attribute__] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1387), [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_unsigned] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [aux_sym_preproc_else_token1] = ACTIONS(1391), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), [anon_sym_TILDE] = ACTIONS(1389), - [sym_preproc_directive] = ACTIONS(1391), + [sym_preproc_directive] = ACTIONS(1387), [anon_sym_AMP] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1391), + [aux_sym_preproc_if_token1] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), [anon_sym_LPAREN2] = ACTIONS(1389), - [sym_true] = ACTIONS(1391), - [sym_primitive_type] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [aux_sym_preproc_include_token1] = ACTIONS(1391), + [anon_sym_else] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [aux_sym_preproc_include_token1] = ACTIONS(1387), [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_register] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [sym_false] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [sym_true] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [sym_null] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), [anon_sym_SEMI] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1391), - [anon_sym_auto] = ACTIONS(1391), - [anon_sym_inline] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - }, - [671] = { - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1435), - [anon_sym_unsigned] = ACTIONS(1435), - [anon_sym_restrict] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1437), - [sym_null] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_goto] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1435), - [sym_preproc_directive] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1437), - [anon_sym_typedef] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym__Atomic] = ACTIONS(1435), - [sym_primitive_type] = ACTIONS(1435), - [sym_true] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), - [aux_sym_preproc_include_token1] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_volatile] = ACTIONS(1435), - [anon_sym_register] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_struct] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1435), - [sym_false] = ACTIONS(1435), - [anon_sym_auto] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_inline] = ACTIONS(1435), - [anon_sym___attribute__] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - }, - [672] = { - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_null] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1498), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym__Atomic] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [sym_true] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [sym_number_literal] = ACTIONS(1498), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - }, - [673] = { - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_sizeof] = ACTIONS(1546), - [anon_sym_unsigned] = ACTIONS(1546), - [anon_sym_restrict] = ACTIONS(1546), - [anon_sym_short] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1548), - [sym_null] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1546), - [anon_sym_do] = ACTIONS(1546), - [anon_sym_goto] = ACTIONS(1546), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1546), - [sym_preproc_directive] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1548), - [aux_sym_preproc_if_token1] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_LPAREN2] = ACTIONS(1548), - [anon_sym_typedef] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1548), - [anon_sym__Atomic] = ACTIONS(1546), - [sym_primitive_type] = ACTIONS(1546), - [sym_true] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1546), - [aux_sym_preproc_include_token1] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_volatile] = ACTIONS(1546), - [anon_sym_register] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_struct] = ACTIONS(1546), - [anon_sym_switch] = ACTIONS(1546), - [anon_sym_signed] = ACTIONS(1546), - [anon_sym_enum] = ACTIONS(1546), - [anon_sym_long] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1548), - [sym_number_literal] = ACTIONS(1548), - [aux_sym_preproc_def_token1] = ACTIONS(1546), - [sym_false] = ACTIONS(1546), - [anon_sym_auto] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_inline] = ACTIONS(1546), - [anon_sym___attribute__] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - }, - [674] = { - [sym_while_statement] = STATE(681), - [sym_continue_statement] = STATE(681), - [sym_goto_statement] = STATE(681), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(905), - [sym_math_expression] = STATE(905), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(681), - [sym_expression_statement] = STATE(681), - [sym_if_statement] = STATE(681), - [sym_do_statement] = STATE(681), - [sym_for_statement] = STATE(681), - [sym__expression] = STATE(905), - [sym_comma_expression] = STATE(904), - [sym_bitwise_expression] = STATE(905), - [sym_equality_expression] = STATE(905), - [sym_sizeof_expression] = STATE(905), - [sym_compound_literal_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(905), - [sym_concatenated_string] = STATE(905), - [sym_switch_statement] = STATE(681), - [sym_return_statement] = STATE(681), - [sym_break_statement] = STATE(681), - [sym_conditional_expression] = STATE(905), - [sym_assignment_expression] = STATE(905), - [sym_relational_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(681), - [anon_sym_LBRACE] = ACTIONS(842), - [sym_null] = ACTIONS(844), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [sym_identifier] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [675] = { - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_restrict] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym_null] = ACTIONS(1581), - [sym_identifier] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_goto] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1581), - [sym_preproc_directive] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1579), - [aux_sym_preproc_if_token1] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1581), - [sym_primitive_type] = ACTIONS(1581), - [sym_true] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1579), - [sym_number_literal] = ACTIONS(1579), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [sym_false] = ACTIONS(1581), - [anon_sym_auto] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym___attribute__] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - }, - [676] = { - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1583), - [sym_null] = ACTIONS(1585), - [sym_identifier] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1585), - [sym_preproc_directive] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1583), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym__Atomic] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [sym_true] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1583), - [sym_number_literal] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [anon_sym_auto] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - }, - [677] = { - [sym_null] = ACTIONS(1587), - [anon_sym_restrict] = ACTIONS(1587), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1587), - [aux_sym_preproc_if_token2] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym__Atomic] = ACTIONS(1587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1587), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_volatile] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1587), - [anon_sym_signed] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym___attribute__] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_unsigned] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1589), - [sym_preproc_directive] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1587), - [sym_true] = ACTIONS(1587), - [sym_primitive_type] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [aux_sym_preproc_include_token1] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [anon_sym_enum] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1587), - [anon_sym_auto] = ACTIONS(1587), - [anon_sym_inline] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - }, - [678] = { - [sym_null] = ACTIONS(1599), - [anon_sym_restrict] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1599), - [aux_sym_preproc_if_token2] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1599), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1599), - [sym_number_literal] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1599), - [anon_sym_extern] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1599), - [anon_sym_signed] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_unsigned] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [sym_preproc_directive] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), - [aux_sym_preproc_if_token1] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1599), - [sym_true] = ACTIONS(1599), - [sym_primitive_type] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [aux_sym_preproc_include_token1] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_register] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [anon_sym_enum] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [aux_sym_preproc_def_token1] = ACTIONS(1599), - [anon_sym_auto] = ACTIONS(1599), - [anon_sym_inline] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - }, - [679] = { - [sym_null] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1703), - [aux_sym_preproc_if_token2] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym__Atomic] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [sym_number_literal] = ACTIONS(1701), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [aux_sym_preproc_elif_token1] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_sizeof] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [aux_sym_preproc_else_token1] = ACTIONS(1703), - [anon_sym_TILDE] = ACTIONS(1701), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1701), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1701), - [sym_true] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_switch] = ACTIONS(1703), - [sym_false] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1701), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [anon_sym_auto] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - }, - [680] = { - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1814), - [anon_sym_sizeof] = ACTIONS(1814), - [anon_sym_unsigned] = ACTIONS(1814), - [anon_sym_restrict] = ACTIONS(1814), - [anon_sym_short] = ACTIONS(1814), - [anon_sym_DQUOTE] = ACTIONS(1816), - [sym_null] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1814), - [anon_sym_do] = ACTIONS(1814), - [anon_sym_goto] = ACTIONS(1814), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1814), - [sym_preproc_directive] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1816), - [aux_sym_preproc_if_token1] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_LPAREN2] = ACTIONS(1816), - [anon_sym_typedef] = ACTIONS(1814), - [anon_sym_DASH_DASH] = ACTIONS(1816), - [anon_sym__Atomic] = ACTIONS(1814), - [sym_primitive_type] = ACTIONS(1814), - [sym_true] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1814), - [aux_sym_preproc_include_token1] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1814), - [anon_sym_volatile] = ACTIONS(1814), - [anon_sym_register] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_struct] = ACTIONS(1814), - [anon_sym_switch] = ACTIONS(1814), - [anon_sym_signed] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1814), - [anon_sym_long] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_PLUS_PLUS] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1814), - [anon_sym_SEMI] = ACTIONS(1816), - [sym_number_literal] = ACTIONS(1816), - [aux_sym_preproc_def_token1] = ACTIONS(1814), - [sym_false] = ACTIONS(1814), - [anon_sym_auto] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1814), - [anon_sym___attribute__] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - }, - [681] = { - [sym_null] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym__Atomic] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym_sizeof] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1824), - [sym_preproc_directive] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [sym_true] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), + [aux_sym_preproc_def_token1] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), }, [682] = { - [sym_while_statement] = STATE(683), - [sym_continue_statement] = STATE(683), - [sym_goto_statement] = STATE(683), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(905), - [sym_math_expression] = STATE(905), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(683), - [sym_expression_statement] = STATE(683), - [sym_if_statement] = STATE(683), - [sym_do_statement] = STATE(683), - [sym_for_statement] = STATE(683), - [sym__expression] = STATE(905), - [sym_comma_expression] = STATE(904), - [sym_bitwise_expression] = STATE(905), - [sym_equality_expression] = STATE(905), - [sym_sizeof_expression] = STATE(905), - [sym_compound_literal_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(905), - [sym_concatenated_string] = STATE(905), - [sym_switch_statement] = STATE(683), - [sym_return_statement] = STATE(683), - [sym_break_statement] = STATE(683), - [sym_conditional_expression] = STATE(905), - [sym_assignment_expression] = STATE(905), - [sym_relational_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(683), - [anon_sym_LBRACE] = ACTIONS(842), - [sym_null] = ACTIONS(844), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [sym_identifier] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_false] = ACTIONS(1409), + [anon_sym_restrict] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1409), + [anon_sym_goto] = ACTIONS(1409), + [aux_sym_preproc_if_token2] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_typedef] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1409), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), + [sym_number_literal] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), + [aux_sym_preproc_elif_token1] = ACTIONS(1409), + [anon_sym_L] = ACTIONS(1409), + [anon_sym___attribute__] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsigned] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [aux_sym_preproc_else_token1] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1407), + [sym_preproc_directive] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [aux_sym_preproc_include_token1] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_register] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [sym_true] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [sym_null] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [anon_sym_auto] = ACTIONS(1409), + [anon_sym_inline] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), }, [683] = { - [sym_null] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(1890), - [aux_sym_preproc_if_token2] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_typedef] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym__Atomic] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym_sizeof] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_TILDE] = ACTIONS(1892), - [sym_preproc_directive] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1892), - [aux_sym_preproc_if_token1] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1890), - [sym_true] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [aux_sym_preproc_include_token1] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1890), - [sym_false] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1892), - [aux_sym_preproc_def_token1] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), + [sym_false] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1421), + [anon_sym_goto] = ACTIONS(1421), + [aux_sym_preproc_if_token2] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_typedef] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1421), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), + [sym_number_literal] = ACTIONS(1419), + [anon_sym_volatile] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), + [aux_sym_preproc_elif_token1] = ACTIONS(1421), + [anon_sym_L] = ACTIONS(1421), + [anon_sym___attribute__] = ACTIONS(1421), + [anon_sym_sizeof] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [aux_sym_preproc_else_token1] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1419), + [sym_preproc_directive] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [aux_sym_preproc_if_token1] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_LPAREN2] = ACTIONS(1419), + [sym_primitive_type] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [aux_sym_preproc_include_token1] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [sym_true] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [sym_null] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [aux_sym_preproc_def_token1] = ACTIONS(1421), + [anon_sym_auto] = ACTIONS(1421), + [anon_sym_inline] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), }, [684] = { - [sym_while_statement] = STATE(685), - [sym_continue_statement] = STATE(685), - [sym_goto_statement] = STATE(685), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(905), - [sym_math_expression] = STATE(905), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(685), - [sym_expression_statement] = STATE(685), - [sym_if_statement] = STATE(685), - [sym_do_statement] = STATE(685), - [sym_for_statement] = STATE(685), - [sym__expression] = STATE(905), - [sym_comma_expression] = STATE(904), - [sym_bitwise_expression] = STATE(905), - [sym_equality_expression] = STATE(905), - [sym_sizeof_expression] = STATE(905), - [sym_compound_literal_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(905), - [sym_concatenated_string] = STATE(905), - [sym_switch_statement] = STATE(685), - [sym_return_statement] = STATE(685), - [sym_break_statement] = STATE(685), - [sym_conditional_expression] = STATE(905), - [sym_assignment_expression] = STATE(905), - [sym_relational_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(685), - [anon_sym_LBRACE] = ACTIONS(842), - [sym_null] = ACTIONS(844), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [sym_identifier] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_false] = ACTIONS(1429), + [anon_sym_restrict] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1429), + [anon_sym_goto] = ACTIONS(1429), + [aux_sym_preproc_if_token2] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_typedef] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym__Atomic] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), + [sym_number_literal] = ACTIONS(1431), + [anon_sym_volatile] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_signed] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), + [aux_sym_preproc_elif_token1] = ACTIONS(1429), + [anon_sym_L] = ACTIONS(1429), + [anon_sym___attribute__] = ACTIONS(1429), + [anon_sym_sizeof] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_unsigned] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [aux_sym_preproc_else_token1] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1431), + [sym_preproc_directive] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [aux_sym_preproc_if_token1] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1431), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [aux_sym_preproc_include_token1] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [sym_true] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [sym_null] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [aux_sym_preproc_def_token1] = ACTIONS(1429), + [anon_sym_auto] = ACTIONS(1429), + [anon_sym_inline] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), }, [685] = { - [sym_null] = ACTIONS(2008), - [anon_sym_restrict] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2008), - [aux_sym_preproc_if_token2] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2008), - [anon_sym_DASH_DASH] = ACTIONS(2010), - [anon_sym__Atomic] = ACTIONS(2008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), - [sym_number_literal] = ACTIONS(2010), - [anon_sym_volatile] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2010), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2008), - [anon_sym_long] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2010), - [anon_sym_DQUOTE] = ACTIONS(2010), - [anon_sym___attribute__] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsigned] = ACTIONS(2008), - [anon_sym_short] = ACTIONS(2008), - [anon_sym_do] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2010), - [sym_preproc_directive] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2010), - [aux_sym_preproc_if_token1] = ACTIONS(2008), - [anon_sym_LPAREN2] = ACTIONS(2010), - [anon_sym_else] = ACTIONS(2008), - [sym_true] = ACTIONS(2008), - [sym_primitive_type] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [aux_sym_preproc_include_token1] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_register] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_switch] = ACTIONS(2008), - [sym_false] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2010), - [aux_sym_preproc_def_token1] = ACTIONS(2008), - [anon_sym_auto] = ACTIONS(2008), - [anon_sym_inline] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_sizeof] = ACTIONS(1473), + [anon_sym_unsigned] = ACTIONS(1473), + [anon_sym_restrict] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [sym_true] = ACTIONS(1473), + [sym_false] = ACTIONS(1473), + [sym_null] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_goto] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1473), + [aux_sym_preproc_if_token2] = ACTIONS(1473), + [sym_preproc_directive] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1475), + [aux_sym_preproc_if_token1] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1475), + [anon_sym_typedef] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym__Atomic] = ACTIONS(1473), + [sym_primitive_type] = ACTIONS(1473), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1473), + [aux_sym_preproc_include_token1] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_volatile] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_signed] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [sym_number_literal] = ACTIONS(1475), + [aux_sym_preproc_def_token1] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_auto] = ACTIONS(1473), + [anon_sym_L] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym___attribute__] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), }, [686] = { - [sym_while_statement] = STATE(687), - [sym_continue_statement] = STATE(687), - [sym_goto_statement] = STATE(687), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(905), - [sym_math_expression] = STATE(905), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(687), - [sym_expression_statement] = STATE(687), - [sym_if_statement] = STATE(687), - [sym_do_statement] = STATE(687), - [sym_for_statement] = STATE(687), - [sym__expression] = STATE(905), - [sym_comma_expression] = STATE(904), - [sym_bitwise_expression] = STATE(905), - [sym_equality_expression] = STATE(905), - [sym_sizeof_expression] = STATE(905), - [sym_compound_literal_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(905), - [sym_concatenated_string] = STATE(905), - [sym_switch_statement] = STATE(687), - [sym_return_statement] = STATE(687), - [sym_break_statement] = STATE(687), - [sym_conditional_expression] = STATE(905), - [sym_assignment_expression] = STATE(905), - [sym_relational_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(687), - [anon_sym_LBRACE] = ACTIONS(842), - [sym_null] = ACTIONS(844), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [sym_identifier] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1538), + [anon_sym_unsigned] = ACTIONS(1538), + [anon_sym_restrict] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1538), + [sym_true] = ACTIONS(1538), + [sym_false] = ACTIONS(1538), + [sym_null] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_goto] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [sym_preproc_directive] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1536), + [aux_sym_preproc_if_token1] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym__Atomic] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_volatile] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1538), + [anon_sym_signed] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [sym_number_literal] = ACTIONS(1536), + [aux_sym_preproc_def_token1] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_auto] = ACTIONS(1538), + [anon_sym_L] = ACTIONS(1538), + [anon_sym_inline] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), }, [687] = { - [sym_null] = ACTIONS(2014), - [anon_sym_restrict] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2014), - [aux_sym_preproc_if_token2] = ACTIONS(2014), - [anon_sym_const] = ACTIONS(2014), - [anon_sym_typedef] = ACTIONS(2014), - [anon_sym_DASH_DASH] = ACTIONS(2016), - [anon_sym__Atomic] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2014), - [sym_number_literal] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2014), - [anon_sym_PLUS_PLUS] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2014), - [anon_sym_signed] = ACTIONS(2014), - [anon_sym_long] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2014), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2016), - [anon_sym___attribute__] = ACTIONS(2014), - [anon_sym_sizeof] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2014), - [anon_sym_unsigned] = ACTIONS(2014), - [anon_sym_short] = ACTIONS(2014), - [anon_sym_do] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2016), - [sym_preproc_directive] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2016), - [anon_sym_else] = ACTIONS(2014), - [sym_true] = ACTIONS(2014), - [sym_primitive_type] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2014), - [anon_sym_register] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_switch] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), - [anon_sym_enum] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2014), - [anon_sym_continue] = ACTIONS(2014), - [anon_sym_SEMI] = ACTIONS(2016), - [aux_sym_preproc_def_token1] = ACTIONS(2014), - [anon_sym_auto] = ACTIONS(2014), - [anon_sym_inline] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_union] = ACTIONS(1584), + [anon_sym_sizeof] = ACTIONS(1584), + [anon_sym_unsigned] = ACTIONS(1584), + [anon_sym_restrict] = ACTIONS(1584), + [anon_sym_short] = ACTIONS(1584), + [sym_true] = ACTIONS(1584), + [sym_false] = ACTIONS(1584), + [sym_null] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1584), + [anon_sym_goto] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1584), + [aux_sym_preproc_if_token2] = ACTIONS(1584), + [sym_preproc_directive] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1586), + [aux_sym_preproc_if_token1] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1586), + [anon_sym_const] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1586), + [anon_sym_typedef] = ACTIONS(1584), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [anon_sym__Atomic] = ACTIONS(1584), + [sym_primitive_type] = ACTIONS(1584), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1584), + [aux_sym_preproc_include_token1] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(1584), + [anon_sym_volatile] = ACTIONS(1584), + [anon_sym_register] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_struct] = ACTIONS(1584), + [anon_sym_switch] = ACTIONS(1584), + [anon_sym_signed] = ACTIONS(1584), + [anon_sym_enum] = ACTIONS(1584), + [anon_sym_long] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(1586), + [aux_sym_preproc_def_token1] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_auto] = ACTIONS(1584), + [anon_sym_L] = ACTIONS(1584), + [anon_sym_inline] = ACTIONS(1584), + [anon_sym___attribute__] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), }, [688] = { - [sym_while_statement] = STATE(689), - [sym_continue_statement] = STATE(689), - [sym_goto_statement] = STATE(689), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(905), - [sym_math_expression] = STATE(905), - [sym_cast_expression] = STATE(905), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(689), - [sym_expression_statement] = STATE(689), - [sym_if_statement] = STATE(689), - [sym_do_statement] = STATE(689), - [sym_for_statement] = STATE(689), - [sym__expression] = STATE(905), - [sym_comma_expression] = STATE(904), - [sym_bitwise_expression] = STATE(905), - [sym_equality_expression] = STATE(905), - [sym_sizeof_expression] = STATE(905), - [sym_compound_literal_expression] = STATE(905), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(905), - [sym_concatenated_string] = STATE(905), - [sym_switch_statement] = STATE(689), - [sym_return_statement] = STATE(689), - [sym_break_statement] = STATE(689), - [sym_conditional_expression] = STATE(905), - [sym_assignment_expression] = STATE(905), - [sym_relational_expression] = STATE(905), - [sym_shift_expression] = STATE(905), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(689), - [anon_sym_LBRACE] = ACTIONS(842), - [sym_null] = ACTIONS(844), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(846), - [anon_sym_goto] = ACTIONS(848), + [sym_while_statement] = STATE(695), + [sym_continue_statement] = STATE(695), + [sym_goto_statement] = STATE(695), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(923), + [sym_math_expression] = STATE(923), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(695), + [sym_expression_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_do_statement] = STATE(695), + [sym_for_statement] = STATE(695), + [sym__expression] = STATE(923), + [sym_comma_expression] = STATE(922), + [sym_bitwise_expression] = STATE(923), + [sym_equality_expression] = STATE(923), + [sym_sizeof_expression] = STATE(923), + [sym_compound_literal_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(923), + [sym_concatenated_string] = STATE(923), + [sym_switch_statement] = STATE(695), + [sym_return_statement] = STATE(695), + [sym_break_statement] = STATE(695), + [sym_conditional_expression] = STATE(923), + [sym_assignment_expression] = STATE(923), + [sym_relational_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(695), + [anon_sym_LBRACE] = ACTIONS(870), + [sym_false] = ACTIONS(872), + [sym_identifier] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(844), - [anon_sym_for] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(872), - [sym_false] = ACTIONS(844), - [sym_identifier] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(902), + [sym_true] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [689] = { - [sym_null] = ACTIONS(2018), - [anon_sym_restrict] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(2018), - [aux_sym_preproc_if_token2] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [anon_sym_typedef] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym__Atomic] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2018), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2018), - [anon_sym_signed] = ACTIONS(2018), - [anon_sym_long] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym___attribute__] = ACTIONS(2018), - [anon_sym_sizeof] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2018), - [anon_sym_unsigned] = ACTIONS(2018), - [anon_sym_short] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_TILDE] = ACTIONS(2020), - [sym_preproc_directive] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2020), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_else] = ACTIONS(2018), - [sym_true] = ACTIONS(2018), - [sym_primitive_type] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [aux_sym_preproc_include_token1] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_switch] = ACTIONS(2018), - [sym_false] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_SEMI] = ACTIONS(2020), - [aux_sym_preproc_def_token1] = ACTIONS(2018), - [anon_sym_auto] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2018), - [anon_sym_DASH] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_sizeof] = ACTIONS(1619), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_restrict] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [sym_true] = ACTIONS(1619), + [sym_false] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_goto] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1619), + [aux_sym_preproc_if_token2] = ACTIONS(1619), + [sym_preproc_directive] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [aux_sym_preproc_if_token1] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_LPAREN2] = ACTIONS(1617), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [anon_sym__Atomic] = ACTIONS(1619), + [sym_primitive_type] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1619), + [aux_sym_preproc_include_token1] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1617), + [sym_number_literal] = ACTIONS(1617), + [aux_sym_preproc_def_token1] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_auto] = ACTIONS(1619), + [anon_sym_L] = ACTIONS(1619), + [anon_sym_inline] = ACTIONS(1619), + [anon_sym___attribute__] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), }, [690] = { - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_case] = ACTIONS(263), - [sym_null] = ACTIONS(263), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(263), - [anon_sym_goto] = ACTIONS(263), - [anon_sym_TILDE] = ACTIONS(265), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_LPAREN2] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_DASH_DASH] = ACTIONS(265), - [anon_sym_default] = ACTIONS(263), - [anon_sym_else] = ACTIONS(263), - [sym_true] = ACTIONS(263), - [anon_sym_for] = ACTIONS(263), - [anon_sym_break] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(265), - [sym_number_literal] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_if] = ACTIONS(263), - [anon_sym_PLUS_PLUS] = ACTIONS(265), - [anon_sym_switch] = ACTIONS(263), - [sym_false] = ACTIONS(263), - [sym_identifier] = ACTIONS(263), - [anon_sym_return] = ACTIONS(263), - [anon_sym_while] = ACTIONS(263), - [anon_sym_continue] = ACTIONS(263), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_SQUOTE] = ACTIONS(265), - [anon_sym_DQUOTE] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(263), - [anon_sym_sizeof] = ACTIONS(263), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_restrict] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), + [sym_true] = ACTIONS(1623), + [sym_false] = ACTIONS(1623), + [sym_null] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_goto] = ACTIONS(1623), + [sym_identifier] = ACTIONS(1623), + [aux_sym_preproc_if_token2] = ACTIONS(1623), + [sym_preproc_directive] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [aux_sym_preproc_if_token1] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [anon_sym__Atomic] = ACTIONS(1623), + [sym_primitive_type] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1623), + [aux_sym_preproc_include_token1] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1623), + [anon_sym_volatile] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_struct] = ACTIONS(1623), + [anon_sym_switch] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1621), + [sym_number_literal] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_auto] = ACTIONS(1623), + [anon_sym_L] = ACTIONS(1623), + [anon_sym_inline] = ACTIONS(1623), + [anon_sym___attribute__] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1623), }, [691] = { - [anon_sym_LBRACE] = ACTIONS(344), - [anon_sym_case] = ACTIONS(342), - [sym_null] = ACTIONS(342), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(342), - [anon_sym_goto] = ACTIONS(342), - [anon_sym_TILDE] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(344), - [anon_sym_LPAREN2] = ACTIONS(344), - [anon_sym_RBRACE] = ACTIONS(344), - [anon_sym_DASH_DASH] = ACTIONS(344), - [anon_sym_default] = ACTIONS(342), - [anon_sym_else] = ACTIONS(342), - [sym_true] = ACTIONS(342), - [anon_sym_for] = ACTIONS(342), - [anon_sym_break] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(344), - [sym_number_literal] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_if] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(344), - [anon_sym_switch] = ACTIONS(342), - [sym_false] = ACTIONS(342), - [sym_identifier] = ACTIONS(342), - [anon_sym_return] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_SEMI] = ACTIONS(344), - [anon_sym_SQUOTE] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(344), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_sizeof] = ACTIONS(342), + [sym_false] = ACTIONS(1625), + [anon_sym_restrict] = ACTIONS(1625), + [sym_identifier] = ACTIONS(1625), + [anon_sym_goto] = ACTIONS(1625), + [aux_sym_preproc_if_token2] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_typedef] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym__Atomic] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1625), + [sym_number_literal] = ACTIONS(1627), + [anon_sym_volatile] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_signed] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1625), + [anon_sym_L] = ACTIONS(1625), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym_sizeof] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_unsigned] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_TILDE] = ACTIONS(1627), + [sym_preproc_directive] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1627), + [aux_sym_preproc_if_token1] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_else] = ACTIONS(1625), + [sym_primitive_type] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [aux_sym_preproc_include_token1] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [sym_true] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [aux_sym_preproc_def_token1] = ACTIONS(1625), + [anon_sym_auto] = ACTIONS(1625), + [anon_sym_inline] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), }, [692] = { - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_union] = ACTIONS(370), - [anon_sym_sizeof] = ACTIONS(370), - [anon_sym_unsigned] = ACTIONS(370), - [anon_sym_restrict] = ACTIONS(370), - [anon_sym_short] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(372), - [sym_null] = ACTIONS(370), - [sym_identifier] = ACTIONS(370), - [anon_sym_do] = ACTIONS(370), - [anon_sym_goto] = ACTIONS(370), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(370), - [sym_preproc_directive] = ACTIONS(370), - [anon_sym_AMP] = ACTIONS(372), - [aux_sym_preproc_if_token1] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(372), - [anon_sym_const] = ACTIONS(370), - [anon_sym_LPAREN2] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(372), - [anon_sym__Atomic] = ACTIONS(370), - [sym_primitive_type] = ACTIONS(370), - [sym_true] = ACTIONS(370), - [anon_sym_for] = ACTIONS(370), - [anon_sym_break] = ACTIONS(370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(370), - [aux_sym_preproc_include_token1] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(372), - [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_if] = ACTIONS(370), - [anon_sym_struct] = ACTIONS(370), - [anon_sym_switch] = ACTIONS(370), - [anon_sym_signed] = ACTIONS(370), - [anon_sym_enum] = ACTIONS(370), - [anon_sym_long] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_PLUS_PLUS] = ACTIONS(372), - [anon_sym_return] = ACTIONS(370), - [anon_sym_while] = ACTIONS(370), - [anon_sym_continue] = ACTIONS(370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(372), - [sym_number_literal] = ACTIONS(372), - [aux_sym_preproc_def_token1] = ACTIONS(370), - [sym_false] = ACTIONS(370), - [anon_sym_auto] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [anon_sym_inline] = ACTIONS(370), - [anon_sym___attribute__] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(370), + [sym_false] = ACTIONS(1637), + [anon_sym_restrict] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1637), + [anon_sym_goto] = ACTIONS(1637), + [aux_sym_preproc_if_token2] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1637), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), + [sym_number_literal] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_signed] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), + [anon_sym_L] = ACTIONS(1637), + [anon_sym___attribute__] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1639), + [sym_preproc_directive] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1639), + [aux_sym_preproc_if_token1] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1637), + [sym_primitive_type] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_register] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [sym_true] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [sym_null] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_auto] = ACTIONS(1637), + [anon_sym_inline] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), }, [693] = { - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_union] = ACTIONS(390), - [anon_sym_sizeof] = ACTIONS(390), - [anon_sym_unsigned] = ACTIONS(390), - [anon_sym_restrict] = ACTIONS(390), - [anon_sym_short] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(388), - [sym_null] = ACTIONS(390), - [sym_identifier] = ACTIONS(390), - [anon_sym_do] = ACTIONS(390), - [anon_sym_goto] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(390), - [sym_preproc_directive] = ACTIONS(390), - [anon_sym_AMP] = ACTIONS(388), - [aux_sym_preproc_if_token1] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(388), - [anon_sym_const] = ACTIONS(390), - [anon_sym_LPAREN2] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym__Atomic] = ACTIONS(390), - [sym_primitive_type] = ACTIONS(390), - [sym_true] = ACTIONS(390), - [anon_sym_for] = ACTIONS(390), - [anon_sym_break] = ACTIONS(390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(390), - [aux_sym_preproc_include_token1] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(388), - [anon_sym_static] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(390), - [anon_sym_register] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_struct] = ACTIONS(390), - [anon_sym_switch] = ACTIONS(390), - [anon_sym_signed] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [anon_sym_long] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_return] = ACTIONS(390), - [anon_sym_while] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(390), - [anon_sym_SEMI] = ACTIONS(388), - [sym_number_literal] = ACTIONS(388), - [aux_sym_preproc_def_token1] = ACTIONS(390), - [sym_false] = ACTIONS(390), - [anon_sym_auto] = ACTIONS(390), - [anon_sym_SQUOTE] = ACTIONS(388), - [anon_sym_inline] = ACTIONS(390), - [anon_sym___attribute__] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), + [sym_false] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1744), + [anon_sym_goto] = ACTIONS(1744), + [aux_sym_preproc_if_token2] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_typedef] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym__Atomic] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [sym_number_literal] = ACTIONS(1742), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [aux_sym_preproc_elif_token1] = ACTIONS(1744), + [anon_sym_L] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym_sizeof] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [aux_sym_preproc_else_token1] = ACTIONS(1744), + [anon_sym_TILDE] = ACTIONS(1742), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1742), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1742), + [anon_sym_LPAREN2] = ACTIONS(1742), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [aux_sym_preproc_include_token1] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [sym_true] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [sym_null] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1742), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), }, [694] = { - [anon_sym_LBRACE] = ACTIONS(489), - [anon_sym_case] = ACTIONS(487), - [sym_null] = ACTIONS(487), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1855), + [anon_sym_unsigned] = ACTIONS(1855), + [anon_sym_restrict] = ACTIONS(1855), + [anon_sym_short] = ACTIONS(1855), + [sym_true] = ACTIONS(1855), + [sym_false] = ACTIONS(1855), + [sym_null] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_goto] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1855), + [aux_sym_preproc_if_token2] = ACTIONS(1855), + [sym_preproc_directive] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1857), + [aux_sym_preproc_if_token1] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_typedef] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [anon_sym__Atomic] = ACTIONS(1855), + [sym_primitive_type] = ACTIONS(1855), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(487), - [anon_sym_goto] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(489), - [anon_sym_AMP] = 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_true] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(489), - [sym_number_literal] = ACTIONS(489), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_if] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_switch] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_identifier] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(489), - [anon_sym_SQUOTE] = ACTIONS(489), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_sizeof] = ACTIONS(487), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1855), + [aux_sym_preproc_include_token1] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_volatile] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(1855), + [anon_sym_signed] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_long] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1857), + [sym_number_literal] = ACTIONS(1857), + [aux_sym_preproc_def_token1] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_auto] = ACTIONS(1855), + [anon_sym_L] = ACTIONS(1855), + [anon_sym_inline] = ACTIONS(1855), + [anon_sym___attribute__] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), }, [695] = { - [sym_while_statement] = STATE(706), - [sym_continue_statement] = STATE(706), - [sym_goto_statement] = STATE(706), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(706), - [sym_expression_statement] = STATE(706), - [sym_if_statement] = STATE(706), - [sym_do_statement] = STATE(706), - [sym_for_statement] = STATE(706), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(706), - [sym_return_statement] = STATE(706), - [sym_break_statement] = STATE(706), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(706), - [anon_sym_LBRACE] = ACTIONS(977), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_false] = ACTIONS(1863), + [anon_sym_restrict] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1863), + [anon_sym_goto] = ACTIONS(1863), + [aux_sym_preproc_if_token2] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_typedef] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym__Atomic] = ACTIONS(1863), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1863), + [sym_number_literal] = ACTIONS(1865), + [anon_sym_volatile] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_struct] = ACTIONS(1863), + [anon_sym_signed] = ACTIONS(1863), + [anon_sym_long] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1863), + [anon_sym_L] = ACTIONS(1863), + [anon_sym___attribute__] = ACTIONS(1863), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1863), + [anon_sym_unsigned] = ACTIONS(1863), + [anon_sym_short] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1865), + [sym_preproc_directive] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1865), + [aux_sym_preproc_if_token1] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1865), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1863), + [sym_primitive_type] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [aux_sym_preproc_include_token1] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_switch] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1865), + [aux_sym_preproc_def_token1] = ACTIONS(1863), + [anon_sym_auto] = ACTIONS(1863), + [anon_sym_inline] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), }, [696] = { - [sym_while_statement] = STATE(708), - [sym_continue_statement] = STATE(708), - [sym_goto_statement] = STATE(708), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(708), - [sym_expression_statement] = STATE(708), - [sym_if_statement] = STATE(708), - [sym_do_statement] = STATE(708), - [sym_for_statement] = STATE(708), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(708), - [sym_return_statement] = STATE(708), - [sym_break_statement] = STATE(708), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(708), - [anon_sym_LBRACE] = ACTIONS(977), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), + [sym_while_statement] = STATE(697), + [sym_continue_statement] = STATE(697), + [sym_goto_statement] = STATE(697), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(923), + [sym_math_expression] = STATE(923), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(697), + [sym_expression_statement] = STATE(697), + [sym_if_statement] = STATE(697), + [sym_do_statement] = STATE(697), + [sym_for_statement] = STATE(697), + [sym__expression] = STATE(923), + [sym_comma_expression] = STATE(922), + [sym_bitwise_expression] = STATE(923), + [sym_equality_expression] = STATE(923), + [sym_sizeof_expression] = STATE(923), + [sym_compound_literal_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(923), + [sym_concatenated_string] = STATE(923), + [sym_switch_statement] = STATE(697), + [sym_return_statement] = STATE(697), + [sym_break_statement] = STATE(697), + [sym_conditional_expression] = STATE(923), + [sym_assignment_expression] = STATE(923), + [sym_relational_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(697), + [anon_sym_LBRACE] = ACTIONS(870), + [sym_false] = ACTIONS(872), + [sym_identifier] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(902), + [sym_true] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [697] = { - [anon_sym_LBRACE] = ACTIONS(539), - [anon_sym_case] = ACTIONS(537), - [sym_null] = ACTIONS(537), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(537), - [anon_sym_goto] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(539), - [anon_sym_AMP] = ACTIONS(539), - [anon_sym_LPAREN2] = ACTIONS(539), - [anon_sym_RBRACE] = ACTIONS(539), - [anon_sym_DASH_DASH] = ACTIONS(539), - [anon_sym_default] = ACTIONS(537), - [anon_sym_else] = ACTIONS(537), - [sym_true] = ACTIONS(537), - [anon_sym_for] = ACTIONS(537), - [anon_sym_break] = ACTIONS(537), - [anon_sym_BANG] = ACTIONS(539), - [sym_number_literal] = ACTIONS(539), - [anon_sym_PLUS] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_if] = ACTIONS(537), - [anon_sym_PLUS_PLUS] = ACTIONS(539), - [anon_sym_switch] = ACTIONS(537), - [sym_false] = ACTIONS(537), - [sym_identifier] = ACTIONS(537), - [anon_sym_return] = ACTIONS(537), - [anon_sym_while] = ACTIONS(537), - [anon_sym_continue] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(539), - [anon_sym_SQUOTE] = ACTIONS(539), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(537), - [anon_sym_sizeof] = ACTIONS(537), + [sym_false] = ACTIONS(1931), + [anon_sym_restrict] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [aux_sym_preproc_if_token2] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym__Atomic] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1931), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1931), + [anon_sym_L] = ACTIONS(1931), + [anon_sym___attribute__] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1933), + [sym_preproc_directive] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1933), + [aux_sym_preproc_if_token1] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1931), + [sym_primitive_type] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [aux_sym_preproc_include_token1] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_switch] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [sym_null] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [aux_sym_preproc_def_token1] = ACTIONS(1931), + [anon_sym_auto] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), }, [698] = { - [sym_while_statement] = STATE(710), - [sym_continue_statement] = STATE(710), - [sym_goto_statement] = STATE(710), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(710), - [sym_expression_statement] = STATE(710), - [sym_if_statement] = STATE(710), - [sym_do_statement] = STATE(710), - [sym_for_statement] = STATE(710), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(710), - [sym_return_statement] = STATE(710), - [sym_break_statement] = STATE(710), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(710), - [anon_sym_LBRACE] = ACTIONS(977), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), + [sym_while_statement] = STATE(699), + [sym_continue_statement] = STATE(699), + [sym_goto_statement] = STATE(699), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(923), + [sym_math_expression] = STATE(923), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(699), + [sym_expression_statement] = STATE(699), + [sym_if_statement] = STATE(699), + [sym_do_statement] = STATE(699), + [sym_for_statement] = STATE(699), + [sym__expression] = STATE(923), + [sym_comma_expression] = STATE(922), + [sym_bitwise_expression] = STATE(923), + [sym_equality_expression] = STATE(923), + [sym_sizeof_expression] = STATE(923), + [sym_compound_literal_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(923), + [sym_concatenated_string] = STATE(923), + [sym_switch_statement] = STATE(699), + [sym_return_statement] = STATE(699), + [sym_break_statement] = STATE(699), + [sym_conditional_expression] = STATE(923), + [sym_assignment_expression] = STATE(923), + [sym_relational_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(699), + [anon_sym_LBRACE] = ACTIONS(870), + [sym_false] = ACTIONS(872), + [sym_identifier] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(902), + [sym_true] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [699] = { - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_case] = ACTIONS(543), - [sym_null] = ACTIONS(543), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(543), - [anon_sym_goto] = ACTIONS(543), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_default] = ACTIONS(543), - [anon_sym_else] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(545), - [sym_number_literal] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_if] = ACTIONS(543), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_switch] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_identifier] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_SQUOTE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_sizeof] = ACTIONS(543), + [sym_false] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [aux_sym_preproc_if_token2] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym__Atomic] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [anon_sym_L] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym_sizeof] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_TILDE] = ACTIONS(2054), + [sym_preproc_directive] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2054), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_else] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [sym_true] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [anon_sym_DASH] = ACTIONS(2052), }, [700] = { - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_case] = ACTIONS(570), - [sym_null] = ACTIONS(570), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(570), - [anon_sym_goto] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(572), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_LPAREN2] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_DASH_DASH] = ACTIONS(572), - [anon_sym_default] = ACTIONS(570), - [anon_sym_else] = ACTIONS(570), - [sym_true] = ACTIONS(570), - [anon_sym_for] = ACTIONS(570), - [anon_sym_break] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [sym_number_literal] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_if] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(572), - [anon_sym_switch] = ACTIONS(570), - [sym_false] = ACTIONS(570), - [sym_identifier] = ACTIONS(570), - [anon_sym_return] = ACTIONS(570), - [anon_sym_while] = ACTIONS(570), - [anon_sym_continue] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(570), + [sym_while_statement] = STATE(701), + [sym_continue_statement] = STATE(701), + [sym_goto_statement] = STATE(701), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(923), + [sym_math_expression] = STATE(923), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(701), + [sym_expression_statement] = STATE(701), + [sym_if_statement] = STATE(701), + [sym_do_statement] = STATE(701), + [sym_for_statement] = STATE(701), + [sym__expression] = STATE(923), + [sym_comma_expression] = STATE(922), + [sym_bitwise_expression] = STATE(923), + [sym_equality_expression] = STATE(923), + [sym_sizeof_expression] = STATE(923), + [sym_compound_literal_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(923), + [sym_concatenated_string] = STATE(923), + [sym_switch_statement] = STATE(701), + [sym_return_statement] = STATE(701), + [sym_break_statement] = STATE(701), + [sym_conditional_expression] = STATE(923), + [sym_assignment_expression] = STATE(923), + [sym_relational_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(701), + [anon_sym_LBRACE] = ACTIONS(870), + [sym_false] = ACTIONS(872), + [sym_identifier] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(902), + [sym_true] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [701] = { - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_case] = ACTIONS(793), - [sym_null] = ACTIONS(793), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(793), - [anon_sym_goto] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(795), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_default] = ACTIONS(793), - [anon_sym_else] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(795), - [sym_number_literal] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(795), - [anon_sym_if] = ACTIONS(793), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_switch] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [sym_identifier] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(795), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_sizeof] = ACTIONS(793), + [sym_false] = ACTIONS(2058), + [anon_sym_restrict] = ACTIONS(2058), + [sym_identifier] = ACTIONS(2058), + [anon_sym_goto] = ACTIONS(2058), + [aux_sym_preproc_if_token2] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_typedef] = ACTIONS(2058), + [anon_sym_DASH_DASH] = ACTIONS(2060), + [anon_sym__Atomic] = ACTIONS(2058), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), + [sym_number_literal] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_signed] = ACTIONS(2058), + [anon_sym_long] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), + [anon_sym_L] = ACTIONS(2058), + [anon_sym___attribute__] = ACTIONS(2058), + [anon_sym_sizeof] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsigned] = ACTIONS(2058), + [anon_sym_short] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2060), + [sym_preproc_directive] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), + [aux_sym_preproc_if_token1] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2060), + [anon_sym_else] = ACTIONS(2058), + [sym_primitive_type] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [aux_sym_preproc_include_token1] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_register] = ACTIONS(2058), + [anon_sym_PLUS] = ACTIONS(2058), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_switch] = ACTIONS(2058), + [sym_true] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [sym_null] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2060), + [aux_sym_preproc_def_token1] = ACTIONS(2058), + [anon_sym_auto] = ACTIONS(2058), + [anon_sym_inline] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2058), }, [702] = { - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_union] = ACTIONS(823), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(823), - [anon_sym_restrict] = ACTIONS(823), - [anon_sym_short] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym_null] = ACTIONS(823), - [sym_identifier] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_goto] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(823), - [sym_preproc_directive] = ACTIONS(823), - [anon_sym_AMP] = ACTIONS(825), - [aux_sym_preproc_if_token1] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(825), - [anon_sym_const] = ACTIONS(823), - [anon_sym_LPAREN2] = ACTIONS(825), - [anon_sym_typedef] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(825), - [anon_sym__Atomic] = ACTIONS(823), - [sym_primitive_type] = ACTIONS(823), - [sym_true] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [aux_sym_preproc_ifdef_token1] = ACTIONS(823), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(825), - [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_if] = ACTIONS(823), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(823), - [anon_sym_signed] = ACTIONS(823), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_long] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_return] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [aux_sym_preproc_ifdef_token2] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(825), - [sym_number_literal] = ACTIONS(825), - [aux_sym_preproc_def_token1] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [anon_sym_auto] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_inline] = ACTIONS(823), - [anon_sym___attribute__] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), + [sym_while_statement] = STATE(703), + [sym_continue_statement] = STATE(703), + [sym_goto_statement] = STATE(703), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(923), + [sym_math_expression] = STATE(923), + [sym_cast_expression] = STATE(923), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(703), + [sym_expression_statement] = STATE(703), + [sym_if_statement] = STATE(703), + [sym_do_statement] = STATE(703), + [sym_for_statement] = STATE(703), + [sym__expression] = STATE(923), + [sym_comma_expression] = STATE(922), + [sym_bitwise_expression] = STATE(923), + [sym_equality_expression] = STATE(923), + [sym_sizeof_expression] = STATE(923), + [sym_compound_literal_expression] = STATE(923), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(923), + [sym_concatenated_string] = STATE(923), + [sym_switch_statement] = STATE(703), + [sym_return_statement] = STATE(703), + [sym_break_statement] = STATE(703), + [sym_conditional_expression] = STATE(923), + [sym_assignment_expression] = STATE(923), + [sym_relational_expression] = STATE(923), + [sym_shift_expression] = STATE(923), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(703), + [anon_sym_LBRACE] = ACTIONS(870), + [sym_false] = ACTIONS(872), + [sym_identifier] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(876), + [anon_sym_goto] = ACTIONS(878), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(888), + [anon_sym_break] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(902), + [sym_true] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [anon_sym_return] = ACTIONS(904), + [anon_sym_while] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [703] = { - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_case] = ACTIONS(834), - [sym_null] = ACTIONS(834), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(834), - [anon_sym_goto] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(836), - [anon_sym_LPAREN2] = ACTIONS(836), - [anon_sym_RBRACE] = ACTIONS(836), - [anon_sym_DASH_DASH] = ACTIONS(836), - [anon_sym_default] = ACTIONS(834), - [anon_sym_else] = ACTIONS(834), - [sym_true] = ACTIONS(834), - [anon_sym_for] = ACTIONS(834), - [anon_sym_break] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(836), - [sym_number_literal] = ACTIONS(836), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_STAR] = ACTIONS(836), - [anon_sym_if] = ACTIONS(834), - [anon_sym_PLUS_PLUS] = ACTIONS(836), - [anon_sym_switch] = ACTIONS(834), - [sym_false] = ACTIONS(834), - [sym_identifier] = ACTIONS(834), - [anon_sym_return] = ACTIONS(834), - [anon_sym_while] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_SQUOTE] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_sizeof] = ACTIONS(834), + [sym_false] = ACTIONS(2062), + [anon_sym_restrict] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2062), + [anon_sym_goto] = ACTIONS(2062), + [aux_sym_preproc_if_token2] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2062), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym__Atomic] = ACTIONS(2062), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2062), + [sym_number_literal] = ACTIONS(2064), + [anon_sym_volatile] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2062), + [anon_sym_signed] = ACTIONS(2062), + [anon_sym_long] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2062), + [anon_sym_L] = ACTIONS(2062), + [anon_sym___attribute__] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2062), + [anon_sym_unsigned] = ACTIONS(2062), + [anon_sym_short] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2064), + [sym_preproc_directive] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2064), + [aux_sym_preproc_if_token1] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2062), + [sym_primitive_type] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [aux_sym_preproc_include_token1] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_register] = ACTIONS(2062), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_switch] = ACTIONS(2062), + [sym_true] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [sym_null] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2064), + [aux_sym_preproc_def_token1] = ACTIONS(2062), + [anon_sym_auto] = ACTIONS(2062), + [anon_sym_inline] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), }, [704] = { - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_union] = ACTIONS(840), - [anon_sym_sizeof] = ACTIONS(840), - [anon_sym_unsigned] = ACTIONS(840), - [anon_sym_restrict] = ACTIONS(840), - [anon_sym_short] = ACTIONS(840), - [anon_sym_DQUOTE] = ACTIONS(838), - [sym_null] = ACTIONS(840), - [sym_identifier] = ACTIONS(840), - [anon_sym_do] = ACTIONS(840), - [anon_sym_goto] = ACTIONS(840), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(840), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(838), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [anon_sym_TILDE] = ACTIONS(838), - [anon_sym_const] = ACTIONS(840), - [anon_sym_LPAREN2] = ACTIONS(838), - [anon_sym_typedef] = ACTIONS(840), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym__Atomic] = ACTIONS(840), - [sym_primitive_type] = ACTIONS(840), - [sym_true] = ACTIONS(840), - [anon_sym_for] = ACTIONS(840), - [anon_sym_break] = ACTIONS(840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [aux_sym_preproc_include_token1] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(838), - [anon_sym_static] = ACTIONS(840), - [anon_sym_volatile] = ACTIONS(840), - [anon_sym_register] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(838), - [anon_sym_if] = ACTIONS(840), - [anon_sym_struct] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(840), - [anon_sym_signed] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(840), - [anon_sym_long] = ACTIONS(840), - [anon_sym_PLUS] = ACTIONS(840), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_while] = ACTIONS(840), - [anon_sym_continue] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [anon_sym_SEMI] = ACTIONS(838), - [sym_number_literal] = ACTIONS(838), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [sym_false] = ACTIONS(840), - [anon_sym_auto] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(838), - [anon_sym_inline] = ACTIONS(840), - [anon_sym___attribute__] = ACTIONS(840), - [anon_sym_DASH] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(271), + [anon_sym_case] = ACTIONS(269), + [sym_false] = ACTIONS(269), + [sym_identifier] = ACTIONS(269), + [anon_sym_do] = ACTIONS(269), + [anon_sym_goto] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_LPAREN2] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_default] = ACTIONS(269), + [anon_sym_else] = ACTIONS(269), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(269), + [anon_sym_break] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(271), + [sym_number_literal] = ACTIONS(271), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_if] = ACTIONS(269), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_switch] = ACTIONS(269), + [sym_true] = ACTIONS(269), + [sym_null] = ACTIONS(269), + [anon_sym_return] = ACTIONS(269), + [anon_sym_while] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(271), + [anon_sym_L] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(269), + [anon_sym_sizeof] = ACTIONS(269), }, [705] = { - [sym_null] = ACTIONS(896), - [anon_sym_restrict] = ACTIONS(896), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(896), - [aux_sym_preproc_if_token2] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(896), - [sym_number_literal] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_signed] = ACTIONS(896), - [anon_sym_long] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(896), - [aux_sym_preproc_elif_token1] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsigned] = ACTIONS(896), - [anon_sym_short] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [aux_sym_preproc_else_token1] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_else] = ACTIONS(896), - [sym_true] = ACTIONS(896), - [sym_primitive_type] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [aux_sym_preproc_include_token1] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_static] = ACTIONS(896), - [anon_sym_register] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_if] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [sym_identifier] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(896), - [anon_sym_auto] = ACTIONS(896), - [anon_sym_inline] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_case] = ACTIONS(354), + [sym_false] = ACTIONS(354), + [sym_identifier] = ACTIONS(354), + [anon_sym_do] = ACTIONS(354), + [anon_sym_goto] = ACTIONS(354), + [anon_sym_TILDE] = ACTIONS(356), + [anon_sym_AMP] = ACTIONS(356), + [anon_sym_DQUOTE] = ACTIONS(356), + [anon_sym_LPAREN2] = ACTIONS(356), + [anon_sym_RBRACE] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(356), + [anon_sym_default] = ACTIONS(354), + [anon_sym_else] = ACTIONS(354), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(354), + [anon_sym_break] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(356), + [sym_number_literal] = ACTIONS(356), + [anon_sym_SQUOTE] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_if] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(356), + [anon_sym_switch] = ACTIONS(354), + [sym_true] = ACTIONS(354), + [sym_null] = ACTIONS(354), + [anon_sym_return] = ACTIONS(354), + [anon_sym_while] = ACTIONS(354), + [anon_sym_continue] = ACTIONS(354), + [anon_sym_SEMI] = ACTIONS(356), + [anon_sym_L] = ACTIONS(354), + [anon_sym_DASH] = ACTIONS(354), + [anon_sym_sizeof] = ACTIONS(354), }, [706] = { - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_case] = ACTIONS(967), - [sym_null] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(967), - [anon_sym_goto] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_LPAREN2] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_default] = ACTIONS(967), - [anon_sym_else] = ACTIONS(2325), - [sym_true] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(969), - [sym_number_literal] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_if] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_switch] = ACTIONS(967), - [sym_false] = ACTIONS(967), - [sym_identifier] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_sizeof] = ACTIONS(967), - }, - [707] = { - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_case] = ACTIONS(1011), - [sym_null] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_goto] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_default] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [sym_true] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1013), - [sym_number_literal] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [anon_sym_switch] = ACTIONS(1011), - [sym_false] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_sizeof] = ACTIONS(1011), - }, - [708] = { - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1035), - [sym_null] = ACTIONS(1035), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1035), - [anon_sym_goto] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_LPAREN2] = ACTIONS(1037), - [anon_sym_RBRACE] = ACTIONS(1037), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1035), - [anon_sym_else] = ACTIONS(1035), - [sym_true] = ACTIONS(1035), - [anon_sym_for] = ACTIONS(1035), - [anon_sym_break] = ACTIONS(1035), - [anon_sym_BANG] = ACTIONS(1037), - [sym_number_literal] = ACTIONS(1037), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(1035), - [sym_false] = ACTIONS(1035), - [sym_identifier] = ACTIONS(1035), - [anon_sym_return] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(1035), - [anon_sym_continue] = ACTIONS(1035), - [anon_sym_SEMI] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_sizeof] = ACTIONS(1035), - }, - [709] = { - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_case] = ACTIONS(1039), - [sym_null] = ACTIONS(1039), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1039), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_LPAREN2] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_DASH_DASH] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_else] = ACTIONS(1039), - [sym_true] = ACTIONS(1039), - [anon_sym_for] = ACTIONS(1039), - [anon_sym_break] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1039), - [anon_sym_return] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(1039), - [anon_sym_continue] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1041), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_sizeof] = ACTIONS(1039), - }, - [710] = { - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_case] = ACTIONS(1043), - [sym_null] = ACTIONS(1043), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1043), - [anon_sym_goto] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_LPAREN2] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_DASH_DASH] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1043), - [sym_true] = ACTIONS(1043), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_break] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1045), - [sym_number_literal] = ACTIONS(1045), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1045), - [anon_sym_switch] = ACTIONS(1043), - [sym_false] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_continue] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1045), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_sizeof] = ACTIONS(1043), - }, - [711] = { - [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1051), - [anon_sym_sizeof] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym_short] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1049), - [sym_null] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(1051), - [anon_sym_goto] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1051), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1049), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_LPAREN2] = ACTIONS(1049), - [anon_sym_typedef] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1049), - [anon_sym__Atomic] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [sym_true] = ACTIONS(1051), - [anon_sym_for] = ACTIONS(1051), - [anon_sym_break] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [aux_sym_preproc_include_token1] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1051), - [anon_sym_struct] = ACTIONS(1051), - [anon_sym_switch] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1049), - [sym_number_literal] = ACTIONS(1049), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [sym_false] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_inline] = ACTIONS(1051), - [anon_sym___attribute__] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - }, - [712] = { - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_case] = ACTIONS(1239), - [sym_null] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_goto] = ACTIONS(1239), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1239), - [anon_sym_else] = ACTIONS(1239), - [sym_true] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1241), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_switch] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [sym_identifier] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_sizeof] = ACTIONS(1239), - }, - [713] = { - [sym_while_statement] = STATE(718), - [sym_continue_statement] = STATE(718), - [sym_goto_statement] = STATE(718), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_if_statement] = STATE(718), - [sym_do_statement] = STATE(718), - [sym_for_statement] = STATE(718), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(718), - [sym_return_statement] = STATE(718), - [sym_break_statement] = STATE(718), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(718), - [anon_sym_LBRACE] = ACTIONS(977), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), + [sym_while_statement] = STATE(716), + [sym_continue_statement] = STATE(716), + [sym_goto_statement] = STATE(716), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(716), + [sym_expression_statement] = STATE(716), + [sym_if_statement] = STATE(716), + [sym_do_statement] = STATE(716), + [sym_for_statement] = STATE(716), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(716), + [sym_return_statement] = STATE(716), + [sym_break_statement] = STATE(716), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(716), + [anon_sym_LBRACE] = ACTIONS(1008), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [714] = { - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_case] = ACTIONS(1353), - [sym_null] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1353), - [sym_true] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1355), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_switch] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_sizeof] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [715] = { - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1379), - [anon_sym_unsigned] = ACTIONS(1379), - [anon_sym_restrict] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1377), - [sym_null] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_goto] = ACTIONS(1379), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1379), - [sym_preproc_directive] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1377), - [aux_sym_preproc_if_token1] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_typedef] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [anon_sym__Atomic] = ACTIONS(1379), - [sym_primitive_type] = ACTIONS(1379), - [sym_true] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), - [aux_sym_preproc_include_token1] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_volatile] = ACTIONS(1379), - [anon_sym_register] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_struct] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_signed] = ACTIONS(1379), - [anon_sym_enum] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1377), - [sym_number_literal] = ACTIONS(1377), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), - [anon_sym_auto] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1377), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym___attribute__] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), + [707] = { + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_union] = ACTIONS(400), + [anon_sym_sizeof] = ACTIONS(400), + [anon_sym_unsigned] = ACTIONS(400), + [anon_sym_restrict] = ACTIONS(400), + [anon_sym_short] = ACTIONS(400), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_null] = ACTIONS(400), + [anon_sym_do] = ACTIONS(400), + [anon_sym_goto] = ACTIONS(400), + [sym_identifier] = ACTIONS(400), + [aux_sym_preproc_if_token2] = ACTIONS(400), + [sym_preproc_directive] = ACTIONS(400), + [anon_sym_AMP] = ACTIONS(398), + [aux_sym_preproc_if_token1] = ACTIONS(400), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_const] = ACTIONS(400), + [anon_sym_LPAREN2] = ACTIONS(398), + [anon_sym_typedef] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(398), + [anon_sym__Atomic] = ACTIONS(400), + [sym_primitive_type] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(400), + [anon_sym_break] = ACTIONS(400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(400), + [aux_sym_preproc_include_token1] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_static] = ACTIONS(400), + [anon_sym_volatile] = ACTIONS(400), + [anon_sym_register] = ACTIONS(400), + [anon_sym_extern] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_struct] = ACTIONS(400), + [anon_sym_switch] = ACTIONS(400), + [anon_sym_signed] = ACTIONS(400), + [anon_sym_enum] = ACTIONS(400), + [anon_sym_long] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_PLUS_PLUS] = ACTIONS(398), + [anon_sym_return] = ACTIONS(400), + [anon_sym_while] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(400), + [anon_sym_SEMI] = ACTIONS(398), + [sym_number_literal] = ACTIONS(398), + [aux_sym_preproc_def_token1] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(398), + [anon_sym_auto] = ACTIONS(400), + [anon_sym_L] = ACTIONS(400), + [anon_sym_inline] = ACTIONS(400), + [anon_sym___attribute__] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), }, - [716] = { - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_sizeof] = ACTIONS(1391), - [anon_sym_unsigned] = ACTIONS(1391), - [anon_sym_restrict] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_null] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_goto] = ACTIONS(1391), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1391), - [sym_preproc_directive] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_typedef] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym__Atomic] = ACTIONS(1391), - [sym_primitive_type] = ACTIONS(1391), - [sym_true] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1391), - [aux_sym_preproc_include_token1] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_volatile] = ACTIONS(1391), - [anon_sym_register] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1389), - [sym_number_literal] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1391), - [sym_false] = ACTIONS(1391), - [anon_sym_auto] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_inline] = ACTIONS(1391), - [anon_sym___attribute__] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), + [708] = { + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_union] = ACTIONS(489), + [anon_sym_sizeof] = ACTIONS(489), + [anon_sym_unsigned] = ACTIONS(489), + [anon_sym_restrict] = ACTIONS(489), + [anon_sym_short] = ACTIONS(489), + [sym_true] = ACTIONS(489), + [sym_false] = ACTIONS(489), + [sym_null] = ACTIONS(489), + [anon_sym_do] = ACTIONS(489), + [anon_sym_goto] = ACTIONS(489), + [sym_identifier] = ACTIONS(489), + [aux_sym_preproc_if_token2] = ACTIONS(489), + [sym_preproc_directive] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(491), + [aux_sym_preproc_if_token1] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(491), + [anon_sym_const] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(491), + [anon_sym_typedef] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym__Atomic] = ACTIONS(489), + [sym_primitive_type] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(489), + [anon_sym_break] = ACTIONS(489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(489), + [aux_sym_preproc_include_token1] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_static] = ACTIONS(489), + [anon_sym_volatile] = ACTIONS(489), + [anon_sym_register] = ACTIONS(489), + [anon_sym_extern] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_if] = ACTIONS(489), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(489), + [anon_sym_signed] = ACTIONS(489), + [anon_sym_enum] = ACTIONS(489), + [anon_sym_long] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_PLUS_PLUS] = ACTIONS(491), + [anon_sym_return] = ACTIONS(489), + [anon_sym_while] = ACTIONS(489), + [anon_sym_continue] = ACTIONS(489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(491), + [sym_number_literal] = ACTIONS(491), + [aux_sym_preproc_def_token1] = ACTIONS(489), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_auto] = ACTIONS(489), + [anon_sym_L] = ACTIONS(489), + [anon_sym_inline] = ACTIONS(489), + [anon_sym___attribute__] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(489), }, - [717] = { + [709] = { + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_case] = ACTIONS(505), + [sym_false] = ACTIONS(505), + [sym_identifier] = ACTIONS(505), + [anon_sym_do] = ACTIONS(505), + [anon_sym_goto] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(507), + [anon_sym_LPAREN2] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_default] = ACTIONS(505), + [anon_sym_else] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(505), + [anon_sym_break] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [sym_number_literal] = ACTIONS(507), + [anon_sym_SQUOTE] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_if] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_switch] = ACTIONS(505), + [sym_true] = ACTIONS(505), + [sym_null] = ACTIONS(505), + [anon_sym_return] = ACTIONS(505), + [anon_sym_while] = ACTIONS(505), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_L] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_sizeof] = ACTIONS(505), + }, + [710] = { [sym_while_statement] = STATE(721), [sym_continue_statement] = STATE(721), [sym_goto_statement] = STATE(721), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), [sym_compound_statement] = STATE(721), [sym_expression_statement] = STATE(721), [sym_if_statement] = STATE(721), [sym_do_statement] = STATE(721), [sym_for_statement] = STATE(721), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), [sym_switch_statement] = STATE(721), [sym_return_statement] = STATE(721), [sym_break_statement] = STATE(721), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), [sym_labeled_statement] = STATE(721), - [anon_sym_LBRACE] = ACTIONS(977), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1008), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [711] = { + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_case] = ACTIONS(551), + [sym_false] = ACTIONS(551), + [sym_identifier] = ACTIONS(551), + [anon_sym_do] = ACTIONS(551), + [anon_sym_goto] = ACTIONS(551), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_AMP] = ACTIONS(553), + [anon_sym_DQUOTE] = ACTIONS(553), + [anon_sym_LPAREN2] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(553), + [anon_sym_DASH_DASH] = ACTIONS(553), + [anon_sym_default] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(553), + [sym_number_literal] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_if] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(551), + [sym_true] = ACTIONS(551), + [sym_null] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(553), + [anon_sym_L] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_sizeof] = ACTIONS(551), + }, + [712] = { + [sym_while_statement] = STATE(724), + [sym_continue_statement] = STATE(724), + [sym_goto_statement] = STATE(724), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(724), + [sym_expression_statement] = STATE(724), + [sym_if_statement] = STATE(724), + [sym_do_statement] = STATE(724), + [sym_for_statement] = STATE(724), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(724), + [sym_return_statement] = STATE(724), + [sym_break_statement] = STATE(724), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(724), + [anon_sym_LBRACE] = ACTIONS(1008), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [713] = { + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_case] = ACTIONS(557), + [sym_false] = ACTIONS(557), + [sym_identifier] = ACTIONS(557), + [anon_sym_do] = ACTIONS(557), + [anon_sym_goto] = ACTIONS(557), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(559), + [anon_sym_DQUOTE] = ACTIONS(559), + [anon_sym_LPAREN2] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_default] = ACTIONS(557), + [anon_sym_else] = ACTIONS(557), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(559), + [sym_number_literal] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(559), + [anon_sym_if] = ACTIONS(557), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_switch] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_L] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_sizeof] = ACTIONS(557), + }, + [714] = { + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_case] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_identifier] = ACTIONS(590), + [anon_sym_do] = ACTIONS(590), + [anon_sym_goto] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_LPAREN2] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_default] = ACTIONS(590), + [anon_sym_else] = ACTIONS(590), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [sym_number_literal] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_if] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_switch] = ACTIONS(590), + [sym_true] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(592), + [anon_sym_L] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_sizeof] = ACTIONS(590), + }, + [715] = { + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_case] = ACTIONS(816), + [sym_false] = ACTIONS(816), + [sym_identifier] = ACTIONS(816), + [anon_sym_do] = ACTIONS(816), + [anon_sym_goto] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_LPAREN2] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_DASH_DASH] = ACTIONS(818), + [anon_sym_default] = ACTIONS(816), + [anon_sym_else] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(816), + [anon_sym_break] = ACTIONS(816), + [anon_sym_BANG] = ACTIONS(818), + [sym_number_literal] = ACTIONS(818), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_if] = ACTIONS(816), + [anon_sym_PLUS_PLUS] = ACTIONS(818), + [anon_sym_switch] = ACTIONS(816), + [sym_true] = ACTIONS(816), + [sym_null] = ACTIONS(816), + [anon_sym_return] = ACTIONS(816), + [anon_sym_while] = ACTIONS(816), + [anon_sym_continue] = ACTIONS(816), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_L] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_sizeof] = ACTIONS(816), + }, + [716] = { + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_case] = ACTIONS(850), + [sym_false] = ACTIONS(850), + [sym_identifier] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_goto] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_DQUOTE] = ACTIONS(852), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_DASH_DASH] = ACTIONS(852), + [anon_sym_default] = ACTIONS(850), + [anon_sym_else] = ACTIONS(850), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(852), + [sym_number_literal] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_if] = ACTIONS(850), + [anon_sym_PLUS_PLUS] = ACTIONS(852), + [anon_sym_switch] = ACTIONS(850), + [sym_true] = ACTIONS(850), + [sym_null] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_L] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_sizeof] = ACTIONS(850), + }, + [717] = { + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_case] = ACTIONS(856), + [sym_false] = ACTIONS(856), + [sym_identifier] = ACTIONS(856), + [anon_sym_do] = ACTIONS(856), + [anon_sym_goto] = ACTIONS(856), + [anon_sym_TILDE] = ACTIONS(858), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_DQUOTE] = ACTIONS(858), + [anon_sym_LPAREN2] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_DASH_DASH] = ACTIONS(858), + [anon_sym_default] = ACTIONS(856), + [anon_sym_else] = ACTIONS(856), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(858), + [sym_number_literal] = ACTIONS(858), + [anon_sym_SQUOTE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(858), + [anon_sym_if] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(858), + [anon_sym_switch] = ACTIONS(856), + [sym_true] = ACTIONS(856), + [sym_null] = ACTIONS(856), + [anon_sym_return] = ACTIONS(856), + [anon_sym_while] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_L] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_sizeof] = ACTIONS(856), }, [718] = { - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_case] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_goto] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [sym_true] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_switch] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_union] = ACTIONS(862), + [anon_sym_sizeof] = ACTIONS(862), + [anon_sym_unsigned] = ACTIONS(862), + [anon_sym_restrict] = ACTIONS(862), + [anon_sym_short] = ACTIONS(862), + [sym_true] = ACTIONS(862), + [sym_false] = ACTIONS(862), + [sym_null] = ACTIONS(862), + [anon_sym_do] = ACTIONS(862), + [anon_sym_goto] = ACTIONS(862), + [sym_identifier] = ACTIONS(862), + [aux_sym_preproc_if_token2] = ACTIONS(862), + [sym_preproc_directive] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(860), + [aux_sym_preproc_if_token1] = ACTIONS(862), + [anon_sym_TILDE] = ACTIONS(860), + [anon_sym_const] = ACTIONS(862), + [anon_sym_LPAREN2] = ACTIONS(860), + [anon_sym_typedef] = ACTIONS(862), + [anon_sym_DASH_DASH] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(860), + [anon_sym__Atomic] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(862), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(862), + [anon_sym_break] = ACTIONS(862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(862), + [aux_sym_preproc_include_token1] = ACTIONS(862), + [anon_sym_BANG] = ACTIONS(860), + [anon_sym_static] = ACTIONS(862), + [anon_sym_volatile] = ACTIONS(862), + [anon_sym_register] = ACTIONS(862), + [anon_sym_extern] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_if] = ACTIONS(862), + [anon_sym_struct] = ACTIONS(862), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_signed] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_long] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(860), + [anon_sym_return] = ACTIONS(862), + [anon_sym_while] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(862), + [anon_sym_SEMI] = ACTIONS(860), + [sym_number_literal] = ACTIONS(860), + [aux_sym_preproc_def_token1] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_auto] = ACTIONS(862), + [anon_sym_L] = ACTIONS(862), + [anon_sym_inline] = ACTIONS(862), + [anon_sym___attribute__] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(862), }, [719] = { - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_case] = ACTIONS(1599), - [sym_null] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_LPAREN2] = ACTIONS(1601), - [anon_sym_RBRACE] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1599), - [anon_sym_else] = ACTIONS(1599), - [sym_true] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [sym_number_literal] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1599), + [sym_false] = ACTIONS(918), + [anon_sym_restrict] = ACTIONS(918), + [sym_identifier] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(918), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [sym_number_literal] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_signed] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [aux_sym_preproc_elif_token1] = ACTIONS(918), + [anon_sym_L] = ACTIONS(918), + [anon_sym___attribute__] = ACTIONS(918), + [anon_sym_sizeof] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_union] = ACTIONS(918), + [anon_sym_unsigned] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [aux_sym_preproc_else_token1] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_else] = ACTIONS(918), + [sym_primitive_type] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_static] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_if] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(918), + [sym_true] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [sym_null] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [anon_sym_auto] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), }, [720] = { - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_sizeof] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym_null] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_goto] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1701), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1701), - [anon_sym_typedef] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym__Atomic] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [sym_true] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_switch] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1701), - [sym_number_literal] = ACTIONS(1701), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [sym_false] = ACTIONS(1703), - [anon_sym_auto] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_union] = ACTIONS(965), + [anon_sym_sizeof] = ACTIONS(965), + [anon_sym_unsigned] = ACTIONS(965), + [anon_sym_restrict] = ACTIONS(965), + [anon_sym_short] = ACTIONS(965), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(965), + [sym_identifier] = ACTIONS(965), + [aux_sym_preproc_if_token2] = ACTIONS(965), + [sym_preproc_directive] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [aux_sym_preproc_if_token1] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_const] = ACTIONS(965), + [anon_sym_LPAREN2] = ACTIONS(967), + [anon_sym_typedef] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym__Atomic] = ACTIONS(965), + [sym_primitive_type] = ACTIONS(965), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(965), + [aux_sym_preproc_include_token1] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_static] = ACTIONS(965), + [anon_sym_volatile] = ACTIONS(965), + [anon_sym_register] = ACTIONS(965), + [anon_sym_extern] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_if] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_switch] = ACTIONS(965), + [anon_sym_signed] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_long] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(967), + [anon_sym_return] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [sym_number_literal] = ACTIONS(967), + [aux_sym_preproc_def_token1] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_auto] = ACTIONS(965), + [anon_sym_L] = ACTIONS(965), + [anon_sym_inline] = ACTIONS(965), + [anon_sym___attribute__] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), }, [721] = { - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_case] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [sym_true] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1824), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_switch] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_sizeof] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(998), + [sym_false] = ACTIONS(998), + [sym_identifier] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_goto] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(998), + [anon_sym_else] = ACTIONS(2375), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1000), + [anon_sym_SQUOTE] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(998), + [sym_true] = ACTIONS(998), + [sym_null] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_L] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(998), }, [722] = { - [sym_while_statement] = STATE(723), - [sym_continue_statement] = STATE(723), - [sym_goto_statement] = STATE(723), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(723), - [sym_expression_statement] = STATE(723), - [sym_if_statement] = STATE(723), - [sym_do_statement] = STATE(723), - [sym_for_statement] = STATE(723), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(723), - [sym_return_statement] = STATE(723), - [sym_break_statement] = STATE(723), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(723), - [anon_sym_LBRACE] = ACTIONS(977), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1042), + [sym_false] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_goto] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1042), + [sym_true] = ACTIONS(1042), + [sym_null] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_L] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1042), }, [723] = { - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_case] = ACTIONS(1890), - [sym_null] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_goto] = ACTIONS(1890), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [sym_true] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_switch] = ACTIONS(1890), - [sym_false] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_sizeof] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_goto] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1062), + [sym_true] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_L] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1062), }, [724] = { - [sym_while_statement] = STATE(725), - [sym_continue_statement] = STATE(725), - [sym_goto_statement] = STATE(725), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(725), - [sym_expression_statement] = STATE(725), - [sym_if_statement] = STATE(725), - [sym_do_statement] = STATE(725), - [sym_for_statement] = STATE(725), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(725), - [sym_return_statement] = STATE(725), - [sym_break_statement] = STATE(725), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(725), - [anon_sym_LBRACE] = ACTIONS(977), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1066), + [sym_false] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_goto] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1066), + [sym_true] = ACTIONS(1066), + [sym_null] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_L] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1066), }, [725] = { - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_case] = ACTIONS(2008), - [sym_null] = ACTIONS(2008), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(2008), - [anon_sym_goto] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_LPAREN2] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(2010), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_else] = ACTIONS(2008), - [sym_true] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2010), - [sym_number_literal] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2010), - [anon_sym_switch] = ACTIONS(2008), - [sym_false] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_SQUOTE] = ACTIONS(2010), - [anon_sym_DQUOTE] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), + [aux_sym_preproc_if_token2] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_LPAREN2] = ACTIONS(1072), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_L] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), }, [726] = { - [sym_while_statement] = STATE(727), - [sym_continue_statement] = STATE(727), - [sym_goto_statement] = STATE(727), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(727), - [sym_expression_statement] = STATE(727), - [sym_if_statement] = STATE(727), - [sym_do_statement] = STATE(727), - [sym_for_statement] = STATE(727), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(727), - [sym_return_statement] = STATE(727), - [sym_break_statement] = STATE(727), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(727), - [anon_sym_LBRACE] = ACTIONS(977), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1273), + [sym_false] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_goto] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1273), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1273), + [sym_true] = ACTIONS(1273), + [sym_null] = ACTIONS(1273), + [anon_sym_return] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_L] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1273), }, [727] = { - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_case] = ACTIONS(2014), - [sym_null] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(2014), - [anon_sym_goto] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_DASH_DASH] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2014), - [anon_sym_else] = ACTIONS(2014), - [sym_true] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2016), - [sym_number_literal] = ACTIONS(2016), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_PLUS_PLUS] = ACTIONS(2016), - [anon_sym_switch] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2014), - [anon_sym_continue] = ACTIONS(2014), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_sizeof] = ACTIONS(2014), - }, - [728] = { - [sym_while_statement] = STATE(729), - [sym_continue_statement] = STATE(729), - [sym_goto_statement] = STATE(729), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(729), - [sym_expression_statement] = STATE(729), - [sym_if_statement] = STATE(729), - [sym_do_statement] = STATE(729), - [sym_for_statement] = STATE(729), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(729), - [sym_return_statement] = STATE(729), - [sym_break_statement] = STATE(729), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(729), - [anon_sym_LBRACE] = ACTIONS(977), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), + [sym_while_statement] = STATE(733), + [sym_continue_statement] = STATE(733), + [sym_goto_statement] = STATE(733), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(733), + [sym_expression_statement] = STATE(733), + [sym_if_statement] = STATE(733), + [sym_do_statement] = STATE(733), + [sym_for_statement] = STATE(733), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(733), + [sym_return_statement] = STATE(733), + [sym_break_statement] = STATE(733), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(733), + [anon_sym_LBRACE] = ACTIONS(1008), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [728] = { + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_case] = ACTIONS(1387), + [sym_false] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_goto] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_LPAREN2] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1389), + [sym_number_literal] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1387), + [sym_true] = ACTIONS(1387), + [sym_null] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_L] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1387), }, [729] = { - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_case] = ACTIONS(2018), - [sym_null] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_goto] = ACTIONS(2018), - [anon_sym_TILDE] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_RBRACE] = ACTIONS(2020), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2018), - [anon_sym_else] = ACTIONS(2018), - [sym_true] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2020), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_switch] = ACTIONS(2018), - [sym_false] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_sizeof] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1409), + [anon_sym_unsigned] = ACTIONS(1409), + [anon_sym_restrict] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [sym_null] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_goto] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1409), + [aux_sym_preproc_if_token2] = ACTIONS(1409), + [sym_preproc_directive] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1407), + [aux_sym_preproc_if_token1] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_LPAREN2] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1409), + [sym_primitive_type] = ACTIONS(1409), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), + [aux_sym_preproc_include_token1] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_volatile] = ACTIONS(1409), + [anon_sym_register] = ACTIONS(1409), + [anon_sym_extern] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_struct] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1409), + [anon_sym_L] = ACTIONS(1409), + [anon_sym_inline] = ACTIONS(1409), + [anon_sym___attribute__] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), }, [730] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(390), - [anon_sym_union] = ACTIONS(390), - [anon_sym_unsigned] = ACTIONS(390), - [anon_sym_restrict] = ACTIONS(390), - [anon_sym_short] = ACTIONS(390), - [anon_sym_static] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(390), - [anon_sym_register] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(390), - [aux_sym_preproc_if_token2] = ACTIONS(390), - [sym_preproc_directive] = ACTIONS(390), - [anon_sym_signed] = ACTIONS(390), - [aux_sym_preproc_if_token1] = ACTIONS(390), - [anon_sym_long] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [anon_sym_const] = ACTIONS(390), - [anon_sym_struct] = ACTIONS(390), - [sym_identifier] = ACTIONS(390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(390), - [aux_sym_preproc_elif_token1] = ACTIONS(390), - [aux_sym_preproc_def_token1] = ACTIONS(390), - [anon_sym__Atomic] = ACTIONS(390), - [anon_sym_auto] = ACTIONS(390), - [sym_primitive_type] = ACTIONS(390), - [anon_sym_inline] = ACTIONS(390), - [anon_sym___attribute__] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_sizeof] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [sym_true] = ACTIONS(1421), + [sym_false] = ACTIONS(1421), + [sym_null] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_goto] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1421), + [aux_sym_preproc_if_token2] = ACTIONS(1421), + [sym_preproc_directive] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [aux_sym_preproc_if_token1] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_typedef] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1421), + [sym_primitive_type] = ACTIONS(1421), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), + [aux_sym_preproc_include_token1] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [sym_number_literal] = ACTIONS(1419), + [aux_sym_preproc_def_token1] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_auto] = ACTIONS(1421), + [anon_sym_L] = ACTIONS(1421), + [anon_sym_inline] = ACTIONS(1421), + [anon_sym___attribute__] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), }, [731] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsigned] = ACTIONS(840), - [anon_sym_restrict] = ACTIONS(840), - [anon_sym_short] = ACTIONS(840), - [anon_sym_static] = ACTIONS(840), - [anon_sym_volatile] = ACTIONS(840), - [anon_sym_register] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(840), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(840), - [aux_sym_preproc_if_token2] = ACTIONS(840), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_signed] = ACTIONS(840), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [anon_sym_long] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(840), - [anon_sym_const] = ACTIONS(840), - [anon_sym_struct] = ACTIONS(840), - [sym_identifier] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [aux_sym_preproc_elif_token1] = ACTIONS(840), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [anon_sym__Atomic] = ACTIONS(840), - [anon_sym_auto] = ACTIONS(840), - [sym_primitive_type] = ACTIONS(840), - [anon_sym_inline] = ACTIONS(840), - [anon_sym___attribute__] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_sizeof] = ACTIONS(1429), + [anon_sym_unsigned] = ACTIONS(1429), + [anon_sym_restrict] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [sym_true] = ACTIONS(1429), + [sym_false] = ACTIONS(1429), + [sym_null] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_goto] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1429), + [aux_sym_preproc_if_token2] = ACTIONS(1429), + [sym_preproc_directive] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [aux_sym_preproc_if_token1] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_typedef] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym__Atomic] = ACTIONS(1429), + [sym_primitive_type] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), + [aux_sym_preproc_include_token1] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_volatile] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_signed] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [sym_number_literal] = ACTIONS(1431), + [aux_sym_preproc_def_token1] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_auto] = ACTIONS(1429), + [anon_sym_L] = ACTIONS(1429), + [anon_sym_inline] = ACTIONS(1429), + [anon_sym___attribute__] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), }, [732] = { - [sym_null] = ACTIONS(896), - [anon_sym_restrict] = ACTIONS(896), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(896), - [aux_sym_preproc_if_token2] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_typedef] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(896), - [sym_number_literal] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_signed] = ACTIONS(896), - [anon_sym_long] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(896), - [anon_sym_sizeof] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsigned] = ACTIONS(896), - [anon_sym_short] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_else] = ACTIONS(896), - [sym_true] = ACTIONS(896), - [sym_primitive_type] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [aux_sym_preproc_include_token1] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_static] = ACTIONS(896), - [anon_sym_register] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_if] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [sym_identifier] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(896), - [anon_sym_auto] = ACTIONS(896), - [anon_sym_inline] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), + [sym_while_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(736), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(736), + [anon_sym_LBRACE] = ACTIONS(1008), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [733] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [anon_sym_union] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym_short] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1051), - [aux_sym_preproc_if_token2] = ACTIONS(1051), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1051), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_struct] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), - [aux_sym_preproc_elif_token1] = ACTIONS(1051), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [anon_sym__Atomic] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [anon_sym_inline] = ACTIONS(1051), - [anon_sym___attribute__] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_case] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [sym_identifier] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_goto] = ACTIONS(1625), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_default] = ACTIONS(1625), + [anon_sym_else] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [sym_number_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_switch] = ACTIONS(1625), + [sym_true] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_L] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_sizeof] = ACTIONS(1625), }, [734] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), - [anon_sym_union] = ACTIONS(1379), - [anon_sym_unsigned] = ACTIONS(1379), - [anon_sym_restrict] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_volatile] = ACTIONS(1379), - [anon_sym_register] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1379), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1379), - [aux_sym_preproc_if_token2] = ACTIONS(1379), - [sym_preproc_directive] = ACTIONS(1379), - [anon_sym_signed] = ACTIONS(1379), - [aux_sym_preproc_if_token1] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_enum] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_struct] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), - [aux_sym_preproc_elif_token1] = ACTIONS(1379), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [anon_sym__Atomic] = ACTIONS(1379), - [anon_sym_auto] = ACTIONS(1379), - [sym_primitive_type] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym___attribute__] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1637), + [sym_false] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_goto] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1637), + [anon_sym_else] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1637), + [sym_true] = ACTIONS(1637), + [sym_null] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_L] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1637), }, [735] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1391), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_unsigned] = ACTIONS(1391), - [anon_sym_restrict] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_volatile] = ACTIONS(1391), - [anon_sym_register] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1391), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1391), - [aux_sym_preproc_if_token2] = ACTIONS(1391), - [sym_preproc_directive] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1391), - [aux_sym_preproc_if_token1] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1391), - [aux_sym_preproc_elif_token1] = ACTIONS(1391), - [aux_sym_preproc_def_token1] = ACTIONS(1391), - [anon_sym__Atomic] = ACTIONS(1391), - [anon_sym_auto] = ACTIONS(1391), - [sym_primitive_type] = ACTIONS(1391), - [anon_sym_inline] = ACTIONS(1391), - [anon_sym___attribute__] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_sizeof] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [sym_null] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_goto] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1744), + [aux_sym_preproc_if_token2] = ACTIONS(1744), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1742), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1742), + [anon_sym_typedef] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [anon_sym__Atomic] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [aux_sym_preproc_include_token1] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1742), + [sym_number_literal] = ACTIONS(1742), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_L] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), }, [736] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token2] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [aux_sym_preproc_elif_token1] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [anon_sym__Atomic] = ACTIONS(1703), - [anon_sym_auto] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_case] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_goto] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1865), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1865), + [sym_number_literal] = ACTIONS(1865), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_switch] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [sym_null] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_L] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_sizeof] = ACTIONS(1863), }, [737] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(390), - [anon_sym_union] = ACTIONS(390), - [anon_sym_unsigned] = ACTIONS(390), - [anon_sym_restrict] = ACTIONS(390), - [anon_sym_short] = ACTIONS(390), - [anon_sym_static] = ACTIONS(390), - [anon_sym_volatile] = ACTIONS(390), - [anon_sym_register] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(390), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(390), - [sym_preproc_directive] = ACTIONS(390), - [anon_sym_signed] = ACTIONS(390), - [aux_sym_preproc_if_token1] = ACTIONS(390), - [anon_sym_long] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [anon_sym_const] = ACTIONS(390), - [anon_sym_struct] = ACTIONS(390), - [sym_identifier] = ACTIONS(390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(390), - [aux_sym_preproc_def_token1] = ACTIONS(390), - [anon_sym__Atomic] = ACTIONS(390), - [anon_sym_auto] = ACTIONS(390), - [sym_primitive_type] = ACTIONS(390), - [anon_sym_inline] = ACTIONS(390), - [anon_sym___attribute__] = ACTIONS(390), + [sym_while_statement] = STATE(738), + [sym_continue_statement] = STATE(738), + [sym_goto_statement] = STATE(738), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(738), + [sym_expression_statement] = STATE(738), + [sym_if_statement] = STATE(738), + [sym_do_statement] = STATE(738), + [sym_for_statement] = STATE(738), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(738), + [sym_return_statement] = STATE(738), + [sym_break_statement] = STATE(738), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(738), + [anon_sym_LBRACE] = ACTIONS(1008), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [738] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [anon_sym_union] = ACTIONS(840), - [anon_sym_unsigned] = ACTIONS(840), - [anon_sym_restrict] = ACTIONS(840), - [anon_sym_short] = ACTIONS(840), - [anon_sym_static] = ACTIONS(840), - [anon_sym_volatile] = ACTIONS(840), - [anon_sym_register] = ACTIONS(840), - [anon_sym_extern] = ACTIONS(840), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(840), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_signed] = ACTIONS(840), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [anon_sym_long] = ACTIONS(840), - [anon_sym_enum] = ACTIONS(840), - [anon_sym_const] = ACTIONS(840), - [anon_sym_struct] = ACTIONS(840), - [sym_identifier] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [anon_sym__Atomic] = ACTIONS(840), - [anon_sym_auto] = ACTIONS(840), - [sym_primitive_type] = ACTIONS(840), - [anon_sym_inline] = ACTIONS(840), - [anon_sym___attribute__] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_case] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_goto] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1933), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_switch] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_null] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_L] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1931), }, [739] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1051), - [anon_sym_union] = ACTIONS(1051), - [anon_sym_unsigned] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym_short] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_register] = ACTIONS(1051), - [anon_sym_extern] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1051), - [sym_preproc_directive] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1051), - [aux_sym_preproc_if_token1] = ACTIONS(1051), - [anon_sym_long] = ACTIONS(1051), - [anon_sym_enum] = ACTIONS(1051), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_struct] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1051), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1051), - [aux_sym_preproc_def_token1] = ACTIONS(1051), - [anon_sym__Atomic] = ACTIONS(1051), - [anon_sym_auto] = ACTIONS(1051), - [sym_primitive_type] = ACTIONS(1051), - [anon_sym_inline] = ACTIONS(1051), - [anon_sym___attribute__] = ACTIONS(1051), + [sym_while_statement] = STATE(740), + [sym_continue_statement] = STATE(740), + [sym_goto_statement] = STATE(740), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(740), + [sym_expression_statement] = STATE(740), + [sym_if_statement] = STATE(740), + [sym_do_statement] = STATE(740), + [sym_for_statement] = STATE(740), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(740), + [sym_return_statement] = STATE(740), + [sym_break_statement] = STATE(740), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(740), + [anon_sym_LBRACE] = ACTIONS(1008), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [740] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), - [anon_sym_union] = ACTIONS(1379), - [anon_sym_unsigned] = ACTIONS(1379), - [anon_sym_restrict] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_volatile] = ACTIONS(1379), - [anon_sym_register] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1379), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1379), - [sym_preproc_directive] = ACTIONS(1379), - [anon_sym_signed] = ACTIONS(1379), - [aux_sym_preproc_if_token1] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_enum] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_struct] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [anon_sym__Atomic] = ACTIONS(1379), - [anon_sym_auto] = ACTIONS(1379), - [sym_primitive_type] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym___attribute__] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_case] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_else] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2054), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_switch] = ACTIONS(2052), + [sym_true] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_L] = ACTIONS(2052), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_sizeof] = ACTIONS(2052), }, [741] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1391), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_unsigned] = ACTIONS(1391), - [anon_sym_restrict] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_volatile] = ACTIONS(1391), - [anon_sym_register] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1391), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1391), - [sym_preproc_directive] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1391), - [aux_sym_preproc_if_token1] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [sym_identifier] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1391), - [aux_sym_preproc_def_token1] = ACTIONS(1391), - [anon_sym__Atomic] = ACTIONS(1391), - [anon_sym_auto] = ACTIONS(1391), - [sym_primitive_type] = ACTIONS(1391), - [anon_sym_inline] = ACTIONS(1391), - [anon_sym___attribute__] = ACTIONS(1391), + [sym_while_statement] = STATE(742), + [sym_continue_statement] = STATE(742), + [sym_goto_statement] = STATE(742), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(742), + [sym_expression_statement] = STATE(742), + [sym_if_statement] = STATE(742), + [sym_do_statement] = STATE(742), + [sym_for_statement] = STATE(742), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(742), + [sym_return_statement] = STATE(742), + [sym_break_statement] = STATE(742), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(742), + [anon_sym_LBRACE] = ACTIONS(1008), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [742] = { - [aux_sym_preproc_ifdef_token1] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_restrict] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_if_token2] = ACTIONS(1703), - [sym_preproc_directive] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1703), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [anon_sym__Atomic] = ACTIONS(1703), - [anon_sym_auto] = ACTIONS(1703), - [sym_primitive_type] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym___attribute__] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_case] = ACTIONS(2058), + [sym_false] = ACTIONS(2058), + [sym_identifier] = ACTIONS(2058), + [anon_sym_do] = ACTIONS(2058), + [anon_sym_goto] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2058), + [anon_sym_else] = ACTIONS(2058), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2060), + [sym_number_literal] = ACTIONS(2060), + [anon_sym_SQUOTE] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2058), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2058), + [sym_true] = ACTIONS(2058), + [sym_null] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_L] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2058), + [anon_sym_sizeof] = ACTIONS(2058), }, [743] = { - [sym_continue_statement] = STATE(760), - [sym_preproc_function_def] = STATE(760), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(760), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(760), - [sym_for_statement] = STATE(760), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(760), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(760), - [sym_return_statement] = STATE(760), - [sym_preproc_include] = STATE(760), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(760), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(760), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(760), - [sym_while_statement] = STATE(760), - [sym_preproc_def] = STATE(760), - [sym_goto_statement] = STATE(760), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(760), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(760), - [sym_expression_statement] = STATE(760), - [sym_do_statement] = STATE(760), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(760), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(760), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(760), - [sym_preproc_if] = STATE(760), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(760), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(99), + [sym_while_statement] = STATE(744), + [sym_continue_statement] = STATE(744), + [sym_goto_statement] = STATE(744), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(744), + [sym_expression_statement] = STATE(744), + [sym_if_statement] = STATE(744), + [sym_do_statement] = STATE(744), + [sym_for_statement] = STATE(744), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(744), + [sym_return_statement] = STATE(744), + [sym_break_statement] = STATE(744), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(744), + [anon_sym_LBRACE] = ACTIONS(1008), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2327), - [sym_true] = ACTIONS(83), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [744] = { - [sym_pointer_expression] = STATE(761), - [sym_logical_expression] = STATE(761), - [sym_math_expression] = STATE(761), - [sym_cast_expression] = STATE(761), - [sym_field_expression] = STATE(761), - [sym__expression] = STATE(761), - [sym_bitwise_expression] = STATE(761), - [sym_equality_expression] = STATE(761), - [sym_sizeof_expression] = STATE(761), - [sym_compound_literal_expression] = STATE(761), - [sym_parenthesized_expression] = STATE(761), - [sym_char_literal] = STATE(761), - [sym_concatenated_string] = STATE(761), - [sym_conditional_expression] = STATE(761), - [sym_assignment_expression] = STATE(761), - [sym_relational_expression] = STATE(761), - [sym_shift_expression] = STATE(761), - [sym_subscript_expression] = STATE(761), - [sym_call_expression] = STATE(761), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(2331), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2329), - [anon_sym_LPAREN2] = ACTIONS(2333), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(2329), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_case] = ACTIONS(2062), + [sym_false] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_goto] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_DASH_DASH] = ACTIONS(2064), + [anon_sym_default] = ACTIONS(2062), + [anon_sym_else] = ACTIONS(2062), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2064), + [sym_number_literal] = ACTIONS(2064), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2064), + [anon_sym_switch] = ACTIONS(2062), + [sym_true] = ACTIONS(2062), + [sym_null] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_L] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2062), }, [745] = { - [aux_sym_string_literal_repeat1] = STATE(762), - [aux_sym_string_literal_token1] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2337), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(2335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(400), + [anon_sym_union] = ACTIONS(400), + [anon_sym_unsigned] = ACTIONS(400), + [anon_sym_restrict] = ACTIONS(400), + [anon_sym_short] = ACTIONS(400), + [anon_sym_static] = ACTIONS(400), + [anon_sym_volatile] = ACTIONS(400), + [anon_sym_register] = ACTIONS(400), + [anon_sym_extern] = ACTIONS(400), + [sym_identifier] = ACTIONS(400), + [aux_sym_preproc_else_token1] = ACTIONS(400), + [aux_sym_preproc_if_token2] = ACTIONS(400), + [sym_preproc_directive] = ACTIONS(400), + [anon_sym_signed] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(400), + [anon_sym_long] = ACTIONS(400), + [anon_sym_enum] = ACTIONS(400), + [anon_sym_const] = ACTIONS(400), + [anon_sym_struct] = ACTIONS(400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(400), + [aux_sym_preproc_elif_token1] = ACTIONS(400), + [aux_sym_preproc_def_token1] = ACTIONS(400), + [anon_sym__Atomic] = ACTIONS(400), + [anon_sym_auto] = ACTIONS(400), + [sym_primitive_type] = ACTIONS(400), + [anon_sym_inline] = ACTIONS(400), + [anon_sym___attribute__] = ACTIONS(400), + [sym_comment] = ACTIONS(3), }, [746] = { - [sym_pointer_expression] = STATE(57), - [sym_logical_expression] = STATE(57), - [sym_math_expression] = STATE(57), - [sym_cast_expression] = STATE(57), - [sym_field_expression] = STATE(57), - [sym__expression] = STATE(57), - [sym_bitwise_expression] = STATE(57), - [sym_equality_expression] = STATE(57), - [sym_sizeof_expression] = STATE(57), - [sym_compound_literal_expression] = STATE(57), - [sym_parenthesized_expression] = STATE(57), - [sym_char_literal] = STATE(57), - [sym_concatenated_string] = STATE(57), - [sym_conditional_expression] = STATE(57), - [sym_assignment_expression] = STATE(57), - [sym_relational_expression] = STATE(57), - [sym_shift_expression] = STATE(57), - [sym_subscript_expression] = STATE(57), - [sym_call_expression] = STATE(57), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(163), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(161), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(862), + [anon_sym_union] = ACTIONS(862), + [anon_sym_unsigned] = ACTIONS(862), + [anon_sym_restrict] = ACTIONS(862), + [anon_sym_short] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_volatile] = ACTIONS(862), + [anon_sym_register] = ACTIONS(862), + [anon_sym_extern] = ACTIONS(862), + [sym_identifier] = ACTIONS(862), + [aux_sym_preproc_else_token1] = ACTIONS(862), + [aux_sym_preproc_if_token2] = ACTIONS(862), + [sym_preproc_directive] = ACTIONS(862), + [anon_sym_signed] = ACTIONS(862), + [aux_sym_preproc_if_token1] = ACTIONS(862), + [anon_sym_long] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_const] = ACTIONS(862), + [anon_sym_struct] = ACTIONS(862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(862), + [aux_sym_preproc_elif_token1] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(862), + [anon_sym__Atomic] = ACTIONS(862), + [anon_sym_auto] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(862), + [anon_sym_inline] = ACTIONS(862), + [anon_sym___attribute__] = ACTIONS(862), + [sym_comment] = ACTIONS(3), }, [747] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2339), - [sym_preproc_arg] = ACTIONS(2341), + [sym_false] = ACTIONS(918), + [anon_sym_restrict] = ACTIONS(918), + [sym_identifier] = ACTIONS(918), + [anon_sym_goto] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_DASH_DASH] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(918), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [sym_number_literal] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(918), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(918), + [anon_sym_PLUS_PLUS] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_signed] = ACTIONS(918), + [anon_sym_long] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [anon_sym_L] = ACTIONS(918), + [anon_sym___attribute__] = ACTIONS(918), + [anon_sym_sizeof] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_union] = ACTIONS(918), + [anon_sym_unsigned] = ACTIONS(918), + [anon_sym_short] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [anon_sym_DQUOTE] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(920), + [anon_sym_else] = ACTIONS(918), + [sym_primitive_type] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_static] = ACTIONS(918), + [anon_sym_register] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_if] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(918), + [sym_true] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [sym_null] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [anon_sym_auto] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), }, [748] = { - [sym_pointer_expression] = STATE(71), - [sym_logical_expression] = STATE(71), - [sym_math_expression] = STATE(71), - [sym_cast_expression] = STATE(71), - [sym_field_expression] = STATE(71), - [sym__expression] = STATE(71), - [sym_bitwise_expression] = STATE(71), - [sym_equality_expression] = STATE(71), - [sym_sizeof_expression] = STATE(71), - [sym_compound_literal_expression] = STATE(71), - [sym_parenthesized_expression] = STATE(71), - [sym_char_literal] = STATE(71), - [sym_concatenated_string] = STATE(71), - [sym_conditional_expression] = STATE(71), - [sym_assignment_expression] = STATE(71), - [sym_relational_expression] = STATE(71), - [sym_shift_expression] = STATE(71), - [sym_subscript_expression] = STATE(71), - [sym_call_expression] = STATE(71), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(201), - [sym_identifier] = ACTIONS(201), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), + [aux_sym_preproc_else_token1] = ACTIONS(1074), + [aux_sym_preproc_if_token2] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [aux_sym_preproc_elif_token1] = ACTIONS(1074), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), + [sym_comment] = ACTIONS(3), }, [749] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsigned] = ACTIONS(1409), + [anon_sym_restrict] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_volatile] = ACTIONS(1409), + [anon_sym_register] = ACTIONS(1409), + [anon_sym_extern] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1409), + [aux_sym_preproc_else_token1] = ACTIONS(1409), + [aux_sym_preproc_if_token2] = ACTIONS(1409), + [sym_preproc_directive] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1409), + [aux_sym_preproc_if_token1] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_struct] = ACTIONS(1409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), + [aux_sym_preproc_elif_token1] = ACTIONS(1409), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [anon_sym__Atomic] = ACTIONS(1409), + [anon_sym_auto] = ACTIONS(1409), + [sym_primitive_type] = ACTIONS(1409), + [anon_sym_inline] = ACTIONS(1409), + [anon_sym___attribute__] = ACTIONS(1409), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2343), }, [750] = { - [sym_string_literal] = STATE(475), - [sym_system_lib_string] = ACTIONS(2345), - [anon_sym_DQUOTE] = ACTIONS(2347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1421), + [aux_sym_preproc_else_token1] = ACTIONS(1421), + [aux_sym_preproc_if_token2] = ACTIONS(1421), + [sym_preproc_directive] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1421), + [aux_sym_preproc_if_token1] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), + [aux_sym_preproc_elif_token1] = ACTIONS(1421), + [aux_sym_preproc_def_token1] = ACTIONS(1421), + [anon_sym__Atomic] = ACTIONS(1421), + [anon_sym_auto] = ACTIONS(1421), + [sym_primitive_type] = ACTIONS(1421), + [anon_sym_inline] = ACTIONS(1421), + [anon_sym___attribute__] = ACTIONS(1421), [sym_comment] = ACTIONS(3), }, [751] = { - [sym_pointer_expression] = STATE(76), - [sym_logical_expression] = STATE(76), - [sym_math_expression] = STATE(76), - [sym_cast_expression] = STATE(76), - [sym_field_expression] = STATE(76), - [sym__expression] = STATE(76), - [sym_bitwise_expression] = STATE(76), - [sym_equality_expression] = STATE(76), - [sym_sizeof_expression] = STATE(76), - [sym_compound_literal_expression] = STATE(76), - [sym_parenthesized_expression] = STATE(76), - [sym_char_literal] = STATE(76), - [sym_concatenated_string] = STATE(76), - [sym_conditional_expression] = STATE(76), - [sym_assignment_expression] = STATE(76), - [sym_relational_expression] = STATE(76), - [sym_shift_expression] = STATE(76), - [sym_subscript_expression] = STATE(76), - [sym_call_expression] = STATE(76), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(215), - [anon_sym_BANG] = ACTIONS(171), - [sym_number_literal] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(215), - [sym_identifier] = ACTIONS(215), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_DASH_DASH] = ACTIONS(177), - [sym_true] = ACTIONS(215), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_sizeof] = ACTIONS(183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1744), + [aux_sym_preproc_else_token1] = ACTIONS(1744), + [aux_sym_preproc_if_token2] = ACTIONS(1744), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [aux_sym_preproc_elif_token1] = ACTIONS(1744), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), }, [752] = { - [sym_parenthesized_expression] = STATE(476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(400), + [anon_sym_union] = ACTIONS(400), + [anon_sym_unsigned] = ACTIONS(400), + [anon_sym_restrict] = ACTIONS(400), + [anon_sym_short] = ACTIONS(400), + [anon_sym_static] = ACTIONS(400), + [anon_sym_volatile] = ACTIONS(400), + [anon_sym_register] = ACTIONS(400), + [anon_sym_extern] = ACTIONS(400), + [sym_identifier] = ACTIONS(400), + [aux_sym_preproc_if_token2] = ACTIONS(400), + [sym_preproc_directive] = ACTIONS(400), + [anon_sym_signed] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(400), + [anon_sym_long] = ACTIONS(400), + [anon_sym_enum] = ACTIONS(400), + [anon_sym_const] = ACTIONS(400), + [anon_sym_struct] = ACTIONS(400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(400), + [aux_sym_preproc_def_token1] = ACTIONS(400), + [anon_sym__Atomic] = ACTIONS(400), + [anon_sym_auto] = ACTIONS(400), + [sym_primitive_type] = ACTIONS(400), + [anon_sym_inline] = ACTIONS(400), + [anon_sym___attribute__] = ACTIONS(400), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), }, [753] = { - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_restrict] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_const] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_COLON] = ACTIONS(2349), - [anon_sym__Atomic] = ACTIONS(237), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_static] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [sym_identifier] = ACTIONS(237), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_inline] = ACTIONS(237), - [anon_sym___attribute__] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(862), + [anon_sym_union] = ACTIONS(862), + [anon_sym_unsigned] = ACTIONS(862), + [anon_sym_restrict] = ACTIONS(862), + [anon_sym_short] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_volatile] = ACTIONS(862), + [anon_sym_register] = ACTIONS(862), + [anon_sym_extern] = ACTIONS(862), + [sym_identifier] = ACTIONS(862), + [aux_sym_preproc_if_token2] = ACTIONS(862), + [sym_preproc_directive] = ACTIONS(862), + [anon_sym_signed] = ACTIONS(862), + [aux_sym_preproc_if_token1] = ACTIONS(862), + [anon_sym_long] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_const] = ACTIONS(862), + [anon_sym_struct] = ACTIONS(862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(862), + [aux_sym_preproc_def_token1] = ACTIONS(862), + [anon_sym__Atomic] = ACTIONS(862), + [anon_sym_auto] = ACTIONS(862), + [sym_primitive_type] = ACTIONS(862), + [anon_sym_inline] = ACTIONS(862), + [anon_sym___attribute__] = ACTIONS(862), + [sym_comment] = ACTIONS(3), }, [754] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(774), - [sym_math_expression] = STATE(774), - [sym_cast_expression] = STATE(774), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(774), - [sym_bitwise_expression] = STATE(774), - [sym_equality_expression] = STATE(774), - [sym_sizeof_expression] = STATE(774), - [sym_compound_literal_expression] = STATE(774), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(774), - [sym_concatenated_string] = STATE(774), - [sym_conditional_expression] = STATE(774), - [sym_assignment_expression] = STATE(774), - [sym_relational_expression] = STATE(774), - [sym_shift_expression] = STATE(774), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), + [aux_sym_preproc_if_token2] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_signed] = ACTIONS(1074), + [aux_sym_preproc_if_token1] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1074), + [aux_sym_preproc_def_token1] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym___attribute__] = ACTIONS(1074), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2351), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2351), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), }, [755] = { - [sym_parenthesized_expression] = STATE(479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsigned] = ACTIONS(1409), + [anon_sym_restrict] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_volatile] = ACTIONS(1409), + [anon_sym_register] = ACTIONS(1409), + [anon_sym_extern] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1409), + [aux_sym_preproc_if_token2] = ACTIONS(1409), + [sym_preproc_directive] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1409), + [aux_sym_preproc_if_token1] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_struct] = ACTIONS(1409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [anon_sym__Atomic] = ACTIONS(1409), + [anon_sym_auto] = ACTIONS(1409), + [sym_primitive_type] = ACTIONS(1409), + [anon_sym_inline] = ACTIONS(1409), + [anon_sym___attribute__] = ACTIONS(1409), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), }, [756] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_restrict] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [anon_sym_register] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1421), + [aux_sym_preproc_if_token2] = ACTIONS(1421), + [sym_preproc_directive] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1421), + [aux_sym_preproc_if_token1] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), + [aux_sym_preproc_def_token1] = ACTIONS(1421), + [anon_sym__Atomic] = ACTIONS(1421), + [anon_sym_auto] = ACTIONS(1421), + [sym_primitive_type] = ACTIONS(1421), + [anon_sym_inline] = ACTIONS(1421), + [anon_sym___attribute__] = ACTIONS(1421), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2357), }, [757] = { + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1744), + [aux_sym_preproc_if_token2] = ACTIONS(1744), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2359), }, [758] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [759] = { - [sym_function_declarator] = STATE(776), - [sym__declarator] = STATE(776), - [sym_init_declarator] = STATE(777), - [sym_pointer_declarator] = STATE(776), - [sym_array_declarator] = STATE(776), - [sym_identifier] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2363), - }, - [760] = { - [sym_continue_statement] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(482), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(482), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_preproc_include] = STATE(482), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(482), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_preproc_def] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(482), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(482), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(482), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(482), - [sym_preproc_if] = STATE(482), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(482), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(83), + [sym_continue_statement] = STATE(775), + [sym_preproc_function_def] = STATE(775), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(775), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(775), + [sym_for_statement] = STATE(775), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(775), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(775), + [sym_return_statement] = STATE(775), + [sym_preproc_include] = STATE(775), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(775), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(775), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(775), + [sym_while_statement] = STATE(775), + [sym_preproc_def] = STATE(775), + [sym_goto_statement] = STATE(775), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(775), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(775), + [sym_expression_statement] = STATE(775), + [sym_do_statement] = STATE(775), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(775), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(775), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(775), + [sym_preproc_if] = STATE(775), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(775), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(85), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(85), + [sym_identifier] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(99), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(101), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(99), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2365), - [sym_true] = ACTIONS(83), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(2377), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), + }, + [759] = { + [sym_pointer_expression] = STATE(776), + [sym_logical_expression] = STATE(776), + [sym_math_expression] = STATE(776), + [sym_cast_expression] = STATE(776), + [sym_field_expression] = STATE(776), + [sym__expression] = STATE(776), + [sym_bitwise_expression] = STATE(776), + [sym_equality_expression] = STATE(776), + [sym_sizeof_expression] = STATE(776), + [sym_compound_literal_expression] = STATE(776), + [sym_parenthesized_expression] = STATE(776), + [sym_char_literal] = STATE(776), + [sym_concatenated_string] = STATE(776), + [sym_conditional_expression] = STATE(776), + [sym_assignment_expression] = STATE(776), + [sym_relational_expression] = STATE(776), + [sym_shift_expression] = STATE(776), + [sym_subscript_expression] = STATE(776), + [sym_call_expression] = STATE(776), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2379), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(2381), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(2379), + [sym_null] = ACTIONS(2379), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), + }, + [760] = { + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_restrict] = ACTIONS(149), + [sym_identifier] = ACTIONS(149), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_const] = ACTIONS(149), + [anon_sym_LPAREN2] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(2070), + [anon_sym__Atomic] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_static] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [anon_sym_register] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(164), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_auto] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_inline] = ACTIONS(149), + [anon_sym___attribute__] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(151), }, [761] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_CARET] = ACTIONS(366), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_pointer_expression] = STATE(59), + [sym_logical_expression] = STATE(59), + [sym_math_expression] = STATE(59), + [sym_cast_expression] = STATE(59), + [sym_field_expression] = STATE(59), + [sym__expression] = STATE(59), + [sym_bitwise_expression] = STATE(59), + [sym_equality_expression] = STATE(59), + [sym_sizeof_expression] = STATE(59), + [sym_compound_literal_expression] = STATE(59), + [sym_parenthesized_expression] = STATE(59), + [sym_char_literal] = STATE(59), + [sym_concatenated_string] = STATE(59), + [sym_conditional_expression] = STATE(59), + [sym_assignment_expression] = STATE(59), + [sym_relational_expression] = STATE(59), + [sym_shift_expression] = STATE(59), + [sym_subscript_expression] = STATE(59), + [sym_call_expression] = STATE(59), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(179), + [sym_identifier] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(179), + [sym_null] = ACTIONS(179), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [762] = { - [aux_sym_string_literal_repeat1] = STATE(136), - [aux_sym_string_literal_token1] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(2367), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(374), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2385), + [sym_preproc_arg] = ACTIONS(2387), }, [763] = { - [anon_sym_PERCENT] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(239), + [sym_pointer_expression] = STATE(73), + [sym_logical_expression] = STATE(73), + [sym_math_expression] = STATE(73), + [sym_cast_expression] = STATE(73), + [sym_field_expression] = STATE(73), + [sym__expression] = STATE(73), + [sym_bitwise_expression] = STATE(73), + [sym_equality_expression] = STATE(73), + [sym_sizeof_expression] = STATE(73), + [sym_compound_literal_expression] = STATE(73), + [sym_parenthesized_expression] = STATE(73), + [sym_char_literal] = STATE(73), + [sym_concatenated_string] = STATE(73), + [sym_conditional_expression] = STATE(73), + [sym_assignment_expression] = STATE(73), + [sym_relational_expression] = STATE(73), + [sym_shift_expression] = STATE(73), + [sym_subscript_expression] = STATE(73), + [sym_call_expression] = STATE(73), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(221), + [sym_identifier] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(223), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [764] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2369), + [aux_sym_string_literal_repeat1] = STATE(783), + [anon_sym_DQUOTE] = ACTIONS(2389), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(2391), + [aux_sym_string_literal_token1] = ACTIONS(2391), }, [765] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2371), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2393), }, [766] = { - [sym_continue_statement] = STATE(782), - [sym_preproc_function_def] = STATE(782), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(781), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(782), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(782), - [sym_for_statement] = STATE(782), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(782), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(782), - [sym_return_statement] = STATE(782), - [sym_preproc_include] = STATE(782), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(782), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(782), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(782), - [sym_while_statement] = STATE(782), - [sym_preproc_def] = STATE(782), - [sym_goto_statement] = STATE(782), - [sym_preproc_else] = STATE(781), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(782), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(782), - [sym_expression_statement] = STATE(782), - [sym_do_statement] = STATE(782), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(782), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(782), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(782), - [sym_preproc_if] = STATE(782), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(782), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), - [anon_sym_restrict] = ACTIONS(13), + [sym_string_literal] = STATE(485), + [sym_system_lib_string] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2397), + [anon_sym_L] = ACTIONS(2399), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), }, [767] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2375), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_pointer_expression] = STATE(81), + [sym_logical_expression] = STATE(81), + [sym_math_expression] = STATE(81), + [sym_cast_expression] = STATE(81), + [sym_field_expression] = STATE(81), + [sym__expression] = STATE(81), + [sym_bitwise_expression] = STATE(81), + [sym_equality_expression] = STATE(81), + [sym_sizeof_expression] = STATE(81), + [sym_compound_literal_expression] = STATE(81), + [sym_parenthesized_expression] = STATE(81), + [sym_char_literal] = STATE(81), + [sym_concatenated_string] = STATE(81), + [sym_conditional_expression] = STATE(81), + [sym_assignment_expression] = STATE(81), + [sym_relational_expression] = STATE(81), + [sym_shift_expression] = STATE(81), + [sym_subscript_expression] = STATE(81), + [sym_call_expression] = STATE(81), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(241), + [sym_identifier] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(197), + [sym_number_literal] = ACTIONS(243), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(195), + [sym_true] = ACTIONS(241), + [sym_null] = ACTIONS(241), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_sizeof] = ACTIONS(203), }, [768] = { + [sym_parenthesized_expression] = STATE(486), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(251), }, [769] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2377), - }, - [770] = { - [sym_continue_statement] = STATE(785), - [sym_preproc_function_def] = STATE(785), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(784), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(785), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(785), - [sym_for_statement] = STATE(785), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(785), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(785), - [sym_return_statement] = STATE(785), - [sym_preproc_include] = STATE(785), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(785), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(785), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(785), - [sym_while_statement] = STATE(785), - [sym_preproc_def] = STATE(785), - [sym_goto_statement] = STATE(785), - [sym_preproc_else] = STATE(784), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(785), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(785), - [sym_expression_statement] = STATE(785), - [sym_do_statement] = STATE(785), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(785), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(785), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(785), - [sym_preproc_if] = STATE(785), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(785), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(788), + [sym_math_expression] = STATE(788), + [sym_cast_expression] = STATE(788), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(788), + [sym_bitwise_expression] = STATE(788), + [sym_equality_expression] = STATE(788), + [sym_sizeof_expression] = STATE(788), + [sym_compound_literal_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(788), + [sym_concatenated_string] = STATE(788), + [sym_conditional_expression] = STATE(788), + [sym_assignment_expression] = STATE(788), + [sym_relational_expression] = STATE(788), + [sym_shift_expression] = STATE(788), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2401), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2401), + [sym_null] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [770] = { + [sym_parenthesized_expression] = STATE(488), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(251), }, [771] = { - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_function_definition] = STATE(502), - [sym_declaration_list] = STATE(502), - [sym_declaration] = STATE(502), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(787), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2407), }, [772] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(63), - [sym_math_expression] = STATE(63), - [sym_cast_expression] = STATE(63), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(63), - [sym_comma_expression] = STATE(64), - [sym_bitwise_expression] = STATE(63), - [sym_equality_expression] = STATE(63), - [sym_sizeof_expression] = STATE(63), - [sym_compound_literal_expression] = STATE(63), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(63), - [sym_concatenated_string] = STATE(63), - [sym_conditional_expression] = STATE(63), - [sym_assignment_expression] = STATE(63), - [sym_relational_expression] = STATE(63), - [sym_shift_expression] = STATE(63), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(193), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(187), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2409), }, [773] = { - [sym_switch_body] = STATE(504), - [anon_sym_LBRACE] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [774] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_function_declarator] = STATE(791), + [sym__declarator] = STATE(791), + [sym_init_declarator] = STATE(792), + [sym_pointer_declarator] = STATE(791), + [sym_array_declarator] = STATE(791), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), }, [775] = { - [sym_preproc_params] = STATE(790), - [sym_preproc_arg] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(549), - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2389), + [sym_continue_statement] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(491), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(491), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_preproc_include] = STATE(491), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(491), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_preproc_def] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(491), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(491), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(491), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(491), + [sym_preproc_if] = STATE(491), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(491), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(85), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(99), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(2415), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [776] = { - [sym_compound_statement] = STATE(520), - [aux_sym_declaration_repeat1] = STATE(792), - [sym_parameter_list] = STATE(218), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(789), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2391), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(378), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_CARET] = ACTIONS(378), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_QMARK] = ACTIONS(380), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(380), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_RPAREN] = ACTIONS(380), + [anon_sym_RBRACK] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(378), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(378), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_COLON] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(340), }, [777] = { - [aux_sym_declaration_repeat1] = STATE(792), - [anon_sym_COMMA] = ACTIONS(789), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2417), }, [778] = { - [sym_pointer_field_declarator] = STATE(796), - [sym_array_field_declarator] = STATE(796), - [sym_bitfield_clause] = STATE(795), - [sym_function_field_declarator] = STATE(796), - [sym__field_declarator] = STATE(796), - [sym_identifier] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LPAREN2] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(2393), + [anon_sym_LF] = ACTIONS(2419), + [sym_comment] = ACTIONS(183), }, [779] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2395), - }, - [780] = { - [sym_parenthesized_expression] = STATE(524), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2397), - }, - [781] = { - [aux_sym_preproc_if_token2] = ACTIONS(2399), - [sym_comment] = ACTIONS(3), - }, - [782] = { - [sym_continue_statement] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(797), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(575), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(575), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_preproc_include] = STATE(575), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(575), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(575), - [sym_while_statement] = STATE(575), - [sym_preproc_def] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_preproc_else] = STATE(797), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(575), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(575), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(575), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(575), - [sym_preproc_if] = STATE(575), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(575), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [sym_continue_statement] = STATE(797), + [sym_preproc_function_def] = STATE(797), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(796), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(797), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(797), + [sym_for_statement] = STATE(797), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(797), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(797), + [sym_return_statement] = STATE(797), + [sym_preproc_include] = STATE(797), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(797), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(797), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(797), + [sym_while_statement] = STATE(797), + [sym_preproc_def] = STATE(797), + [sym_goto_statement] = STATE(797), + [sym_preproc_else] = STATE(796), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(797), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(797), + [sym_expression_statement] = STATE(797), + [sym_do_statement] = STATE(797), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(797), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(797), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(797), + [sym_preproc_if] = STATE(797), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(797), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2401), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2421), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, - [783] = { - [aux_sym_type_definition_repeat2] = STATE(799), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(937), + [780] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [781] = { + [anon_sym_RPAREN] = ACTIONS(2423), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2403), }, - [784] = { - [aux_sym_preproc_if_token2] = ACTIONS(2405), + [782] = { + [anon_sym_RPAREN] = ACTIONS(2425), [sym_comment] = ACTIONS(3), }, - [785] = { - [sym_continue_statement] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(801), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(575), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(575), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_preproc_include] = STATE(575), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(575), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(575), - [sym_while_statement] = STATE(575), - [sym_preproc_def] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_preproc_else] = STATE(801), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(575), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(575), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(575), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(575), - [sym_preproc_if] = STATE(575), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(575), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [783] = { + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(495), + }, + [784] = { + [sym_continue_statement] = STATE(800), + [sym_preproc_function_def] = STATE(800), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(799), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(800), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(800), + [sym_for_statement] = STATE(800), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(800), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(800), + [sym_return_statement] = STATE(800), + [sym_preproc_include] = STATE(800), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(800), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(800), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(800), + [sym_while_statement] = STATE(800), + [sym_preproc_def] = STATE(800), + [sym_goto_statement] = STATE(800), + [sym_preproc_else] = STATE(799), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(800), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(800), + [sym_expression_statement] = STATE(800), + [sym_do_statement] = STATE(800), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(800), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(800), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(800), + [sym_preproc_if] = STATE(800), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(800), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2407), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2429), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, - [786] = { - [sym_continue_statement] = STATE(802), - [sym_preproc_function_def] = STATE(802), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(802), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(802), - [sym_for_statement] = STATE(802), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(802), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(802), - [sym_return_statement] = STATE(802), - [sym_preproc_include] = STATE(802), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(802), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(802), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(802), - [sym_while_statement] = STATE(802), - [sym_preproc_def] = STATE(802), - [sym_goto_statement] = STATE(802), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(802), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(802), - [sym_expression_statement] = STATE(802), - [sym_do_statement] = STATE(802), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(802), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(802), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(802), - [sym_preproc_if] = STATE(802), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(802), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(97), + [785] = { + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_function_definition] = STATE(513), + [sym_declaration_list] = STATE(513), + [sym_declaration] = STATE(513), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym__declaration_specifiers] = STATE(802), + [anon_sym_LBRACE] = ACTIONS(2431), [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(17), - [sym_null] = ACTIONS(83), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(19), [sym_comment] = ACTIONS(3), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + }, + [786] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(65), + [sym_comma_expression] = STATE(66), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(65), + [sym_concatenated_string] = STATE(65), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(207), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(93), - [sym_number_literal] = ACTIONS(91), - [anon_sym_if] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(215), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(207), + [sym_null] = ACTIONS(207), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [787] = { - [sym_function_declarator] = STATE(776), - [sym__declarator] = STATE(776), - [sym_init_declarator] = STATE(777), - [sym_pointer_declarator] = STATE(776), - [sym_array_declarator] = STATE(776), - [sym_identifier] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), + [sym_switch_body] = STATE(515), + [anon_sym_LBRACE] = ACTIONS(2433), [sym_comment] = ACTIONS(3), }, [788] = { - [sym_while_statement] = STATE(803), - [sym_continue_statement] = STATE(803), - [sym_goto_statement] = STATE(803), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(803), - [sym_expression_statement] = STATE(803), - [sym_if_statement] = STATE(803), - [sym_do_statement] = STATE(803), - [sym_for_statement] = STATE(803), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(803), - [sym_return_statement] = STATE(803), - [sym_break_statement] = STATE(803), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(803), - [sym_labeled_statement] = STATE(803), - [sym_case_statement] = STATE(803), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_case] = ACTIONS(979), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_default] = ACTIONS(989), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [789] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2413), + [sym_preproc_params] = STATE(805), + [sym_preproc_arg] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(563), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2439), }, [790] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2415), - [sym_preproc_arg] = ACTIONS(2417), + [aux_sym_string_literal_repeat1] = STATE(806), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(2441), + [aux_sym_string_literal_token1] = ACTIONS(2441), }, [791] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_COLON] = ACTIONS(2419), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_compound_statement] = STATE(529), + [aux_sym_declaration_repeat1] = STATE(808), + [sym_parameter_list] = STATE(224), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_LPAREN2] = ACTIONS(810), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(2443), }, [792] = { - [aux_sym_declaration_repeat1] = STATE(302), - [anon_sym_COMMA] = ACTIONS(789), + [aux_sym_declaration_repeat1] = STATE(808), + [anon_sym_COMMA] = ACTIONS(812), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2443), }, [793] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(805), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(805), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(805), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(806), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(806), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(805), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(805), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(805), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(805), - [sym_field_declaration] = STATE(805), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), + [sym_pointer_field_declarator] = STATE(812), + [sym_array_field_declarator] = STATE(812), + [sym_bitfield_clause] = STATE(811), + [sym_function_field_declarator] = STATE(812), + [sym__field_declarator] = STATE(812), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_LPAREN2] = ACTIONS(832), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(2423), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_identifier] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(2445), }, [794] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(807), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(807), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(807), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(808), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(808), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(807), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(807), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(807), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(807), - [sym_field_declaration] = STATE(807), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(2447), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(2425), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), }, [795] = { + [sym_parenthesized_expression] = STATE(533), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_LPAREN2] = ACTIONS(2449), }, [796] = { - [aux_sym_field_declaration_repeat1] = STATE(809), - [sym_bitfield_clause] = STATE(810), - [sym_parameter_list] = STATE(321), - [anon_sym_LBRACK] = ACTIONS(1227), + [aux_sym_preproc_if_token2] = ACTIONS(2451), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(2427), }, [797] = { - [aux_sym_preproc_if_token2] = ACTIONS(2429), + [sym_continue_statement] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(813), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(586), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(586), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(586), + [sym_return_statement] = STATE(586), + [sym_preproc_include] = STATE(586), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(586), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_goto_statement] = STATE(586), + [sym_preproc_else] = STATE(813), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(586), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_do_statement] = STATE(586), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(586), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(586), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(586), + [sym_preproc_if] = STATE(586), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(586), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [798] = { - [aux_sym_type_definition_repeat2] = STATE(811), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(937), + [aux_sym_type_definition_repeat2] = STATE(815), + [sym_parameter_list] = STATE(268), + [anon_sym_LBRACK] = ACTIONS(963), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(2455), }, [799] = { - [aux_sym_type_definition_repeat2] = STATE(355), - [anon_sym_COMMA] = ACTIONS(937), + [aux_sym_preproc_if_token2] = ACTIONS(2457), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2431), }, [800] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(812), - [sym_math_expression] = STATE(812), - [sym_cast_expression] = STATE(812), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(812), - [sym_bitwise_expression] = STATE(812), - [sym_equality_expression] = STATE(812), - [sym_sizeof_expression] = STATE(812), - [sym_compound_literal_expression] = STATE(812), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(812), - [sym_concatenated_string] = STATE(812), - [sym_conditional_expression] = STATE(812), - [sym_assignment_expression] = STATE(812), - [sym_relational_expression] = STATE(812), - [sym_shift_expression] = STATE(812), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2433), + [sym_continue_statement] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(817), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(586), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(586), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(586), + [sym_return_statement] = STATE(586), + [sym_preproc_include] = STATE(586), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(586), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_goto_statement] = STATE(586), + [sym_preproc_else] = STATE(817), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(586), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_do_statement] = STATE(586), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(586), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(586), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(586), + [sym_preproc_if] = STATE(586), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(586), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2459), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2433), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [801] = { - [aux_sym_preproc_if_token2] = ACTIONS(2439), - [sym_comment] = ACTIONS(3), - }, - [802] = { - [sym_continue_statement] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(482), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(482), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_preproc_include] = STATE(482), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(482), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_preproc_def] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(482), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(482), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(482), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(482), - [sym_preproc_if] = STATE(482), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(482), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(97), + [sym_continue_statement] = STATE(818), + [sym_preproc_function_def] = STATE(818), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(818), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(818), + [sym_for_statement] = STATE(818), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(818), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(818), + [sym_return_statement] = STATE(818), + [sym_preproc_include] = STATE(818), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(818), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(818), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(818), + [sym_while_statement] = STATE(818), + [sym_preproc_def] = STATE(818), + [sym_goto_statement] = STATE(818), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(818), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(818), + [sym_expression_statement] = STATE(818), + [sym_do_statement] = STATE(818), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(818), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(818), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(818), + [sym_preproc_if] = STATE(818), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(818), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(101), [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(17), - [sym_null] = ACTIONS(83), + [anon_sym_inline] = ACTIONS(19), + [sym_false] = ACTIONS(85), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(87), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), + [aux_sym_preproc_if_token1] = ACTIONS(107), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(2461), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(93), - [sym_number_literal] = ACTIONS(91), - [anon_sym_if] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(117), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(97), + [sym_number_literal] = ACTIONS(95), + [anon_sym_if] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(85), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_L] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(83), + }, + [802] = { + [sym_function_declarator] = STATE(791), + [sym__declarator] = STATE(791), + [sym_init_declarator] = STATE(792), + [sym_pointer_declarator] = STATE(791), + [sym_array_declarator] = STATE(791), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2411), }, [803] = { - [sym_while_statement] = STATE(366), - [sym_continue_statement] = STATE(366), - [sym_goto_statement] = STATE(366), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(366), - [sym_expression_statement] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_do_statement] = STATE(366), - [sym_for_statement] = STATE(366), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(366), - [sym_return_statement] = STATE(366), - [sym_break_statement] = STATE(366), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(366), - [sym_labeled_statement] = STATE(366), - [sym_case_statement] = STATE(366), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_case] = ACTIONS(979), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), + [sym_while_statement] = STATE(819), + [sym_continue_statement] = STATE(819), + [sym_goto_statement] = STATE(819), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(819), + [sym_expression_statement] = STATE(819), + [sym_if_statement] = STATE(819), + [sym_do_statement] = STATE(819), + [sym_for_statement] = STATE(819), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(819), + [sym_return_statement] = STATE(819), + [sym_break_statement] = STATE(819), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(819), + [sym_labeled_statement] = STATE(819), + [sym_case_statement] = STATE(819), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_default] = ACTIONS(989), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [804] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2445), + [anon_sym_LF] = ACTIONS(2465), + [sym_comment] = ACTIONS(183), }, [805] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(521), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(521), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(814), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(814), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(521), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(521), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(521), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), - [sym_field_declaration] = STATE(521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(2447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2467), + [sym_preproc_arg] = ACTIONS(2469), }, [806] = { - [aux_sym_preproc_if_token2] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(2471), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(495), }, [807] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(521), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(521), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(815), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(815), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(521), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(521), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(521), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), - [sym_field_declaration] = STATE(521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_COLON] = ACTIONS(2473), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [808] = { - [aux_sym_preproc_if_token2] = ACTIONS(2453), + [aux_sym_declaration_repeat1] = STATE(310), + [anon_sym_COMMA] = ACTIONS(812), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2475), }, [809] = { - [aux_sym_field_declaration_repeat1] = STATE(398), - [sym_bitfield_clause] = STATE(816), + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(821), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(821), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(821), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(822), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(822), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(821), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(821), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(821), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(821), + [sym_field_declaration] = STATE(821), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [aux_sym_preproc_if_token2] = ACTIONS(2477), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(2455), }, [810] = { + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(823), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(823), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(823), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(824), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(824), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(823), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(823), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(823), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(823), + [sym_field_declaration] = STATE(823), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [aux_sym_preproc_if_token2] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2455), }, [811] = { - [aux_sym_type_definition_repeat2] = STATE(355), - [anon_sym_COMMA] = ACTIONS(937), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2481), }, [812] = { - [aux_sym_for_statement_repeat1] = STATE(817), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_field_declaration_repeat1] = STATE(825), + [sym_bitfield_clause] = STATE(826), + [sym_parameter_list] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(1257), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(2481), }, [813] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(818), - [sym_math_expression] = STATE(818), - [sym_cast_expression] = STATE(818), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(818), - [sym_bitwise_expression] = STATE(818), - [sym_equality_expression] = STATE(818), - [sym_sizeof_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(818), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(818), - [sym_concatenated_string] = STATE(818), - [sym_conditional_expression] = STATE(818), - [sym_assignment_expression] = STATE(818), - [sym_relational_expression] = STATE(818), - [sym_shift_expression] = STATE(818), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2461), + [aux_sym_preproc_if_token2] = ACTIONS(2483), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2461), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), }, [814] = { - [aux_sym_preproc_if_token2] = ACTIONS(2465), + [aux_sym_type_definition_repeat2] = STATE(827), + [sym_parameter_list] = STATE(268), + [anon_sym_LBRACK] = ACTIONS(963), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(2485), }, [815] = { - [aux_sym_preproc_if_token2] = ACTIONS(2467), + [aux_sym_type_definition_repeat2] = STATE(363), + [anon_sym_COMMA] = ACTIONS(959), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2485), }, [816] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2469), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(828), + [sym_math_expression] = STATE(828), + [sym_cast_expression] = STATE(828), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(828), + [sym_bitwise_expression] = STATE(828), + [sym_equality_expression] = STATE(828), + [sym_sizeof_expression] = STATE(828), + [sym_compound_literal_expression] = STATE(828), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(828), + [sym_concatenated_string] = STATE(828), + [sym_conditional_expression] = STATE(828), + [sym_assignment_expression] = STATE(828), + [sym_relational_expression] = STATE(828), + [sym_shift_expression] = STATE(828), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2487), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [anon_sym_RPAREN] = ACTIONS(2491), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [817] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2471), - [anon_sym_COMMA] = ACTIONS(1108), + [aux_sym_preproc_if_token2] = ACTIONS(2493), [sym_comment] = ACTIONS(3), }, [818] = { - [aux_sym_for_statement_repeat1] = STATE(820), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2471), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_continue_statement] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(491), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(491), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_preproc_include] = STATE(491), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(491), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_preproc_def] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(491), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(491), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(491), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(491), + [sym_preproc_if] = STATE(491), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(491), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(19), + [sym_false] = ACTIONS(85), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(87), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(97), + [sym_number_literal] = ACTIONS(95), + [anon_sym_if] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(85), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_L] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(83), }, [819] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(821), - [sym_math_expression] = STATE(821), - [sym_cast_expression] = STATE(821), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(821), - [sym_bitwise_expression] = STATE(821), - [sym_equality_expression] = STATE(821), - [sym_sizeof_expression] = STATE(821), - [sym_compound_literal_expression] = STATE(821), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(821), - [sym_concatenated_string] = STATE(821), - [sym_conditional_expression] = STATE(821), - [sym_assignment_expression] = STATE(821), - [sym_relational_expression] = STATE(821), - [sym_shift_expression] = STATE(821), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2473), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(374), + [sym_continue_statement] = STATE(374), + [sym_goto_statement] = STATE(374), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(374), + [sym_expression_statement] = STATE(374), + [sym_if_statement] = STATE(374), + [sym_do_statement] = STATE(374), + [sym_for_statement] = STATE(374), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(374), + [sym_return_statement] = STATE(374), + [sym_break_statement] = STATE(374), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(374), + [sym_labeled_statement] = STATE(374), + [sym_case_statement] = STATE(374), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_default] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2473), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2471), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [820] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(2499), + [sym_comment] = ACTIONS(183), + }, + [821] = { + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(530), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(530), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(530), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(830), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(830), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(530), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(530), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(530), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(530), + [sym_field_declaration] = STATE(530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [aux_sym_preproc_if_token2] = ACTIONS(2501), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), [sym_comment] = ACTIONS(3), }, - [821] = { - [aux_sym_for_statement_repeat1] = STATE(822), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, [822] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(1108), + [aux_sym_preproc_if_token2] = ACTIONS(2503), [sym_comment] = ACTIONS(3), }, [823] = { - [sym_continue_statement] = STATE(836), - [sym_preproc_function_def] = STATE(836), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(836), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(836), - [sym_for_statement] = STATE(836), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(836), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(836), - [sym_return_statement] = STATE(836), - [sym_preproc_include] = STATE(836), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(836), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(836), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(836), - [sym_while_statement] = STATE(836), - [sym_preproc_def] = STATE(836), - [sym_goto_statement] = STATE(836), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(836), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(836), - [sym_expression_statement] = STATE(836), - [sym_do_statement] = STATE(836), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(836), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(836), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(836), - [sym_preproc_if] = STATE(836), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(836), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(83), + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(530), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(530), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(530), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(831), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(831), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(530), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(530), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(530), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(530), + [sym_field_declaration] = STATE(530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(85), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), + [aux_sym_preproc_if_token2] = ACTIONS(2505), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2481), - [sym_true] = ACTIONS(83), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [sym_comment] = ACTIONS(3), }, [824] = { - [aux_sym_string_literal_repeat1] = STATE(837), - [aux_sym_string_literal_token1] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(2483), + [aux_sym_preproc_if_token2] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), }, [825] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2487), - [sym_preproc_arg] = ACTIONS(2489), + [aux_sym_field_declaration_repeat1] = STATE(406), + [sym_bitfield_clause] = STATE(832), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(2509), }, [826] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2509), }, [827] = { - [sym_string_literal] = STATE(568), - [sym_system_lib_string] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2495), + [aux_sym_type_definition_repeat2] = STATE(363), + [anon_sym_COMMA] = ACTIONS(959), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2511), }, [828] = { - [sym_parenthesized_expression] = STATE(569), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), + [aux_sym_for_statement_repeat1] = STATE(833), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [829] = { - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_restrict] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_const] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_COLON] = ACTIONS(2497), - [anon_sym__Atomic] = ACTIONS(237), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_static] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [sym_identifier] = ACTIONS(237), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_inline] = ACTIONS(237), - [anon_sym___attribute__] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(239), - }, - [830] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(847), - [sym_math_expression] = STATE(847), - [sym_cast_expression] = STATE(847), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(847), - [sym_bitwise_expression] = STATE(847), - [sym_equality_expression] = STATE(847), - [sym_sizeof_expression] = STATE(847), - [sym_compound_literal_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(847), - [sym_concatenated_string] = STATE(847), - [sym_conditional_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_relational_expression] = STATE(847), - [sym_shift_expression] = STATE(847), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(834), + [sym_math_expression] = STATE(834), + [sym_cast_expression] = STATE(834), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(834), + [sym_bitwise_expression] = STATE(834), + [sym_equality_expression] = STATE(834), + [sym_sizeof_expression] = STATE(834), + [sym_compound_literal_expression] = STATE(834), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(834), + [sym_concatenated_string] = STATE(834), + [sym_conditional_expression] = STATE(834), + [sym_assignment_expression] = STATE(834), + [sym_relational_expression] = STATE(834), + [sym_shift_expression] = STATE(834), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2515), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2499), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2499), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2515), + [sym_null] = ACTIONS(2515), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [830] = { + [aux_sym_preproc_if_token2] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), }, [831] = { - [sym_parenthesized_expression] = STATE(572), + [aux_sym_preproc_if_token2] = ACTIONS(2521), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), }, [832] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2523), }, [833] = { + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2525), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_COMMA] = ACTIONS(1138), }, [834] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_for_statement_repeat1] = STATE(836), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [835] = { - [sym_function_declarator] = STATE(849), - [sym__declarator] = STATE(849), - [sym_init_declarator] = STATE(850), - [sym_pointer_declarator] = STATE(849), - [sym_array_declarator] = STATE(849), - [sym_identifier] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2511), - }, - [836] = { - [sym_continue_statement] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(482), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(482), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_preproc_include] = STATE(482), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(482), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_preproc_def] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(482), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(482), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(482), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(482), - [sym_preproc_if] = STATE(482), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(482), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(99), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(837), + [sym_math_expression] = STATE(837), + [sym_cast_expression] = STATE(837), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(837), + [sym_bitwise_expression] = STATE(837), + [sym_equality_expression] = STATE(837), + [sym_sizeof_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(837), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(837), + [sym_concatenated_string] = STATE(837), + [sym_conditional_expression] = STATE(837), + [sym_assignment_expression] = STATE(837), + [sym_relational_expression] = STATE(837), + [sym_shift_expression] = STATE(837), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2527), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2513), - [sym_true] = ACTIONS(83), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [836] = { + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2531), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), }, [837] = { - [aux_sym_string_literal_repeat1] = STATE(136), - [aux_sym_string_literal_token1] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(2515), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(374), + [aux_sym_for_statement_repeat1] = STATE(838), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2531), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [838] = { - [anon_sym_PERCENT] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(2517), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(239), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2533), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), }, [839] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(2535), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(151), }, [840] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2521), - }, - [841] = { - [sym_continue_statement] = STATE(854), - [sym_preproc_function_def] = STATE(854), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(853), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(854), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(854), - [sym_for_statement] = STATE(854), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(854), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(854), - [sym_return_statement] = STATE(854), - [sym_preproc_include] = STATE(854), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(854), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(854), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(854), - [sym_while_statement] = STATE(854), - [sym_preproc_def] = STATE(854), - [sym_goto_statement] = STATE(854), - [sym_preproc_else] = STATE(853), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(854), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(854), - [sym_expression_statement] = STATE(854), - [sym_do_statement] = STATE(854), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(854), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(854), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(854), - [sym_preproc_if] = STATE(854), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(854), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [sym_continue_statement] = STATE(853), + [sym_preproc_function_def] = STATE(853), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(853), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(853), + [sym_for_statement] = STATE(853), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(853), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(853), + [sym_return_statement] = STATE(853), + [sym_preproc_include] = STATE(853), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(853), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(853), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(853), + [sym_while_statement] = STATE(853), + [sym_preproc_def] = STATE(853), + [sym_goto_statement] = STATE(853), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(853), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(853), + [sym_expression_statement] = STATE(853), + [sym_do_statement] = STATE(853), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(853), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(853), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(853), + [sym_preproc_if] = STATE(853), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(853), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(85), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2523), + [sym_identifier] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(99), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(101), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(2537), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), + }, + [841] = { + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_restrict] = ACTIONS(149), + [sym_identifier] = ACTIONS(149), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_const] = ACTIONS(149), + [anon_sym_LPAREN2] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(2308), + [anon_sym__Atomic] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_static] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [anon_sym_register] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(164), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_auto] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_inline] = ACTIONS(149), + [anon_sym___attribute__] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(151), }, [842] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2525), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2539), + [sym_preproc_arg] = ACTIONS(2541), }, [843] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2525), + [aux_sym_string_literal_repeat1] = STATE(859), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2545), }, [844] = { - [sym_continue_statement] = STATE(857), - [sym_preproc_function_def] = STATE(857), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(856), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(857), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(857), - [sym_for_statement] = STATE(857), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(857), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(857), - [sym_return_statement] = STATE(857), - [sym_preproc_include] = STATE(857), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(857), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(857), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(857), - [sym_while_statement] = STATE(857), - [sym_preproc_def] = STATE(857), - [sym_goto_statement] = STATE(857), - [sym_preproc_else] = STATE(856), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(857), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(857), - [sym_expression_statement] = STATE(857), - [sym_do_statement] = STATE(857), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(857), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(857), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(857), - [sym_preproc_if] = STATE(857), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(857), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), - [anon_sym_restrict] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2527), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(2547), }, [845] = { - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_function_definition] = STATE(584), - [sym_declaration_list] = STATE(584), - [sym_declaration] = STATE(584), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(859), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_string_literal] = STATE(580), + [sym_system_lib_string] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_L] = ACTIONS(2553), + [sym_comment] = ACTIONS(3), }, [846] = { - [sym_switch_body] = STATE(586), - [anon_sym_LBRACE] = ACTIONS(2531), + [sym_parenthesized_expression] = STATE(581), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(251), }, [847] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(863), + [sym_math_expression] = STATE(863), + [sym_cast_expression] = STATE(863), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(863), + [sym_bitwise_expression] = STATE(863), + [sym_equality_expression] = STATE(863), + [sym_sizeof_expression] = STATE(863), + [sym_compound_literal_expression] = STATE(863), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(863), + [sym_concatenated_string] = STATE(863), + [sym_conditional_expression] = STATE(863), + [sym_assignment_expression] = STATE(863), + [sym_relational_expression] = STATE(863), + [sym_shift_expression] = STATE(863), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2555), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [848] = { - [sym_preproc_params] = STATE(862), - [sym_preproc_arg] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(549), - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2537), + [sym_parenthesized_expression] = STATE(583), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(251), }, [849] = { - [sym_compound_statement] = STATE(592), - [aux_sym_declaration_repeat1] = STATE(863), - [sym_parameter_list] = STATE(218), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(789), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2561), }, [850] = { - [aux_sym_declaration_repeat1] = STATE(863), - [anon_sym_COMMA] = ACTIONS(789), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2563), }, [851] = { - [sym_pointer_field_declarator] = STATE(867), - [sym_array_field_declarator] = STATE(867), - [sym_bitfield_clause] = STATE(866), - [sym_function_field_declarator] = STATE(867), - [sym__field_declarator] = STATE(867), - [sym_identifier] = ACTIONS(807), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LPAREN2] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(2541), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [852] = { - [sym_parenthesized_expression] = STATE(231), + [sym_function_declarator] = STATE(866), + [sym__declarator] = STATE(866), + [sym_init_declarator] = STATE(867), + [sym_pointer_declarator] = STATE(866), + [sym_array_declarator] = STATE(866), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(227), + [sym_identifier] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2567), }, [853] = { - [aux_sym_preproc_if_token2] = ACTIONS(2543), - [sym_comment] = ACTIONS(3), - }, - [854] = { - [sym_continue_statement] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(868), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(575), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(575), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_preproc_include] = STATE(575), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(575), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(575), - [sym_while_statement] = STATE(575), - [sym_preproc_def] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_preproc_else] = STATE(868), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(575), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(575), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(575), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(575), - [sym_preproc_if] = STATE(575), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(575), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [sym_continue_statement] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(491), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(491), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_preproc_include] = STATE(491), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(491), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_preproc_def] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(491), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(491), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(491), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(491), + [sym_preproc_if] = STATE(491), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(491), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(85), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2545), + [sym_identifier] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(99), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(101), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(2569), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, - [855] = { - [aux_sym_type_definition_repeat2] = STATE(870), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(937), + [854] = { [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2571), }, - [856] = { - [aux_sym_preproc_if_token2] = ACTIONS(2549), - [sym_comment] = ACTIONS(3), + [855] = { + [anon_sym_LF] = ACTIONS(2573), + [sym_comment] = ACTIONS(183), }, - [857] = { - [sym_continue_statement] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(872), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(575), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(575), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_preproc_include] = STATE(575), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(575), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(575), - [sym_while_statement] = STATE(575), - [sym_preproc_def] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_preproc_else] = STATE(872), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(575), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(575), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(575), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(575), - [sym_preproc_if] = STATE(575), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(575), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [856] = { + [sym_continue_statement] = STATE(871), + [sym_preproc_function_def] = STATE(871), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(870), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(871), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(871), + [sym_for_statement] = STATE(871), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(871), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(871), + [sym_return_statement] = STATE(871), + [sym_preproc_include] = STATE(871), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(871), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(871), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(871), + [sym_while_statement] = STATE(871), + [sym_preproc_def] = STATE(871), + [sym_goto_statement] = STATE(871), + [sym_preproc_else] = STATE(870), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(871), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(871), + [sym_expression_statement] = STATE(871), + [sym_do_statement] = STATE(871), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(871), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(871), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(871), + [sym_preproc_if] = STATE(871), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(871), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2551), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [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_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), + }, + [857] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2577), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [858] = { - [sym_continue_statement] = STATE(873), - [sym_preproc_function_def] = STATE(873), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(873), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(873), - [sym_for_statement] = STATE(873), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(873), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(873), - [sym_return_statement] = STATE(873), - [sym_preproc_include] = STATE(873), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(873), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(873), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(873), - [sym_while_statement] = STATE(873), - [sym_preproc_def] = STATE(873), - [sym_goto_statement] = STATE(873), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(873), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(873), - [sym_expression_statement] = STATE(873), - [sym_do_statement] = STATE(873), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(873), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(873), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(873), - [sym_preproc_if] = STATE(873), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(873), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(17), - [sym_null] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(2577), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2553), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(93), - [sym_number_literal] = ACTIONS(91), - [anon_sym_if] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_sizeof] = ACTIONS(81), }, [859] = { - [sym_function_declarator] = STATE(849), - [sym__declarator] = STATE(849), - [sym_init_declarator] = STATE(850), - [sym_pointer_declarator] = STATE(849), - [sym_array_declarator] = STATE(849), - [sym_identifier] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(495), }, [860] = { - [sym_while_statement] = STATE(874), [sym_continue_statement] = STATE(874), - [sym_goto_statement] = STATE(874), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(874), - [sym_expression_statement] = STATE(874), + [sym_preproc_function_def] = STATE(874), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(873), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(874), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), [sym_if_statement] = STATE(874), - [sym_do_statement] = STATE(874), [sym_for_statement] = STATE(874), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(874), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), [sym_switch_statement] = STATE(874), [sym_return_statement] = STATE(874), - [sym_break_statement] = STATE(874), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(874), + [sym_preproc_include] = STATE(874), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(874), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(874), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), [sym_labeled_statement] = STATE(874), - [sym_case_statement] = STATE(874), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_case] = ACTIONS(979), - [sym_null] = ACTIONS(981), + [sym_while_statement] = STATE(874), + [sym_preproc_def] = STATE(874), + [sym_goto_statement] = STATE(874), + [sym_preproc_else] = STATE(873), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(874), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(874), + [sym_expression_statement] = STATE(874), + [sym_do_statement] = STATE(874), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(874), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(874), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(874), + [sym_preproc_if] = STATE(874), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(874), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(989), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [861] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2557), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_function_definition] = STATE(596), + [sym_declaration_list] = STATE(596), + [sym_declaration] = STATE(596), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym__declaration_specifiers] = STATE(876), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(19), + [sym_comment] = ACTIONS(3), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), }, [862] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2559), - [sym_preproc_arg] = ACTIONS(2561), + [sym_switch_body] = STATE(598), + [anon_sym_LBRACE] = ACTIONS(2585), + [sym_comment] = ACTIONS(3), }, [863] = { - [aux_sym_declaration_repeat1] = STATE(302), - [anon_sym_COMMA] = ACTIONS(789), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2563), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [864] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(876), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(876), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(876), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(877), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(877), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(876), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(876), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(876), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(876), - [sym_field_declaration] = STATE(876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(2565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_preproc_params] = STATE(879), + [sym_preproc_arg] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(563), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2591), }, [865] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(878), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(878), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(878), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(879), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(879), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(878), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(878), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(878), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(878), - [sym_field_declaration] = STATE(878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(2567), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [aux_sym_string_literal_repeat1] = STATE(880), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(2593), + [aux_sym_string_literal_token1] = ACTIONS(2593), }, [866] = { + [sym_compound_statement] = STATE(603), + [aux_sym_declaration_repeat1] = STATE(881), + [sym_parameter_list] = STATE(224), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(2595), }, [867] = { - [aux_sym_field_declaration_repeat1] = STATE(880), - [sym_bitfield_clause] = STATE(881), - [sym_parameter_list] = STATE(321), - [anon_sym_LBRACK] = ACTIONS(1227), + [aux_sym_declaration_repeat1] = STATE(881), + [anon_sym_COMMA] = ACTIONS(812), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2595), }, [868] = { - [aux_sym_preproc_if_token2] = ACTIONS(2571), + [sym_pointer_field_declarator] = STATE(885), + [sym_array_field_declarator] = STATE(885), + [sym_bitfield_clause] = STATE(884), + [sym_function_field_declarator] = STATE(885), + [sym__field_declarator] = STATE(885), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_LPAREN2] = ACTIONS(832), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(2597), }, [869] = { - [aux_sym_type_definition_repeat2] = STATE(882), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(937), + [sym_parenthesized_expression] = STATE(238), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(255), }, [870] = { - [aux_sym_type_definition_repeat2] = STATE(355), - [anon_sym_COMMA] = ACTIONS(937), + [aux_sym_preproc_if_token2] = ACTIONS(2599), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2573), }, [871] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(883), - [sym_math_expression] = STATE(883), - [sym_cast_expression] = STATE(883), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(883), - [sym_bitwise_expression] = STATE(883), - [sym_equality_expression] = STATE(883), - [sym_sizeof_expression] = STATE(883), - [sym_compound_literal_expression] = STATE(883), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(883), - [sym_concatenated_string] = STATE(883), - [sym_conditional_expression] = STATE(883), - [sym_assignment_expression] = STATE(883), - [sym_relational_expression] = STATE(883), - [sym_shift_expression] = STATE(883), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2575), + [sym_continue_statement] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(886), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(586), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(586), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(586), + [sym_return_statement] = STATE(586), + [sym_preproc_include] = STATE(586), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(586), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_goto_statement] = STATE(586), + [sym_preproc_else] = STATE(886), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(586), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_do_statement] = STATE(586), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(586), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(586), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(586), + [sym_preproc_if] = STATE(586), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(586), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2575), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2575), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [872] = { - [aux_sym_preproc_if_token2] = ACTIONS(2581), + [aux_sym_type_definition_repeat2] = STATE(888), + [sym_parameter_list] = STATE(268), + [anon_sym_LBRACK] = ACTIONS(963), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(2603), }, [873] = { - [sym_continue_statement] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(482), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(482), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_preproc_include] = STATE(482), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(482), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_preproc_def] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(482), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(482), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(482), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(482), - [sym_preproc_if] = STATE(482), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(482), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(17), - [sym_null] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), + [aux_sym_preproc_if_token2] = ACTIONS(2605), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), + }, + [874] = { + [sym_continue_statement] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(890), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(586), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(586), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(586), + [sym_return_statement] = STATE(586), + [sym_preproc_include] = STATE(586), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(586), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_goto_statement] = STATE(586), + [sym_preproc_else] = STATE(890), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(586), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_do_statement] = STATE(586), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(586), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(586), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(586), + [sym_preproc_if] = STATE(586), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(586), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2607), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(93), - [sym_number_literal] = ACTIONS(91), - [anon_sym_if] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_sizeof] = ACTIONS(81), - }, - [874] = { - [sym_while_statement] = STATE(366), - [sym_continue_statement] = STATE(366), - [sym_goto_statement] = STATE(366), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(366), - [sym_expression_statement] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_do_statement] = STATE(366), - [sym_for_statement] = STATE(366), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(366), - [sym_return_statement] = STATE(366), - [sym_break_statement] = STATE(366), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(366), - [sym_labeled_statement] = STATE(366), - [sym_case_statement] = STATE(366), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_case] = ACTIONS(979), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_default] = ACTIONS(989), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [875] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2587), - }, - [876] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(521), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(521), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(885), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(885), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(521), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(521), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(521), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), - [sym_field_declaration] = STATE(521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), + [sym_continue_statement] = STATE(891), + [sym_preproc_function_def] = STATE(891), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(891), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(891), + [sym_for_statement] = STATE(891), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(891), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(891), + [sym_return_statement] = STATE(891), + [sym_preproc_include] = STATE(891), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(891), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(891), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(891), + [sym_while_statement] = STATE(891), + [sym_preproc_def] = STATE(891), + [sym_goto_statement] = STATE(891), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(891), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(891), + [sym_expression_statement] = STATE(891), + [sym_do_statement] = STATE(891), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(891), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(891), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(891), + [sym_preproc_if] = STATE(891), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(891), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(101), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_inline] = ACTIONS(19), + [sym_false] = ACTIONS(85), [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), + [sym_identifier] = ACTIONS(87), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(97), + [sym_number_literal] = ACTIONS(95), + [anon_sym_if] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(85), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_L] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(83), + }, + [876] = { + [sym_function_declarator] = STATE(866), + [sym__declarator] = STATE(866), + [sym_init_declarator] = STATE(867), + [sym_pointer_declarator] = STATE(866), + [sym_array_declarator] = STATE(866), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(2589), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_identifier] = ACTIONS(2565), }, [877] = { - [aux_sym_preproc_if_token2] = ACTIONS(2591), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_goto_statement] = STATE(892), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(892), + [sym_expression_statement] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_case_statement] = STATE(892), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [878] = { - [sym__declaration_specifiers] = STATE(778), - [sym_preproc_def] = STATE(521), - [sym_macro_type_specifier] = STATE(44), - [sym_preproc_function_def] = STATE(521), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), - [sym_storage_class_specifier] = STATE(40), - [sym_preproc_else_in_field_declaration_list] = STATE(886), - [sym_struct_specifier] = STATE(44), - [sym_preproc_elif_in_field_declaration_list] = STATE(886), - [sym_attribute_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_preproc_call] = STATE(521), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym__field_declaration_list_item] = STATE(521), - [sym_enum_specifier] = STATE(44), - [sym_preproc_if_in_field_declaration_list] = STATE(521), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), - [sym_field_declaration] = STATE(521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [aux_sym_preproc_else_token1] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(59), - [sym_preproc_directive] = ACTIONS(1156), - [anon_sym_signed] = ACTIONS(15), - [aux_sym_preproc_if_token1] = ACTIONS(1158), - [sym_identifier] = ACTIONS(197), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_const] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [aux_sym_preproc_if_token2] = ACTIONS(2593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1152), - [aux_sym_preproc_elif_token1] = ACTIONS(1162), - [aux_sym_preproc_def_token1] = ACTIONS(1164), - [anon_sym__Atomic] = ACTIONS(13), - [anon_sym_auto] = ACTIONS(17), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [anon_sym_LF] = ACTIONS(2613), + [sym_comment] = ACTIONS(183), }, [879] = { - [aux_sym_preproc_if_token2] = ACTIONS(2595), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2615), + [sym_preproc_arg] = ACTIONS(2617), }, [880] = { - [aux_sym_field_declaration_repeat1] = STATE(398), - [sym_bitfield_clause] = STATE(887), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(2597), + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(2619), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(495), }, [881] = { + [aux_sym_declaration_repeat1] = STATE(310), + [anon_sym_COMMA] = ACTIONS(812), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2621), }, [882] = { - [aux_sym_type_definition_repeat2] = STATE(355), - [anon_sym_COMMA] = ACTIONS(937), + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(894), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(894), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(894), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(895), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(895), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(894), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(894), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(894), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(894), + [sym_field_declaration] = STATE(894), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [aux_sym_preproc_if_token2] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2599), }, [883] = { - [aux_sym_for_statement_repeat1] = STATE(888), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2601), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(896), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(896), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(896), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(897), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(897), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(896), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(896), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(896), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(896), + [sym_field_declaration] = STATE(896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [aux_sym_preproc_if_token2] = ACTIONS(2625), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [sym_comment] = ACTIONS(3), }, [884] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(889), - [sym_math_expression] = STATE(889), - [sym_cast_expression] = STATE(889), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(889), - [sym_bitwise_expression] = STATE(889), - [sym_equality_expression] = STATE(889), - [sym_sizeof_expression] = STATE(889), - [sym_compound_literal_expression] = STATE(889), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(889), - [sym_concatenated_string] = STATE(889), - [sym_conditional_expression] = STATE(889), - [sym_assignment_expression] = STATE(889), - [sym_relational_expression] = STATE(889), - [sym_shift_expression] = STATE(889), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2603), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2603), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2603), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2627), }, [885] = { - [aux_sym_preproc_if_token2] = ACTIONS(2607), + [aux_sym_field_declaration_repeat1] = STATE(898), + [sym_bitfield_clause] = STATE(899), + [sym_parameter_list] = STATE(329), + [anon_sym_LBRACK] = ACTIONS(1257), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(2627), }, [886] = { - [aux_sym_preproc_if_token2] = ACTIONS(2609), + [aux_sym_preproc_if_token2] = ACTIONS(2629), [sym_comment] = ACTIONS(3), }, [887] = { + [aux_sym_type_definition_repeat2] = STATE(900), + [sym_parameter_list] = STATE(268), + [anon_sym_LBRACK] = ACTIONS(963), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(2631), }, [888] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2613), - [anon_sym_COMMA] = ACTIONS(1108), + [aux_sym_type_definition_repeat2] = STATE(363), + [anon_sym_COMMA] = ACTIONS(959), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2631), }, [889] = { - [aux_sym_for_statement_repeat1] = STATE(891), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2613), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(901), + [sym_math_expression] = STATE(901), + [sym_cast_expression] = STATE(901), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(901), + [sym_bitwise_expression] = STATE(901), + [sym_equality_expression] = STATE(901), + [sym_sizeof_expression] = STATE(901), + [sym_compound_literal_expression] = STATE(901), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(901), + [sym_concatenated_string] = STATE(901), + [sym_conditional_expression] = STATE(901), + [sym_assignment_expression] = STATE(901), + [sym_relational_expression] = STATE(901), + [sym_shift_expression] = STATE(901), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2633), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2633), + [sym_null] = ACTIONS(2633), + [anon_sym_RPAREN] = ACTIONS(2637), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [890] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(892), - [sym_math_expression] = STATE(892), - [sym_cast_expression] = STATE(892), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(892), - [sym_bitwise_expression] = STATE(892), - [sym_equality_expression] = STATE(892), - [sym_sizeof_expression] = STATE(892), - [sym_compound_literal_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(892), - [sym_concatenated_string] = STATE(892), - [sym_conditional_expression] = STATE(892), - [sym_assignment_expression] = STATE(892), - [sym_relational_expression] = STATE(892), - [sym_shift_expression] = STATE(892), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2615), + [aux_sym_preproc_if_token2] = ACTIONS(2639), [sym_comment] = ACTIONS(3), + }, + [891] = { + [sym_continue_statement] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(491), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(491), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_preproc_include] = STATE(491), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(491), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_preproc_def] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(491), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(491), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(491), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(491), + [sym_preproc_if] = STATE(491), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(491), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(19), + [sym_false] = ACTIONS(85), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(87), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(97), + [sym_number_literal] = ACTIONS(95), + [anon_sym_if] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(85), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2615), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [891] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_COMMA] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_L] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(83), }, [892] = { - [aux_sym_for_statement_repeat1] = STATE(893), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_while_statement] = STATE(374), + [sym_continue_statement] = STATE(374), + [sym_goto_statement] = STATE(374), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(374), + [sym_expression_statement] = STATE(374), + [sym_if_statement] = STATE(374), + [sym_do_statement] = STATE(374), + [sym_for_statement] = STATE(374), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(374), + [sym_return_statement] = STATE(374), + [sym_break_statement] = STATE(374), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(374), + [sym_labeled_statement] = STATE(374), + [sym_case_statement] = STATE(374), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [893] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2645), + [sym_comment] = ACTIONS(183), }, [894] = { - [sym_continue_statement] = STATE(907), - [sym_preproc_function_def] = STATE(907), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(907), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(907), - [sym_for_statement] = STATE(907), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(907), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(907), - [sym_return_statement] = STATE(907), - [sym_preproc_include] = STATE(907), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(907), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(907), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(907), - [sym_while_statement] = STATE(907), - [sym_preproc_def] = STATE(907), - [sym_goto_statement] = STATE(907), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(907), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(907), - [sym_expression_statement] = STATE(907), - [sym_do_statement] = STATE(907), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(907), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(907), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(907), - [sym_preproc_if] = STATE(907), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(907), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(83), + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(530), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(530), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(530), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(903), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(903), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(530), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(530), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(530), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(530), + [sym_field_declaration] = STATE(530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(85), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), + [aux_sym_preproc_if_token2] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2623), - [sym_true] = ACTIONS(83), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [sym_comment] = ACTIONS(3), }, [895] = { - [aux_sym_string_literal_repeat1] = STATE(908), - [aux_sym_string_literal_token1] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(2625), + [aux_sym_preproc_if_token2] = ACTIONS(2649), + [sym_comment] = ACTIONS(3), }, [896] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2629), - [sym_preproc_arg] = ACTIONS(2631), + [sym__declaration_specifiers] = STATE(793), + [sym_preproc_def] = STATE(530), + [sym_macro_type_specifier] = STATE(45), + [sym_preproc_function_def] = STATE(530), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(530), + [sym_storage_class_specifier] = STATE(41), + [sym_preproc_else_in_field_declaration_list] = STATE(904), + [sym_struct_specifier] = STATE(45), + [sym_preproc_elif_in_field_declaration_list] = STATE(904), + [sym_attribute_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_preproc_call] = STATE(530), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym__field_declaration_list_item] = STATE(530), + [sym_enum_specifier] = STATE(45), + [sym_preproc_if_in_field_declaration_list] = STATE(530), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(530), + [sym_field_declaration] = STATE(530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1182), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [aux_sym_preproc_else_token1] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(63), + [sym_preproc_directive] = ACTIONS(1186), + [anon_sym_signed] = ACTIONS(17), + [aux_sym_preproc_if_token1] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [aux_sym_preproc_if_token2] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1182), + [aux_sym_preproc_elif_token1] = ACTIONS(1192), + [aux_sym_preproc_def_token1] = ACTIONS(1194), + [anon_sym__Atomic] = ACTIONS(13), + [anon_sym_auto] = ACTIONS(19), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), + [sym_comment] = ACTIONS(3), }, [897] = { + [aux_sym_preproc_if_token2] = ACTIONS(2653), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2633), }, [898] = { - [sym_string_literal] = STATE(637), - [sym_system_lib_string] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2637), + [aux_sym_field_declaration_repeat1] = STATE(406), + [sym_bitfield_clause] = STATE(905), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(2655), }, [899] = { - [sym_parenthesized_expression] = STATE(638), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(2655), }, [900] = { - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_restrict] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_const] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(241), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_COLON] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(237), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_static] = ACTIONS(237), - [anon_sym_volatile] = ACTIONS(237), - [anon_sym_register] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [sym_identifier] = ACTIONS(237), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_inline] = ACTIONS(237), - [anon_sym___attribute__] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(239), + [aux_sym_type_definition_repeat2] = STATE(363), + [anon_sym_COMMA] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2657), }, [901] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(918), - [sym_math_expression] = STATE(918), - [sym_cast_expression] = STATE(918), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(918), - [sym_bitwise_expression] = STATE(918), - [sym_equality_expression] = STATE(918), - [sym_sizeof_expression] = STATE(918), - [sym_compound_literal_expression] = STATE(918), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(918), - [sym_concatenated_string] = STATE(918), - [sym_conditional_expression] = STATE(918), - [sym_assignment_expression] = STATE(918), - [sym_relational_expression] = STATE(918), - [sym_shift_expression] = STATE(918), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2641), - [sym_comment] = ACTIONS(3), + [aux_sym_for_statement_repeat1] = STATE(906), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [902] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(907), + [sym_math_expression] = STATE(907), + [sym_cast_expression] = STATE(907), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(907), + [sym_bitwise_expression] = STATE(907), + [sym_equality_expression] = STATE(907), + [sym_sizeof_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(907), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(907), + [sym_concatenated_string] = STATE(907), + [sym_conditional_expression] = STATE(907), + [sym_assignment_expression] = STATE(907), + [sym_relational_expression] = STATE(907), + [sym_shift_expression] = STATE(907), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2661), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2641), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [902] = { - [sym_parenthesized_expression] = STATE(641), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2661), + [sym_null] = ACTIONS(2661), + [anon_sym_RPAREN] = ACTIONS(2659), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [903] = { + [aux_sym_preproc_if_token2] = ACTIONS(2665), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2647), }, [904] = { + [aux_sym_preproc_if_token2] = ACTIONS(2667), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2649), }, [905] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2669), }, [906] = { - [sym_function_declarator] = STATE(920), - [sym__declarator] = STATE(920), - [sym_init_declarator] = STATE(921), - [sym_pointer_declarator] = STATE(920), - [sym_array_declarator] = STATE(920), - [sym_identifier] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2671), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(1138), }, [907] = { - [sym_continue_statement] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(482), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(482), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_preproc_include] = STATE(482), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(482), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_preproc_def] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(482), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(482), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(482), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(482), - [sym_preproc_if] = STATE(482), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(482), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(99), + [aux_sym_for_statement_repeat1] = STATE(909), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [908] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(910), + [sym_math_expression] = STATE(910), + [sym_cast_expression] = STATE(910), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(910), + [sym_bitwise_expression] = STATE(910), + [sym_equality_expression] = STATE(910), + [sym_sizeof_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(910), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(910), + [sym_concatenated_string] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_assignment_expression] = STATE(910), + [sym_relational_expression] = STATE(910), + [sym_shift_expression] = STATE(910), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2673), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2655), - [sym_true] = ACTIONS(83), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), - }, - [908] = { - [aux_sym_string_literal_repeat1] = STATE(136), - [aux_sym_string_literal_token1] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [909] = { - [anon_sym_PERCENT] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(2497), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(239), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2677), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), }, [910] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2659), + [aux_sym_for_statement_repeat1] = STATE(911), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [911] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2661), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), }, [912] = { - [sym_continue_statement] = STATE(924), - [sym_preproc_function_def] = STATE(924), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(923), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(924), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(924), - [sym_for_statement] = STATE(924), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(924), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(924), - [sym_return_statement] = STATE(924), - [sym_preproc_include] = STATE(924), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(924), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(924), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(924), - [sym_while_statement] = STATE(924), - [sym_preproc_def] = STATE(924), - [sym_goto_statement] = STATE(924), - [sym_preproc_else] = STATE(923), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(924), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(924), - [sym_expression_statement] = STATE(924), - [sym_do_statement] = STATE(924), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(924), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(924), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(924), - [sym_preproc_if] = STATE(924), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(924), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [sym_continue_statement] = STATE(925), + [sym_preproc_function_def] = STATE(925), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(925), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(925), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(925), + [sym_return_statement] = STATE(925), + [sym_preproc_include] = STATE(925), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(925), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(925), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_preproc_def] = STATE(925), + [sym_goto_statement] = STATE(925), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(925), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(925), + [sym_expression_statement] = STATE(925), + [sym_do_statement] = STATE(925), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(925), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(925), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(925), + [sym_preproc_if] = STATE(925), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(925), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(85), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2663), + [sym_identifier] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(99), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(101), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [913] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2665), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_restrict] = ACTIONS(149), + [sym_identifier] = ACTIONS(149), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_const] = ACTIONS(149), + [anon_sym_LPAREN2] = ACTIONS(153), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(149), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_static] = ACTIONS(149), + [anon_sym_volatile] = ACTIONS(149), + [anon_sym_register] = ACTIONS(149), + [anon_sym_extern] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(164), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_auto] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_inline] = ACTIONS(149), + [anon_sym___attribute__] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(151), }, [914] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2665), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2683), + [sym_preproc_arg] = ACTIONS(2685), }, [915] = { - [sym_continue_statement] = STATE(927), - [sym_preproc_function_def] = STATE(927), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(926), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(927), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(927), - [sym_for_statement] = STATE(927), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(927), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(927), - [sym_return_statement] = STATE(927), - [sym_preproc_include] = STATE(927), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(927), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(927), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_preproc_def] = STATE(927), - [sym_goto_statement] = STATE(927), - [sym_preproc_else] = STATE(926), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(927), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(927), - [sym_expression_statement] = STATE(927), - [sym_do_statement] = STATE(927), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(927), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(927), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(927), - [sym_preproc_if] = STATE(927), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(927), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [aux_sym_string_literal_repeat1] = STATE(931), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(2689), + [aux_sym_string_literal_token1] = ACTIONS(2689), }, [916] = { - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_function_definition] = STATE(653), - [sym_declaration_list] = STATE(653), - [sym_declaration] = STATE(653), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_attribute_specifier] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [sym__declaration_specifiers] = STATE(929), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(197), - [anon_sym_long] = ACTIONS(15), - [anon_sym_const] = ACTIONS(13), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym___attribute__] = ACTIONS(19), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2691), }, [917] = { - [sym_switch_body] = STATE(655), - [anon_sym_LBRACE] = ACTIONS(2671), + [sym_string_literal] = STATE(651), + [sym_system_lib_string] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2695), + [anon_sym_L] = ACTIONS(2697), [sym_comment] = ACTIONS(3), }, [918] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_parenthesized_expression] = STATE(652), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(251), }, [919] = { - [sym_preproc_params] = STATE(932), - [sym_preproc_arg] = ACTIONS(2675), - [anon_sym_LPAREN] = ACTIONS(549), - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2677), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(935), + [sym_math_expression] = STATE(935), + [sym_cast_expression] = STATE(935), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(935), + [sym_bitwise_expression] = STATE(935), + [sym_equality_expression] = STATE(935), + [sym_sizeof_expression] = STATE(935), + [sym_compound_literal_expression] = STATE(935), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(935), + [sym_concatenated_string] = STATE(935), + [sym_conditional_expression] = STATE(935), + [sym_assignment_expression] = STATE(935), + [sym_relational_expression] = STATE(935), + [sym_shift_expression] = STATE(935), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2699), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2699), + [sym_null] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [920] = { - [sym_compound_statement] = STATE(661), - [aux_sym_declaration_repeat1] = STATE(933), - [sym_parameter_list] = STATE(218), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_EQ] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(785), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(789), + [sym_parenthesized_expression] = STATE(654), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_LPAREN2] = ACTIONS(251), }, [921] = { - [aux_sym_declaration_repeat1] = STATE(933), - [anon_sym_COMMA] = ACTIONS(789), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2705), }, [922] = { - [sym_parenthesized_expression] = STATE(595), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2707), }, [923] = { - [aux_sym_preproc_if_token2] = ACTIONS(2683), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [924] = { - [sym_continue_statement] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(934), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(575), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(575), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_preproc_include] = STATE(575), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(575), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(575), - [sym_while_statement] = STATE(575), - [sym_preproc_def] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_preproc_else] = STATE(934), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(575), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(575), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(575), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(575), - [sym_preproc_if] = STATE(575), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(575), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), - [anon_sym_restrict] = ACTIONS(13), + [sym_function_declarator] = STATE(938), + [sym__declarator] = STATE(938), + [sym_init_declarator] = STATE(939), + [sym_pointer_declarator] = STATE(938), + [sym_array_declarator] = STATE(938), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2685), + [sym_identifier] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + }, + [925] = { + [sym_continue_statement] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(491), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(491), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_preproc_include] = STATE(491), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(491), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_preproc_def] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(491), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(491), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(491), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(491), + [sym_preproc_if] = STATE(491), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(491), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(85), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(99), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(101), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), - }, - [925] = { - [aux_sym_type_definition_repeat2] = STATE(936), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(937), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [926] = { - [aux_sym_preproc_if_token2] = ACTIONS(2689), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2715), }, [927] = { - [sym_continue_statement] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_pointer_expression] = STATE(35), - [sym_preproc_elif] = STATE(938), - [sym_math_expression] = STATE(834), - [sym_declaration] = STATE(575), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(575), - [sym_for_statement] = STATE(575), - [sym_comma_expression] = STATE(833), - [sym_equality_expression] = STATE(834), - [sym_type_definition] = STATE(575), - [sym_sizeof_expression] = STATE(834), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(834), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(575), - [sym_return_statement] = STATE(575), - [sym_preproc_include] = STATE(575), - [sym_conditional_expression] = STATE(834), - [sym_preproc_ifdef] = STATE(575), - [sym_relational_expression] = STATE(834), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(575), - [sym_while_statement] = STATE(575), - [sym_preproc_def] = STATE(575), - [sym_goto_statement] = STATE(575), - [sym_preproc_else] = STATE(938), - [sym_logical_expression] = STATE(834), - [sym_function_definition] = STATE(575), - [sym_cast_expression] = STATE(834), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(575), - [sym_expression_statement] = STATE(575), - [sym_do_statement] = STATE(575), - [sym__expression] = STATE(834), - [sym_preproc_call] = STATE(575), - [sym_bitwise_expression] = STATE(834), - [sym__declaration_specifiers] = STATE(835), - [sym_compound_literal_expression] = STATE(834), - [sym_char_literal] = STATE(834), - [sym__empty_declaration] = STATE(575), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(575), - [sym_preproc_if] = STATE(575), - [sym_assignment_expression] = STATE(834), - [sym_shift_expression] = STATE(834), - [sym_linkage_specification] = STATE(575), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(398), + [anon_sym_LF] = ACTIONS(2717), + [sym_comment] = ACTIONS(183), + }, + [928] = { + [sym_continue_statement] = STATE(942), + [sym_preproc_function_def] = STATE(942), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(941), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(942), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(942), + [sym_for_statement] = STATE(942), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(942), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(942), + [sym_return_statement] = STATE(942), + [sym_preproc_include] = STATE(942), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(942), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(942), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(942), + [sym_while_statement] = STATE(942), + [sym_preproc_def] = STATE(942), + [sym_goto_statement] = STATE(942), + [sym_preproc_else] = STATE(941), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(942), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(942), + [sym_expression_statement] = STATE(942), + [sym_do_statement] = STATE(942), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(942), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(942), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(942), + [sym_preproc_if] = STATE(942), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(942), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(400), - [aux_sym_preproc_if_token2] = ACTIONS(2691), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2719), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(406), - [sym_number_literal] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(406), - [aux_sym_preproc_elif_token1] = ACTIONS(414), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(418), - [aux_sym_preproc_else_token1] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(424), - [anon_sym_LPAREN2] = ACTIONS(35), - [sym_true] = ACTIONS(398), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(426), - [anon_sym_break] = ACTIONS(428), - [aux_sym_preproc_include_token1] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [sym_false] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(436), - [anon_sym_return] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(442), - [aux_sym_preproc_def_token1] = ACTIONS(444), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), - }, - [928] = { - [sym_continue_statement] = STATE(939), - [sym_preproc_function_def] = STATE(939), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(939), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(939), - [sym_for_statement] = STATE(939), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(939), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(939), - [sym_return_statement] = STATE(939), - [sym_preproc_include] = STATE(939), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(939), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(939), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(939), - [sym_while_statement] = STATE(939), - [sym_preproc_def] = STATE(939), - [sym_goto_statement] = STATE(939), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(939), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(939), - [sym_expression_statement] = STATE(939), - [sym_do_statement] = STATE(939), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(939), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(939), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(939), - [sym_preproc_if] = STATE(939), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(939), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(17), - [sym_null] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), - [sym_comment] = ACTIONS(3), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), + [sym_preproc_directive] = ACTIONS(434), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(93), - [sym_number_literal] = ACTIONS(91), - [anon_sym_if] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [929] = { - [sym_function_declarator] = STATE(920), - [sym__declarator] = STATE(920), - [sym_init_declarator] = STATE(921), - [sym_pointer_declarator] = STATE(920), - [sym_array_declarator] = STATE(920), - [sym_identifier] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LPAREN2] = ACTIONS(334), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2721), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [930] = { - [sym_while_statement] = STATE(940), - [sym_continue_statement] = STATE(940), - [sym_goto_statement] = STATE(940), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(940), - [sym_expression_statement] = STATE(940), - [sym_if_statement] = STATE(940), - [sym_do_statement] = STATE(940), - [sym_for_statement] = STATE(940), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(940), - [sym_return_statement] = STATE(940), - [sym_break_statement] = STATE(940), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(940), - [sym_labeled_statement] = STATE(940), - [sym_case_statement] = STATE(940), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_case] = ACTIONS(979), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(989), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), }, [931] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2697), + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(495), }, [932] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2699), - [sym_preproc_arg] = ACTIONS(2701), + [sym_continue_statement] = STATE(945), + [sym_preproc_function_def] = STATE(945), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(944), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(945), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(945), + [sym_for_statement] = STATE(945), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(945), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(945), + [sym_return_statement] = STATE(945), + [sym_preproc_include] = STATE(945), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(945), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(945), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(945), + [sym_while_statement] = STATE(945), + [sym_preproc_def] = STATE(945), + [sym_goto_statement] = STATE(945), + [sym_preproc_else] = STATE(944), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(945), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(945), + [sym_expression_statement] = STATE(945), + [sym_do_statement] = STATE(945), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(945), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(945), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(945), + [sym_preproc_if] = STATE(945), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(945), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), + [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [933] = { - [aux_sym_declaration_repeat1] = STATE(302), - [anon_sym_COMMA] = ACTIONS(789), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_function_definition] = STATE(667), + [sym_declaration_list] = STATE(667), + [sym_declaration] = STATE(667), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_attribute_specifier] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym__declaration_specifiers] = STATE(947), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_short] = ACTIONS(17), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [anon_sym_long] = ACTIONS(17), + [anon_sym_const] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(19), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_inline] = ACTIONS(19), + [anon_sym___attribute__] = ACTIONS(25), }, [934] = { - [aux_sym_preproc_if_token2] = ACTIONS(2705), + [sym_switch_body] = STATE(669), + [anon_sym_LBRACE] = ACTIONS(2729), [sym_comment] = ACTIONS(3), }, [935] = { - [aux_sym_type_definition_repeat2] = STATE(942), - [sym_parameter_list] = STATE(261), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(937), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2707), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [936] = { - [aux_sym_type_definition_repeat2] = STATE(355), - [anon_sym_COMMA] = ACTIONS(937), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2707), + [sym_preproc_params] = STATE(950), + [sym_preproc_arg] = ACTIONS(2733), + [anon_sym_LPAREN] = ACTIONS(563), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2735), }, [937] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(943), - [sym_math_expression] = STATE(943), - [sym_cast_expression] = STATE(943), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(943), - [sym_bitwise_expression] = STATE(943), - [sym_equality_expression] = STATE(943), - [sym_sizeof_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(943), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(943), - [sym_concatenated_string] = STATE(943), - [sym_conditional_expression] = STATE(943), - [sym_assignment_expression] = STATE(943), - [sym_relational_expression] = STATE(943), - [sym_shift_expression] = STATE(943), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2709), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [aux_sym_string_literal_repeat1] = STATE(951), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(2737), + [aux_sym_string_literal_token1] = ACTIONS(2737), }, [938] = { - [aux_sym_preproc_if_token2] = ACTIONS(2715), + [sym_compound_statement] = STATE(674), + [aux_sym_declaration_repeat1] = STATE(952), + [sym_parameter_list] = STATE(224), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_LPAREN2] = ACTIONS(810), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(2739), }, [939] = { - [sym_continue_statement] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(482), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(482), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_preproc_include] = STATE(482), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(482), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_preproc_def] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(482), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(482), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(482), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(482), - [sym_preproc_if] = STATE(482), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(482), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_inline] = ACTIONS(17), - [sym_null] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_do] = ACTIONS(99), - [anon_sym_goto] = ACTIONS(85), + [aux_sym_declaration_repeat1] = STATE(952), + [anon_sym_COMMA] = ACTIONS(812), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2717), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(83), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(93), - [sym_number_literal] = ACTIONS(91), - [anon_sym_if] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_long] = ACTIONS(15), - [sym_identifier] = ACTIONS(117), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_return] = ACTIONS(119), - [anon_sym_while] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(2739), }, [940] = { - [sym_while_statement] = STATE(366), - [sym_continue_statement] = STATE(366), - [sym_goto_statement] = STATE(366), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(366), - [sym_expression_statement] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_do_statement] = STATE(366), - [sym_for_statement] = STATE(366), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(366), - [sym_return_statement] = STATE(366), - [sym_break_statement] = STATE(366), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(366), - [sym_labeled_statement] = STATE(366), - [sym_case_statement] = STATE(366), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_case] = ACTIONS(979), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(989), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_parenthesized_expression] = STATE(606), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2741), }, [941] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), }, [942] = { - [aux_sym_type_definition_repeat2] = STATE(355), - [anon_sym_COMMA] = ACTIONS(937), + [sym_continue_statement] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(953), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(586), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(586), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(586), + [sym_return_statement] = STATE(586), + [sym_preproc_include] = STATE(586), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(586), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_goto_statement] = STATE(586), + [sym_preproc_else] = STATE(953), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(586), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_do_statement] = STATE(586), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(586), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(586), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(586), + [sym_preproc_if] = STATE(586), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(586), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2723), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [943] = { - [aux_sym_for_statement_repeat1] = STATE(945), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2725), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_type_definition_repeat2] = STATE(955), + [sym_parameter_list] = STATE(268), + [anon_sym_LBRACK] = ACTIONS(963), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(2747), }, [944] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(946), - [sym_math_expression] = STATE(946), - [sym_cast_expression] = STATE(946), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(946), - [sym_bitwise_expression] = STATE(946), - [sym_equality_expression] = STATE(946), - [sym_sizeof_expression] = STATE(946), - [sym_compound_literal_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(946), - [sym_concatenated_string] = STATE(946), - [sym_conditional_expression] = STATE(946), - [sym_assignment_expression] = STATE(946), - [sym_relational_expression] = STATE(946), - [sym_shift_expression] = STATE(946), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2749), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2727), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2727), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), }, [945] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2731), - [anon_sym_COMMA] = ACTIONS(1108), + [sym_continue_statement] = STATE(586), + [sym_preproc_function_def] = STATE(586), + [sym_pointer_expression] = STATE(36), + [sym_preproc_elif] = STATE(957), + [sym_math_expression] = STATE(851), + [sym_declaration] = STATE(586), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_comma_expression] = STATE(850), + [sym_equality_expression] = STATE(851), + [sym_type_definition] = STATE(586), + [sym_sizeof_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(851), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(586), + [sym_return_statement] = STATE(586), + [sym_preproc_include] = STATE(586), + [sym_conditional_expression] = STATE(851), + [sym_preproc_ifdef] = STATE(586), + [sym_relational_expression] = STATE(851), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(586), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_preproc_def] = STATE(586), + [sym_goto_statement] = STATE(586), + [sym_preproc_else] = STATE(957), + [sym_logical_expression] = STATE(851), + [sym_function_definition] = STATE(586), + [sym_cast_expression] = STATE(851), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_do_statement] = STATE(586), + [sym__expression] = STATE(851), + [sym_preproc_call] = STATE(586), + [sym_bitwise_expression] = STATE(851), + [sym__declaration_specifiers] = STATE(852), + [sym_compound_literal_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym__empty_declaration] = STATE(586), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(586), + [sym_preproc_if] = STATE(586), + [sym_assignment_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_linkage_specification] = STATE(586), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(408), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(410), + [anon_sym_goto] = ACTIONS(412), + [aux_sym_preproc_if_token2] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(418), + [sym_number_literal] = ACTIONS(420), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(418), + [aux_sym_preproc_elif_token1] = ACTIONS(426), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(430), + [aux_sym_preproc_else_token1] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(434), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(438), + [anon_sym_break] = ACTIONS(440), + [aux_sym_preproc_include_token1] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [sym_true] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(408), + [anon_sym_return] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(452), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [946] = { - [aux_sym_for_statement_repeat1] = STATE(948), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_continue_statement] = STATE(958), + [sym_preproc_function_def] = STATE(958), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(958), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(958), + [sym_for_statement] = STATE(958), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(958), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(958), + [sym_return_statement] = STATE(958), + [sym_preproc_include] = STATE(958), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(958), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(958), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(958), + [sym_while_statement] = STATE(958), + [sym_preproc_def] = STATE(958), + [sym_goto_statement] = STATE(958), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(958), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(958), + [sym_expression_statement] = STATE(958), + [sym_do_statement] = STATE(958), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(958), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(958), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(958), + [sym_preproc_if] = STATE(958), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(958), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(19), + [sym_false] = ACTIONS(85), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(87), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(2753), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(97), + [sym_number_literal] = ACTIONS(95), + [anon_sym_if] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(85), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_L] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(83), }, [947] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(949), - [sym_math_expression] = STATE(949), - [sym_cast_expression] = STATE(949), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(949), - [sym_bitwise_expression] = STATE(949), - [sym_equality_expression] = STATE(949), - [sym_sizeof_expression] = STATE(949), - [sym_compound_literal_expression] = STATE(949), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(949), - [sym_concatenated_string] = STATE(949), - [sym_conditional_expression] = STATE(949), - [sym_assignment_expression] = STATE(949), - [sym_relational_expression] = STATE(949), - [sym_shift_expression] = STATE(949), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2733), + [sym_function_declarator] = STATE(938), + [sym__declarator] = STATE(938), + [sym_init_declarator] = STATE(939), + [sym_pointer_declarator] = STATE(938), + [sym_array_declarator] = STATE(938), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_LPAREN2] = ACTIONS(344), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2709), + }, + [948] = { + [sym_while_statement] = STATE(959), + [sym_continue_statement] = STATE(959), + [sym_goto_statement] = STATE(959), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(959), + [sym_expression_statement] = STATE(959), + [sym_if_statement] = STATE(959), + [sym_do_statement] = STATE(959), + [sym_for_statement] = STATE(959), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(959), + [sym_return_statement] = STATE(959), + [sym_break_statement] = STATE(959), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(959), + [sym_labeled_statement] = STATE(959), + [sym_case_statement] = STATE(959), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2733), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [948] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2737), - [anon_sym_COMMA] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [949] = { - [aux_sym_for_statement_repeat1] = STATE(950), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2737), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_LF] = ACTIONS(2757), + [sym_comment] = ACTIONS(183), }, [950] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2739), - [anon_sym_COMMA] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2759), + [sym_preproc_arg] = ACTIONS(2761), }, [951] = { - [sym_continue_statement] = STATE(961), - [sym_preproc_function_def] = STATE(961), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(961), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(961), - [sym_for_statement] = STATE(961), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(961), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(961), - [sym_return_statement] = STATE(961), - [sym_preproc_include] = STATE(961), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(961), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(961), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(961), - [sym_while_statement] = STATE(961), - [sym_preproc_def] = STATE(961), - [sym_goto_statement] = STATE(961), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(961), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(961), - [sym_expression_statement] = STATE(961), - [sym_do_statement] = STATE(961), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(961), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(961), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(961), - [sym_preproc_if] = STATE(961), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(961), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(83), - [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(85), - [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(99), - [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), - [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2741), - [sym_true] = ACTIONS(83), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(2763), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(495), }, [952] = { - [aux_sym_string_literal_repeat1] = STATE(962), - [aux_sym_string_literal_token1] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(2743), + [aux_sym_declaration_repeat1] = STATE(310), + [anon_sym_COMMA] = ACTIONS(812), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2765), }, [953] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2747), - [sym_preproc_arg] = ACTIONS(2749), + [aux_sym_preproc_if_token2] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), }, [954] = { + [aux_sym_type_definition_repeat2] = STATE(961), + [sym_parameter_list] = STATE(268), + [anon_sym_LBRACK] = ACTIONS(963), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_LPAREN2] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(2769), }, [955] = { - [sym_parenthesized_expression] = STATE(695), + [aux_sym_type_definition_repeat2] = STATE(363), + [anon_sym_COMMA] = ACTIONS(959), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(2769), }, [956] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(969), - [sym_math_expression] = STATE(969), - [sym_cast_expression] = STATE(969), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(969), - [sym_bitwise_expression] = STATE(969), - [sym_equality_expression] = STATE(969), - [sym_sizeof_expression] = STATE(969), - [sym_compound_literal_expression] = STATE(969), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(969), - [sym_concatenated_string] = STATE(969), - [sym_conditional_expression] = STATE(969), - [sym_assignment_expression] = STATE(969), - [sym_relational_expression] = STATE(969), - [sym_shift_expression] = STATE(969), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2753), - [sym_comment] = ACTIONS(3), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(962), + [sym_math_expression] = STATE(962), + [sym_cast_expression] = STATE(962), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(962), + [sym_bitwise_expression] = STATE(962), + [sym_equality_expression] = STATE(962), + [sym_sizeof_expression] = STATE(962), + [sym_compound_literal_expression] = STATE(962), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(962), + [sym_concatenated_string] = STATE(962), + [sym_conditional_expression] = STATE(962), + [sym_assignment_expression] = STATE(962), + [sym_relational_expression] = STATE(962), + [sym_shift_expression] = STATE(962), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2771), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2755), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2753), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2771), + [sym_null] = ACTIONS(2771), + [anon_sym_RPAREN] = ACTIONS(2775), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [957] = { - [sym_parenthesized_expression] = STATE(698), + [aux_sym_preproc_if_token2] = ACTIONS(2777), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), }, [958] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2759), - }, - [959] = { - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2761), - }, - [960] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [961] = { - [sym_continue_statement] = STATE(482), - [sym_preproc_function_def] = STATE(482), - [sym_pointer_expression] = STATE(35), - [sym_math_expression] = STATE(758), - [sym_declaration] = STATE(482), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym_if_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_comma_expression] = STATE(757), - [sym_equality_expression] = STATE(758), - [sym_type_definition] = STATE(482), - [sym_sizeof_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(758), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym_union_specifier] = STATE(44), - [sym_switch_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_preproc_include] = STATE(482), - [sym_conditional_expression] = STATE(758), - [sym_preproc_ifdef] = STATE(482), - [sym_relational_expression] = STATE(758), - [sym_subscript_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(482), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_enum_specifier] = STATE(44), - [sym_labeled_statement] = STATE(482), - [sym_while_statement] = STATE(482), - [sym_preproc_def] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_logical_expression] = STATE(758), - [sym_function_definition] = STATE(482), - [sym_cast_expression] = STATE(758), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym__expression] = STATE(758), - [sym_preproc_call] = STATE(482), - [sym_bitwise_expression] = STATE(758), - [sym__declaration_specifiers] = STATE(759), - [sym_compound_literal_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym__empty_declaration] = STATE(482), - [sym__type_specifier] = STATE(44), - [sym_break_statement] = STATE(482), - [sym_preproc_if] = STATE(482), - [sym_assignment_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_linkage_specification] = STATE(482), - [sym_call_expression] = STATE(35), - [sym_sized_type_specifier] = STATE(44), - [sym_null] = ACTIONS(83), + [sym_continue_statement] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(491), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(491), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_preproc_include] = STATE(491), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(491), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_preproc_def] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(491), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(491), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(491), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(491), + [sym_preproc_if] = STATE(491), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(491), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_union] = ACTIONS(7), + [anon_sym_inline] = ACTIONS(19), + [sym_false] = ACTIONS(85), [anon_sym_restrict] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym_goto] = ACTIONS(85), + [sym_identifier] = ACTIONS(87), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_do] = ACTIONS(103), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(105), + [anon_sym_AMP] = ACTIONS(31), + [aux_sym_preproc_if_token1] = ACTIONS(107), [anon_sym_const] = ACTIONS(13), - [anon_sym_typedef] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(2779), [anon_sym__Atomic] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(89), - [sym_number_literal] = ACTIONS(91), + [sym_primitive_type] = ACTIONS(45), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_extern] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_while] = ACTIONS(95), - [aux_sym_preproc_ifdef_token2] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym_LBRACE] = ACTIONS(97), - [anon_sym_union] = ACTIONS(7), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_do] = ACTIONS(99), + [anon_sym_register] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(97), + [sym_number_literal] = ACTIONS(95), + [anon_sym_if] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_switch] = ACTIONS(119), + [anon_sym_signed] = ACTIONS(17), + [sym_true] = ACTIONS(85), + [anon_sym_long] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_return] = ACTIONS(121), + [anon_sym_while] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_L] = ACTIONS(9), + [anon_sym_sizeof] = ACTIONS(83), + }, + [959] = { + [sym_while_statement] = STATE(374), + [sym_continue_statement] = STATE(374), + [sym_goto_statement] = STATE(374), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(374), + [sym_expression_statement] = STATE(374), + [sym_if_statement] = STATE(374), + [sym_do_statement] = STATE(374), + [sym_for_statement] = STATE(374), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(374), + [sym_return_statement] = STATE(374), + [sym_break_statement] = STATE(374), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(374), + [sym_labeled_statement] = STATE(374), + [sym_case_statement] = STATE(374), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), [anon_sym_TILDE] = ACTIONS(27), - [sym_preproc_directive] = ACTIONS(101), [anon_sym_AMP] = ACTIONS(31), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(2763), - [sym_true] = ACTIONS(83), - [sym_primitive_type] = ACTIONS(41), - [anon_sym_for] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [aux_sym_preproc_include_token1] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_register] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(113), - [anon_sym_switch] = ACTIONS(115), - [sym_false] = ACTIONS(83), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(119), - [anon_sym_continue] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(123), - [aux_sym_preproc_def_token1] = ACTIONS(125), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_DASH] = ACTIONS(25), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [960] = { + [anon_sym_LF] = ACTIONS(2783), + [sym_comment] = ACTIONS(183), + }, + [961] = { + [aux_sym_type_definition_repeat2] = STATE(363), + [anon_sym_COMMA] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2785), }, [962] = { - [aux_sym_string_literal_repeat1] = STATE(136), - [aux_sym_string_literal_token1] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(2765), - [sym_comment] = ACTIONS(147), - [sym_escape_sequence] = ACTIONS(374), + [aux_sym_for_statement_repeat1] = STATE(964), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2787), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [963] = { - [anon_sym_PERCENT] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(2639), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(239), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(965), + [sym_math_expression] = STATE(965), + [sym_cast_expression] = STATE(965), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(965), + [sym_bitwise_expression] = STATE(965), + [sym_equality_expression] = STATE(965), + [sym_sizeof_expression] = STATE(965), + [sym_compound_literal_expression] = STATE(965), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(965), + [sym_concatenated_string] = STATE(965), + [sym_conditional_expression] = STATE(965), + [sym_assignment_expression] = STATE(965), + [sym_relational_expression] = STATE(965), + [sym_shift_expression] = STATE(965), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2789), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), + [anon_sym_RPAREN] = ACTIONS(2787), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [964] = { + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2793), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_COMMA] = ACTIONS(1138), }, [965] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2769), + [aux_sym_for_statement_repeat1] = STATE(967), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2793), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [966] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2771), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(968), + [sym_math_expression] = STATE(968), + [sym_cast_expression] = STATE(968), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(968), + [sym_bitwise_expression] = STATE(968), + [sym_equality_expression] = STATE(968), + [sym_sizeof_expression] = STATE(968), + [sym_compound_literal_expression] = STATE(968), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(968), + [sym_concatenated_string] = STATE(968), + [sym_conditional_expression] = STATE(968), + [sym_assignment_expression] = STATE(968), + [sym_relational_expression] = STATE(968), + [sym_shift_expression] = STATE(968), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2795), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2795), + [sym_null] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2793), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [967] = { + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2799), [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2771), + [anon_sym_COMMA] = ACTIONS(1138), }, [968] = { - [sym_switch_body] = STATE(707), - [anon_sym_LBRACE] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), + [aux_sym_for_statement_repeat1] = STATE(969), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2799), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [969] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), }, [970] = { - [sym_preproc_params] = STATE(974), - [sym_preproc_arg] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(549), - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2779), - }, - [971] = { - [sym_parenthesized_expression] = STATE(662), + [sym_continue_statement] = STATE(980), + [sym_preproc_function_def] = STATE(980), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(980), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(980), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_preproc_include] = STATE(980), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(980), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(980), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_preproc_def] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(980), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(980), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(980), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(980), + [sym_preproc_if] = STATE(980), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(980), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(85), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(2781), - }, - [972] = { - [sym_while_statement] = STATE(976), - [sym_continue_statement] = STATE(976), - [sym_goto_statement] = STATE(976), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(976), - [sym_expression_statement] = STATE(976), - [sym_if_statement] = STATE(976), - [sym_do_statement] = STATE(976), - [sym_for_statement] = STATE(976), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(976), - [sym_return_statement] = STATE(976), - [sym_break_statement] = STATE(976), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(976), - [sym_labeled_statement] = STATE(976), - [sym_case_statement] = STATE(976), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_case] = ACTIONS(979), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(99), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_default] = ACTIONS(989), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(2803), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), + }, + [971] = { + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2805), + [sym_preproc_arg] = ACTIONS(2807), + }, + [972] = { + [aux_sym_string_literal_repeat1] = STATE(985), + [anon_sym_DQUOTE] = ACTIONS(2809), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(2811), + [aux_sym_string_literal_token1] = ACTIONS(2811), }, [973] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2785), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2813), }, [974] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2787), - [sym_preproc_arg] = ACTIONS(2789), + [sym_parenthesized_expression] = STATE(710), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(251), }, [975] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(978), - [sym_math_expression] = STATE(978), - [sym_cast_expression] = STATE(978), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(978), - [sym_bitwise_expression] = STATE(978), - [sym_equality_expression] = STATE(978), - [sym_sizeof_expression] = STATE(978), - [sym_compound_literal_expression] = STATE(978), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(978), - [sym_concatenated_string] = STATE(978), - [sym_conditional_expression] = STATE(978), - [sym_assignment_expression] = STATE(978), - [sym_relational_expression] = STATE(978), - [sym_shift_expression] = STATE(978), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2791), - [sym_comment] = ACTIONS(3), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(987), + [sym_math_expression] = STATE(987), + [sym_cast_expression] = STATE(987), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(987), + [sym_bitwise_expression] = STATE(987), + [sym_equality_expression] = STATE(987), + [sym_sizeof_expression] = STATE(987), + [sym_compound_literal_expression] = STATE(987), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(987), + [sym_concatenated_string] = STATE(987), + [sym_conditional_expression] = STATE(987), + [sym_assignment_expression] = STATE(987), + [sym_relational_expression] = STATE(987), + [sym_shift_expression] = STATE(987), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2815), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2791), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2815), + [sym_null] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [976] = { - [sym_while_statement] = STATE(366), - [sym_continue_statement] = STATE(366), - [sym_goto_statement] = STATE(366), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(366), - [sym_expression_statement] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_do_statement] = STATE(366), - [sym_for_statement] = STATE(366), - [sym__expression] = STATE(960), - [sym_comma_expression] = STATE(959), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_switch_statement] = STATE(366), - [sym_return_statement] = STATE(366), - [sym_break_statement] = STATE(366), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [aux_sym_switch_body_repeat1] = STATE(366), - [sym_labeled_statement] = STATE(366), - [sym_case_statement] = STATE(366), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_case] = ACTIONS(979), - [sym_null] = ACTIONS(981), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(983), - [anon_sym_goto] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_RBRACE] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(989), - [sym_true] = ACTIONS(981), - [anon_sym_for] = ACTIONS(991), - [anon_sym_break] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(999), - [sym_false] = ACTIONS(981), - [sym_identifier] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_parenthesized_expression] = STATE(712), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(251), }, [977] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2821), }, [978] = { - [aux_sym_for_statement_repeat1] = STATE(980), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2823), }, [979] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(981), - [sym_math_expression] = STATE(981), - [sym_cast_expression] = STATE(981), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(981), - [sym_bitwise_expression] = STATE(981), - [sym_equality_expression] = STATE(981), - [sym_sizeof_expression] = STATE(981), - [sym_compound_literal_expression] = STATE(981), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(981), - [sym_concatenated_string] = STATE(981), - [sym_conditional_expression] = STATE(981), - [sym_assignment_expression] = STATE(981), - [sym_relational_expression] = STATE(981), - [sym_shift_expression] = STATE(981), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2803), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [980] = { + [sym_continue_statement] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_pointer_expression] = STATE(36), + [sym_math_expression] = STATE(773), + [sym_declaration] = STATE(491), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym_if_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_comma_expression] = STATE(772), + [sym_equality_expression] = STATE(773), + [sym_type_definition] = STATE(491), + [sym_sizeof_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(773), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym_union_specifier] = STATE(45), + [sym_switch_statement] = STATE(491), + [sym_return_statement] = STATE(491), + [sym_preproc_include] = STATE(491), + [sym_conditional_expression] = STATE(773), + [sym_preproc_ifdef] = STATE(491), + [sym_relational_expression] = STATE(773), + [sym_subscript_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym_translation_unit_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_enum_specifier] = STATE(45), + [sym_labeled_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_preproc_def] = STATE(491), + [sym_goto_statement] = STATE(491), + [sym_logical_expression] = STATE(773), + [sym_function_definition] = STATE(491), + [sym_cast_expression] = STATE(773), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym_do_statement] = STATE(491), + [sym__expression] = STATE(773), + [sym_preproc_call] = STATE(491), + [sym_bitwise_expression] = STATE(773), + [sym__declaration_specifiers] = STATE(774), + [sym_compound_literal_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym__empty_declaration] = STATE(491), + [sym__type_specifier] = STATE(45), + [sym_break_statement] = STATE(491), + [sym_preproc_if] = STATE(491), + [sym_assignment_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_linkage_specification] = STATE(491), + [sym_call_expression] = STATE(36), + [sym_sized_type_specifier] = STATE(45), + [sym_false] = ACTIONS(85), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_const] = ACTIONS(13), + [anon_sym_typedef] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [aux_sym_preproc_ifdef_token1] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(97), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_while] = ACTIONS(99), + [aux_sym_preproc_ifdef_token2] = ACTIONS(93), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_do] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(27), + [sym_preproc_directive] = ACTIONS(105), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(25), + [aux_sym_preproc_if_token1] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(2825), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_for] = ACTIONS(111), + [anon_sym_break] = ACTIONS(113), + [aux_sym_preproc_include_token1] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2803), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [980] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2807), - [anon_sym_COMMA] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(119), + [sym_true] = ACTIONS(85), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(85), + [anon_sym_return] = ACTIONS(121), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(125), + [aux_sym_preproc_def_token1] = ACTIONS(127), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [981] = { - [aux_sym_for_statement_repeat1] = STATE(983), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2807), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2827), }, [982] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(984), - [sym_math_expression] = STATE(984), - [sym_cast_expression] = STATE(984), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(984), - [sym_bitwise_expression] = STATE(984), - [sym_equality_expression] = STATE(984), - [sym_sizeof_expression] = STATE(984), - [sym_compound_literal_expression] = STATE(984), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(984), - [sym_concatenated_string] = STATE(984), - [sym_conditional_expression] = STATE(984), - [sym_assignment_expression] = STATE(984), - [sym_relational_expression] = STATE(984), - [sym_shift_expression] = STATE(984), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2809), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2809), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LF] = ACTIONS(2829), + [sym_comment] = ACTIONS(183), }, [983] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2831), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [984] = { - [aux_sym_for_statement_repeat1] = STATE(985), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_RPAREN] = ACTIONS(2831), + [sym_comment] = ACTIONS(3), }, [985] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(2815), - [anon_sym_COMMA] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(2833), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(495), }, [986] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2817), - [sym_preproc_arg] = ACTIONS(2819), + [sym_switch_body] = STATE(722), + [anon_sym_LBRACE] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), }, [987] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2821), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [988] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(2823), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_preproc_params] = STATE(993), + [sym_preproc_arg] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(563), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2841), }, [989] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2823), + [aux_sym_string_literal_repeat1] = STATE(994), + [anon_sym_DQUOTE] = ACTIONS(2833), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(2843), + [aux_sym_string_literal_token1] = ACTIONS(2843), }, [990] = { - [sym_preproc_params] = STATE(993), - [sym_preproc_arg] = ACTIONS(2825), - [anon_sym_LPAREN] = ACTIONS(549), - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2827), + [sym_parenthesized_expression] = STATE(675), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(2845), }, [991] = { - [sym_parenthesized_expression] = STATE(712), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), + [sym_while_statement] = STATE(996), + [sym_continue_statement] = STATE(996), + [sym_goto_statement] = STATE(996), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(996), + [sym_expression_statement] = STATE(996), + [sym_if_statement] = STATE(996), + [sym_do_statement] = STATE(996), + [sym_for_statement] = STATE(996), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(996), + [sym_return_statement] = STATE(996), + [sym_break_statement] = STATE(996), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(996), + [sym_labeled_statement] = STATE(996), + [sym_case_statement] = STATE(996), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2847), + [anon_sym_default] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [992] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2829), + [anon_sym_LF] = ACTIONS(2849), + [sym_comment] = ACTIONS(183), }, [993] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2831), - [sym_preproc_arg] = ACTIONS(2833), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2851), + [sym_preproc_arg] = ACTIONS(2853), }, [994] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2835), + [aux_sym_string_literal_repeat1] = STATE(166), + [anon_sym_DQUOTE] = ACTIONS(2855), + [sym_comment] = ACTIONS(183), + [sym_escape_sequence] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(495), }, [995] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2837), - [sym_preproc_arg] = ACTIONS(2839), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(998), + [sym_math_expression] = STATE(998), + [sym_cast_expression] = STATE(998), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(998), + [sym_bitwise_expression] = STATE(998), + [sym_equality_expression] = STATE(998), + [sym_sizeof_expression] = STATE(998), + [sym_compound_literal_expression] = STATE(998), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(998), + [sym_concatenated_string] = STATE(998), + [sym_conditional_expression] = STATE(998), + [sym_assignment_expression] = STATE(998), + [sym_relational_expression] = STATE(998), + [sym_shift_expression] = STATE(998), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2857), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2857), + [sym_null] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2861), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [996] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2841), + [sym_while_statement] = STATE(374), + [sym_continue_statement] = STATE(374), + [sym_goto_statement] = STATE(374), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(374), + [sym_expression_statement] = STATE(374), + [sym_if_statement] = STATE(374), + [sym_do_statement] = STATE(374), + [sym_for_statement] = STATE(374), + [sym__expression] = STATE(979), + [sym_comma_expression] = STATE(978), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_switch_statement] = STATE(374), + [sym_return_statement] = STATE(374), + [sym_break_statement] = STATE(374), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(374), + [sym_labeled_statement] = STATE(374), + [sym_case_statement] = STATE(374), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [sym_false] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(1022), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(1028), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(1032), + [sym_true] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [997] = { - [sym_preproc_params] = STATE(999), - [sym_preproc_arg] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(549), - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2845), + [anon_sym_LF] = ACTIONS(2865), + [sym_comment] = ACTIONS(183), }, [998] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2847), + [aux_sym_for_statement_repeat1] = STATE(1000), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [999] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2849), - [sym_preproc_arg] = ACTIONS(2851), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1001), + [sym_math_expression] = STATE(1001), + [sym_cast_expression] = STATE(1001), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1001), + [sym_bitwise_expression] = STATE(1001), + [sym_equality_expression] = STATE(1001), + [sym_sizeof_expression] = STATE(1001), + [sym_compound_literal_expression] = STATE(1001), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1001), + [sym_concatenated_string] = STATE(1001), + [sym_conditional_expression] = STATE(1001), + [sym_assignment_expression] = STATE(1001), + [sym_relational_expression] = STATE(1001), + [sym_shift_expression] = STATE(1001), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2869), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2869), + [sym_null] = ACTIONS(2869), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1000] = { - [sym_comment] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(2853), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2873), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), }, [1001] = { - [sym_identifier] = ACTIONS(2855), - [sym_comment] = ACTIONS(3), + [aux_sym_for_statement_repeat1] = STATE(1003), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2873), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1002] = { - [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(2857), - }, - [1003] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(63), - [sym_math_expression] = STATE(63), - [sym_cast_expression] = STATE(63), - [sym_field_expression] = STATE(35), - [aux_sym_sized_type_specifier_repeat1] = STATE(469), - [sym_struct_specifier] = STATE(67), - [sym__expression] = STATE(63), - [sym_comma_expression] = STATE(64), - [sym_bitwise_expression] = STATE(63), - [sym_equality_expression] = STATE(63), - [sym_type_descriptor] = STATE(769), - [sym_sizeof_expression] = STATE(63), - [sym_compound_literal_expression] = STATE(63), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(63), - [sym_concatenated_string] = STATE(63), - [sym_macro_type_specifier] = STATE(67), - [aux_sym_type_definition_repeat1] = STATE(66), - [sym__type_specifier] = STATE(67), - [sym_union_specifier] = STATE(67), - [sym_type_qualifier] = STATE(66), - [sym_conditional_expression] = STATE(63), - [sym_assignment_expression] = STATE(63), - [sym_relational_expression] = STATE(63), - [sym_shift_expression] = STATE(63), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_sized_type_specifier] = STATE(67), - [sym_enum_specifier] = STATE(67), - [anon_sym_union] = ACTIONS(7), - [sym_null] = ACTIONS(187), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(189), - [anon_sym_short] = ACTIONS(189), - [sym_comment] = ACTIONS(3), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1004), + [sym_math_expression] = STATE(1004), + [sym_cast_expression] = STATE(1004), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1004), + [sym_bitwise_expression] = STATE(1004), + [sym_equality_expression] = STATE(1004), + [sym_sizeof_expression] = STATE(1004), + [sym_compound_literal_expression] = STATE(1004), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1004), + [sym_concatenated_string] = STATE(1004), + [sym_conditional_expression] = STATE(1004), + [sym_assignment_expression] = STATE(1004), + [sym_relational_expression] = STATE(1004), + [sym_shift_expression] = STATE(1004), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2875), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(191), - [sym_true] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(193), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [sym_false] = ACTIONS(187), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(195), - [anon_sym_signed] = ACTIONS(189), - [anon_sym_long] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2875), + [sym_null] = ACTIONS(2875), + [anon_sym_RPAREN] = ACTIONS(2873), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [1004] = { - [sym_identifier] = ACTIONS(2859), + [1003] = { + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2879), [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), + }, + [1004] = { + [aux_sym_for_statement_repeat1] = STATE(1005), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2879), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1005] = { - [sym_string_literal] = STATE(771), - [anon_sym_union] = ACTIONS(219), - [anon_sym_unsigned] = ACTIONS(219), - [anon_sym_restrict] = ACTIONS(219), - [anon_sym_short] = ACTIONS(219), - [anon_sym_static] = ACTIONS(219), - [anon_sym_volatile] = ACTIONS(219), - [anon_sym_register] = ACTIONS(219), - [anon_sym_extern] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(219), - [anon_sym_signed] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(219), - [anon_sym_long] = ACTIONS(219), - [sym_identifier] = ACTIONS(219), - [anon_sym_const] = ACTIONS(219), - [anon_sym__Atomic] = ACTIONS(219), - [sym_primitive_type] = ACTIONS(219), - [anon_sym_auto] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(219), - [anon_sym___attribute__] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(79), + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(2881), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), }, [1006] = { - [sym_parenthesized_expression] = STATE(773), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(227), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2883), + [sym_preproc_arg] = ACTIONS(2885), }, [1007] = { - [sym_identifier] = ACTIONS(2861), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2887), + [sym_comment] = ACTIONS(183), }, [1008] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(63), - [sym_math_expression] = STATE(63), - [sym_cast_expression] = STATE(63), - [sym_field_expression] = STATE(35), - [aux_sym_sized_type_specifier_repeat1] = STATE(469), - [sym_struct_specifier] = STATE(67), - [sym__expression] = STATE(63), - [sym_comma_expression] = STATE(64), - [sym_bitwise_expression] = STATE(63), - [sym_equality_expression] = STATE(63), - [sym_type_descriptor] = STATE(779), - [sym_sizeof_expression] = STATE(63), - [sym_compound_literal_expression] = STATE(63), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(63), - [sym_concatenated_string] = STATE(63), - [sym_macro_type_specifier] = STATE(67), - [aux_sym_type_definition_repeat1] = STATE(66), - [sym__type_specifier] = STATE(67), - [sym_union_specifier] = STATE(67), - [sym_type_qualifier] = STATE(66), - [sym_conditional_expression] = STATE(63), - [sym_assignment_expression] = STATE(63), - [sym_relational_expression] = STATE(63), - [sym_shift_expression] = STATE(63), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_sized_type_specifier] = STATE(67), - [sym_enum_specifier] = STATE(67), - [anon_sym_union] = ACTIONS(7), - [sym_null] = ACTIONS(187), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(189), - [anon_sym_short] = ACTIONS(189), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(191), - [sym_true] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(193), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_struct] = ACTIONS(59), - [sym_false] = ACTIONS(187), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(195), - [anon_sym_signed] = ACTIONS(189), - [anon_sym_long] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(2889), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1009] = { - [anon_sym_while] = ACTIONS(2863), + [anon_sym_RPAREN] = ACTIONS(2889), [sym_comment] = ACTIONS(3), }, [1010] = { - [sym_array_type_declarator] = STATE(783), - [sym_pointer_type_declarator] = STATE(783), - [sym_function_type_declarator] = STATE(783), - [sym__type_declarator] = STATE(783), - [sym_identifier] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), - [sym_comment] = ACTIONS(3), + [sym_preproc_params] = STATE(1013), + [sym_preproc_arg] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(563), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2893), }, [1011] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(842), - [sym_math_expression] = STATE(842), - [sym_cast_expression] = STATE(842), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(842), - [sym_comma_expression] = STATE(843), - [sym_bitwise_expression] = STATE(842), - [sym_equality_expression] = STATE(842), - [sym_sizeof_expression] = STATE(842), - [sym_compound_literal_expression] = STATE(842), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(842), - [sym_concatenated_string] = STATE(842), - [sym_conditional_expression] = STATE(842), - [sym_assignment_expression] = STATE(842), - [sym_relational_expression] = STATE(842), - [sym_shift_expression] = STATE(842), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2867), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2865), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_parenthesized_expression] = STATE(726), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(251), }, [1012] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(791), - [sym_math_expression] = STATE(791), - [sym_cast_expression] = STATE(791), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(791), - [sym_bitwise_expression] = STATE(791), - [sym_equality_expression] = STATE(791), - [sym_sizeof_expression] = STATE(791), - [sym_compound_literal_expression] = STATE(791), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(791), - [sym_concatenated_string] = STATE(791), - [sym_conditional_expression] = STATE(791), - [sym_assignment_expression] = STATE(791), - [sym_relational_expression] = STATE(791), - [sym_shift_expression] = STATE(791), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2871), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2869), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LF] = ACTIONS(2895), + [sym_comment] = ACTIONS(183), }, [1013] = { - [sym_identifier] = ACTIONS(2873), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2897), + [sym_preproc_arg] = ACTIONS(2899), }, [1014] = { - [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(2875), + [anon_sym_LF] = ACTIONS(2901), + [sym_comment] = ACTIONS(183), }, [1015] = { - [sym_array_type_declarator] = STATE(798), - [sym_pointer_type_declarator] = STATE(798), - [sym_function_type_declarator] = STATE(798), - [sym__type_declarator] = STATE(798), - [sym_identifier] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2903), + [sym_preproc_arg] = ACTIONS(2905), }, [1016] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1017), - [sym_math_expression] = STATE(1017), - [sym_cast_expression] = STATE(1017), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1017), - [sym_bitwise_expression] = STATE(1017), - [sym_equality_expression] = STATE(1017), - [sym_sizeof_expression] = STATE(1017), - [sym_compound_literal_expression] = STATE(1017), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1017), - [sym_concatenated_string] = STATE(1017), - [sym_conditional_expression] = STATE(1017), - [sym_assignment_expression] = STATE(1017), - [sym_relational_expression] = STATE(1017), - [sym_shift_expression] = STATE(1017), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2877), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2879), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2877), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LF] = ACTIONS(2907), + [sym_comment] = ACTIONS(183), }, [1017] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_preproc_params] = STATE(1019), + [sym_preproc_arg] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(563), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2911), }, [1018] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1019), - [sym_math_expression] = STATE(1019), - [sym_cast_expression] = STATE(1019), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1019), - [sym_bitwise_expression] = STATE(1019), - [sym_equality_expression] = STATE(1019), - [sym_sizeof_expression] = STATE(1019), - [sym_compound_literal_expression] = STATE(1019), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1019), - [sym_concatenated_string] = STATE(1019), - [sym_conditional_expression] = STATE(1019), - [sym_assignment_expression] = STATE(1019), - [sym_relational_expression] = STATE(1019), - [sym_shift_expression] = STATE(1019), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2885), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LF] = ACTIONS(2913), + [sym_comment] = ACTIONS(183), }, [1019] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_comment] = ACTIONS(183), + [anon_sym_LF] = ACTIONS(2915), + [sym_preproc_arg] = ACTIONS(2917), }, [1020] = { - [sym_identifier] = ACTIONS(2891), - [sym_comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(2919), + [sym_comment] = ACTIONS(183), }, [1021] = { + [sym_identifier] = ACTIONS(2921), [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(2893), }, [1022] = { - [sym_identifier] = ACTIONS(2895), + [sym_preproc_arg] = ACTIONS(2923), [sym_comment] = ACTIONS(3), }, [1023] = { - [sym_string_literal] = STATE(845), - [anon_sym_union] = ACTIONS(219), - [anon_sym_unsigned] = ACTIONS(219), - [anon_sym_restrict] = ACTIONS(219), - [anon_sym_short] = ACTIONS(219), - [anon_sym_static] = ACTIONS(219), - [anon_sym_volatile] = ACTIONS(219), - [anon_sym_register] = ACTIONS(219), - [anon_sym_extern] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(219), - [anon_sym_signed] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(219), - [anon_sym_long] = ACTIONS(219), - [sym_identifier] = ACTIONS(219), - [anon_sym_const] = ACTIONS(219), - [anon_sym__Atomic] = ACTIONS(219), - [sym_primitive_type] = ACTIONS(219), - [anon_sym_auto] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(219), - [anon_sym___attribute__] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(79), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(36), + [aux_sym_sized_type_specifier_repeat1] = STATE(477), + [sym_struct_specifier] = STATE(69), + [sym__expression] = STATE(65), + [sym_comma_expression] = STATE(66), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_type_descriptor] = STATE(782), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(65), + [sym_concatenated_string] = STATE(65), + [sym_macro_type_specifier] = STATE(69), + [aux_sym_type_definition_repeat1] = STATE(68), + [sym__type_specifier] = STATE(69), + [sym_union_specifier] = STATE(69), + [sym_type_qualifier] = STATE(68), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_sized_type_specifier] = STATE(69), + [sym_enum_specifier] = STATE(69), + [anon_sym_union] = ACTIONS(7), + [sym_false] = ACTIONS(207), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(209), + [anon_sym_unsigned] = ACTIONS(211), + [anon_sym_short] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(213), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(215), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [sym_true] = ACTIONS(207), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(207), + [anon_sym_signed] = ACTIONS(211), + [anon_sym_long] = ACTIONS(211), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1024] = { - [sym_parenthesized_expression] = STATE(846), + [sym_identifier] = ACTIONS(2925), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(227), }, [1025] = { - [sym_identifier] = ACTIONS(2897), + [sym_string_literal] = STATE(785), + [anon_sym_union] = ACTIONS(245), + [anon_sym_unsigned] = ACTIONS(245), + [anon_sym_restrict] = ACTIONS(245), + [anon_sym_short] = ACTIONS(245), + [anon_sym_static] = ACTIONS(245), + [anon_sym_volatile] = ACTIONS(245), + [anon_sym_register] = ACTIONS(245), + [anon_sym_extern] = ACTIONS(245), + [sym_identifier] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(245), + [anon_sym_signed] = ACTIONS(245), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_long] = ACTIONS(245), + [anon_sym_const] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(245), + [sym_primitive_type] = ACTIONS(245), + [anon_sym_auto] = ACTIONS(245), + [anon_sym_L] = ACTIONS(249), + [anon_sym_inline] = ACTIONS(245), + [anon_sym___attribute__] = ACTIONS(245), [sym_comment] = ACTIONS(3), }, [1026] = { - [anon_sym_while] = ACTIONS(2899), + [sym_parenthesized_expression] = STATE(787), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(255), }, [1027] = { - [sym_array_type_declarator] = STATE(855), - [sym_pointer_type_declarator] = STATE(855), - [sym_function_type_declarator] = STATE(855), - [sym__type_declarator] = STATE(855), - [sym_identifier] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), + [sym_identifier] = ACTIONS(2927), [sym_comment] = ACTIONS(3), }, [1028] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(913), - [sym_math_expression] = STATE(913), - [sym_cast_expression] = STATE(913), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(913), - [sym_comma_expression] = STATE(914), - [sym_bitwise_expression] = STATE(913), - [sym_equality_expression] = STATE(913), - [sym_sizeof_expression] = STATE(913), - [sym_compound_literal_expression] = STATE(913), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(913), - [sym_concatenated_string] = STATE(913), - [sym_conditional_expression] = STATE(913), - [sym_assignment_expression] = STATE(913), - [sym_relational_expression] = STATE(913), - [sym_shift_expression] = STATE(913), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2901), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2903), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(65), + [sym_math_expression] = STATE(65), + [sym_cast_expression] = STATE(65), + [sym_field_expression] = STATE(36), + [aux_sym_sized_type_specifier_repeat1] = STATE(477), + [sym_struct_specifier] = STATE(69), + [sym__expression] = STATE(65), + [sym_comma_expression] = STATE(66), + [sym_bitwise_expression] = STATE(65), + [sym_equality_expression] = STATE(65), + [sym_type_descriptor] = STATE(794), + [sym_sizeof_expression] = STATE(65), + [sym_compound_literal_expression] = STATE(65), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(65), + [sym_concatenated_string] = STATE(65), + [sym_macro_type_specifier] = STATE(69), + [aux_sym_type_definition_repeat1] = STATE(68), + [sym__type_specifier] = STATE(69), + [sym_union_specifier] = STATE(69), + [sym_type_qualifier] = STATE(68), + [sym_conditional_expression] = STATE(65), + [sym_assignment_expression] = STATE(65), + [sym_relational_expression] = STATE(65), + [sym_shift_expression] = STATE(65), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_sized_type_specifier] = STATE(69), + [sym_enum_specifier] = STATE(69), + [anon_sym_union] = ACTIONS(7), + [sym_false] = ACTIONS(207), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(209), + [anon_sym_unsigned] = ACTIONS(211), + [anon_sym_short] = ACTIONS(211), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2901), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_const] = ACTIONS(13), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(213), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(215), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [sym_true] = ACTIONS(207), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(207), + [anon_sym_signed] = ACTIONS(211), + [anon_sym_long] = ACTIONS(211), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1029] = { - [sym_identifier] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2929), [sym_comment] = ACTIONS(3), }, [1030] = { + [sym_array_type_declarator] = STATE(798), + [sym_pointer_type_declarator] = STATE(798), + [sym_function_type_declarator] = STATE(798), + [sym__type_declarator] = STATE(798), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(481), [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(2907), + [sym_identifier] = ACTIONS(483), }, [1031] = { - [sym_array_type_declarator] = STATE(869), - [sym_pointer_type_declarator] = STATE(869), - [sym_function_type_declarator] = STATE(869), - [sym__type_declarator] = STATE(869), - [sym_identifier] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(281), [sym_comment] = ACTIONS(3), }, [1032] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1033), - [sym_math_expression] = STATE(1033), - [sym_cast_expression] = STATE(1033), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1033), - [sym_bitwise_expression] = STATE(1033), - [sym_equality_expression] = STATE(1033), - [sym_sizeof_expression] = STATE(1033), - [sym_compound_literal_expression] = STATE(1033), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1033), - [sym_concatenated_string] = STATE(1033), - [sym_conditional_expression] = STATE(1033), - [sym_assignment_expression] = STATE(1033), - [sym_relational_expression] = STATE(1033), - [sym_shift_expression] = STATE(1033), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2909), - [sym_comment] = ACTIONS(3), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(857), + [sym_math_expression] = STATE(857), + [sym_cast_expression] = STATE(857), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(857), + [sym_comma_expression] = STATE(858), + [sym_bitwise_expression] = STATE(857), + [sym_equality_expression] = STATE(857), + [sym_sizeof_expression] = STATE(857), + [sym_compound_literal_expression] = STATE(857), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(857), + [sym_concatenated_string] = STATE(857), + [sym_conditional_expression] = STATE(857), + [sym_assignment_expression] = STATE(857), + [sym_relational_expression] = STATE(857), + [sym_shift_expression] = STATE(857), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2931), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2909), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2931), + [sym_null] = ACTIONS(2931), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1033] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [1034] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1035), - [sym_math_expression] = STATE(1035), - [sym_cast_expression] = STATE(1035), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1035), - [sym_bitwise_expression] = STATE(1035), - [sym_equality_expression] = STATE(1035), - [sym_sizeof_expression] = STATE(1035), - [sym_compound_literal_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1035), - [sym_concatenated_string] = STATE(1035), - [sym_conditional_expression] = STATE(1035), - [sym_assignment_expression] = STATE(1035), - [sym_relational_expression] = STATE(1035), - [sym_shift_expression] = STATE(1035), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(807), + [sym_math_expression] = STATE(807), + [sym_cast_expression] = STATE(807), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(807), + [sym_bitwise_expression] = STATE(807), + [sym_equality_expression] = STATE(807), + [sym_sizeof_expression] = STATE(807), + [sym_compound_literal_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(807), + [sym_concatenated_string] = STATE(807), + [sym_conditional_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_relational_expression] = STATE(807), + [sym_shift_expression] = STATE(807), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2935), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2917), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2935), + [sym_null] = ACTIONS(2935), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1034] = { + [sym_identifier] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), }, [1035] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_preproc_arg] = ACTIONS(2941), + [sym_comment] = ACTIONS(3), }, [1036] = { - [sym_identifier] = ACTIONS(2923), + [sym_array_type_declarator] = STATE(814), + [sym_pointer_type_declarator] = STATE(814), + [sym_function_type_declarator] = STATE(814), + [sym__type_declarator] = STATE(814), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(481), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(483), }, [1037] = { - [sym_comment] = ACTIONS(3), - [sym_preproc_arg] = ACTIONS(2925), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1038), + [sym_math_expression] = STATE(1038), + [sym_cast_expression] = STATE(1038), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1038), + [sym_bitwise_expression] = STATE(1038), + [sym_equality_expression] = STATE(1038), + [sym_sizeof_expression] = STATE(1038), + [sym_compound_literal_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1038), + [sym_concatenated_string] = STATE(1038), + [sym_conditional_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_relational_expression] = STATE(1038), + [sym_shift_expression] = STATE(1038), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2943), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2943), + [sym_null] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2947), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1038] = { - [sym_identifier] = ACTIONS(2927), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1039] = { - [sym_string_literal] = STATE(916), - [anon_sym_union] = ACTIONS(219), - [anon_sym_unsigned] = ACTIONS(219), - [anon_sym_restrict] = ACTIONS(219), - [anon_sym_short] = ACTIONS(219), - [anon_sym_static] = ACTIONS(219), - [anon_sym_volatile] = ACTIONS(219), - [anon_sym_register] = ACTIONS(219), - [anon_sym_extern] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [anon_sym_struct] = ACTIONS(219), - [anon_sym_signed] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(219), - [anon_sym_long] = ACTIONS(219), - [sym_identifier] = ACTIONS(219), - [anon_sym_const] = ACTIONS(219), - [anon_sym__Atomic] = ACTIONS(219), - [sym_primitive_type] = ACTIONS(219), - [anon_sym_auto] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(219), - [anon_sym___attribute__] = ACTIONS(219), - [anon_sym_DQUOTE] = ACTIONS(79), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1040), + [sym_math_expression] = STATE(1040), + [sym_cast_expression] = STATE(1040), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1040), + [sym_bitwise_expression] = STATE(1040), + [sym_equality_expression] = STATE(1040), + [sym_sizeof_expression] = STATE(1040), + [sym_compound_literal_expression] = STATE(1040), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1040), + [sym_concatenated_string] = STATE(1040), + [sym_conditional_expression] = STATE(1040), + [sym_assignment_expression] = STATE(1040), + [sym_relational_expression] = STATE(1040), + [sym_shift_expression] = STATE(1040), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2951), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2953), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2951), + [sym_null] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1040] = { - [sym_parenthesized_expression] = STATE(917), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(227), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1041] = { - [sym_identifier] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2957), [sym_comment] = ACTIONS(3), }, [1042] = { - [anon_sym_while] = ACTIONS(2931), + [sym_preproc_arg] = ACTIONS(2959), [sym_comment] = ACTIONS(3), }, [1043] = { - [sym_array_type_declarator] = STATE(925), - [sym_pointer_type_declarator] = STATE(925), - [sym_function_type_declarator] = STATE(925), - [sym__type_declarator] = STATE(925), - [sym_identifier] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), + [sym_identifier] = ACTIONS(2961), [sym_comment] = ACTIONS(3), }, [1044] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(966), - [sym_math_expression] = STATE(966), - [sym_cast_expression] = STATE(966), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(966), - [sym_comma_expression] = STATE(967), - [sym_bitwise_expression] = STATE(966), - [sym_equality_expression] = STATE(966), - [sym_sizeof_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(966), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(966), - [sym_concatenated_string] = STATE(966), - [sym_conditional_expression] = STATE(966), - [sym_assignment_expression] = STATE(966), - [sym_relational_expression] = STATE(966), - [sym_shift_expression] = STATE(966), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2933), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2935), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2933), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2933), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_string_literal] = STATE(861), + [anon_sym_union] = ACTIONS(245), + [anon_sym_unsigned] = ACTIONS(245), + [anon_sym_restrict] = ACTIONS(245), + [anon_sym_short] = ACTIONS(245), + [anon_sym_static] = ACTIONS(245), + [anon_sym_volatile] = ACTIONS(245), + [anon_sym_register] = ACTIONS(245), + [anon_sym_extern] = ACTIONS(245), + [sym_identifier] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(245), + [anon_sym_signed] = ACTIONS(245), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_long] = ACTIONS(245), + [anon_sym_const] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(245), + [sym_primitive_type] = ACTIONS(245), + [anon_sym_auto] = ACTIONS(245), + [anon_sym_L] = ACTIONS(249), + [anon_sym_inline] = ACTIONS(245), + [anon_sym___attribute__] = ACTIONS(245), + [sym_comment] = ACTIONS(3), }, [1045] = { - [sym_array_type_declarator] = STATE(935), - [sym_pointer_type_declarator] = STATE(935), - [sym_function_type_declarator] = STATE(935), - [sym__type_declarator] = STATE(935), - [sym_identifier] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_LPAREN2] = ACTIONS(473), + [sym_parenthesized_expression] = STATE(862), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(255), }, [1046] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1047), - [sym_math_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1047), - [sym_bitwise_expression] = STATE(1047), - [sym_equality_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_compound_literal_expression] = STATE(1047), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1047), - [sym_concatenated_string] = STATE(1047), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_relational_expression] = STATE(1047), - [sym_shift_expression] = STATE(1047), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2937), + [sym_identifier] = ACTIONS(2963), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2937), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2937), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2941), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), }, [1047] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_while] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), }, [1048] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1049), - [sym_math_expression] = STATE(1049), - [sym_cast_expression] = STATE(1049), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1049), - [sym_bitwise_expression] = STATE(1049), - [sym_equality_expression] = STATE(1049), - [sym_sizeof_expression] = STATE(1049), - [sym_compound_literal_expression] = STATE(1049), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1049), - [sym_concatenated_string] = STATE(1049), - [sym_conditional_expression] = STATE(1049), - [sym_assignment_expression] = STATE(1049), - [sym_relational_expression] = STATE(1049), - [sym_shift_expression] = STATE(1049), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2945), + [sym_array_type_declarator] = STATE(872), + [sym_pointer_type_declarator] = STATE(872), + [sym_function_type_declarator] = STATE(872), + [sym__type_declarator] = STATE(872), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(481), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2945), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2945), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_identifier] = ACTIONS(483), }, [1049] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), }, [1050] = { - [sym_identifier] = ACTIONS(2951), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(929), + [sym_math_expression] = STATE(929), + [sym_cast_expression] = STATE(929), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(929), + [sym_comma_expression] = STATE(930), + [sym_bitwise_expression] = STATE(929), + [sym_equality_expression] = STATE(929), + [sym_sizeof_expression] = STATE(929), + [sym_compound_literal_expression] = STATE(929), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(929), + [sym_concatenated_string] = STATE(929), + [sym_conditional_expression] = STATE(929), + [sym_assignment_expression] = STATE(929), + [sym_relational_expression] = STATE(929), + [sym_shift_expression] = STATE(929), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2969), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2969), + [sym_null] = ACTIONS(2969), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1051] = { - [sym_parenthesized_expression] = STATE(968), + [sym_identifier] = ACTIONS(2973), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(227), }, [1052] = { - [sym_identifier] = ACTIONS(2953), + [sym_preproc_arg] = ACTIONS(2975), [sym_comment] = ACTIONS(3), }, [1053] = { - [anon_sym_while] = ACTIONS(2955), + [sym_array_type_declarator] = STATE(887), + [sym_pointer_type_declarator] = STATE(887), + [sym_function_type_declarator] = STATE(887), + [sym__type_declarator] = STATE(887), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(481), [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(483), }, [1054] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(988), - [sym_math_expression] = STATE(988), - [sym_cast_expression] = STATE(988), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(988), - [sym_comma_expression] = STATE(989), - [sym_bitwise_expression] = STATE(988), - [sym_equality_expression] = STATE(988), - [sym_sizeof_expression] = STATE(988), - [sym_compound_literal_expression] = STATE(988), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(988), - [sym_concatenated_string] = STATE(988), - [sym_conditional_expression] = STATE(988), - [sym_assignment_expression] = STATE(988), - [sym_relational_expression] = STATE(988), - [sym_shift_expression] = STATE(988), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2959), - [sym_comment] = ACTIONS(3), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [sym_false] = ACTIONS(2957), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1055), + [sym_math_expression] = STATE(1055), + [sym_cast_expression] = STATE(1055), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1055), + [sym_bitwise_expression] = STATE(1055), + [sym_equality_expression] = STATE(1055), + [sym_sizeof_expression] = STATE(1055), + [sym_compound_literal_expression] = STATE(1055), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1055), + [sym_concatenated_string] = STATE(1055), + [sym_conditional_expression] = STATE(1055), + [sym_assignment_expression] = STATE(1055), + [sym_relational_expression] = STATE(1055), + [sym_shift_expression] = STATE(1055), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2977), [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [1055] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1056), - [sym_math_expression] = STATE(1056), - [sym_cast_expression] = STATE(1056), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1056), - [sym_bitwise_expression] = STATE(1056), - [sym_equality_expression] = STATE(1056), - [sym_sizeof_expression] = STATE(1056), - [sym_compound_literal_expression] = STATE(1056), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1056), - [sym_concatenated_string] = STATE(1056), - [sym_conditional_expression] = STATE(1056), - [sym_assignment_expression] = STATE(1056), - [sym_relational_expression] = STATE(1056), - [sym_shift_expression] = STATE(1056), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2961), - [sym_comment] = ACTIONS(3), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2979), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2961), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2977), + [sym_null] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [1056] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [1055] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, - [1057] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1058), - [sym_math_expression] = STATE(1058), - [sym_cast_expression] = STATE(1058), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1058), - [sym_bitwise_expression] = STATE(1058), - [sym_equality_expression] = STATE(1058), - [sym_sizeof_expression] = STATE(1058), - [sym_compound_literal_expression] = STATE(1058), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1058), - [sym_concatenated_string] = STATE(1058), - [sym_conditional_expression] = STATE(1058), - [sym_assignment_expression] = STATE(1058), - [sym_relational_expression] = STATE(1058), - [sym_shift_expression] = STATE(1058), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), + [1056] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1057), + [sym_math_expression] = STATE(1057), + [sym_cast_expression] = STATE(1057), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1057), + [sym_bitwise_expression] = STATE(1057), + [sym_equality_expression] = STATE(1057), + [sym_sizeof_expression] = STATE(1057), + [sym_compound_literal_expression] = STATE(1057), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1057), + [sym_concatenated_string] = STATE(1057), + [sym_conditional_expression] = STATE(1057), + [sym_assignment_expression] = STATE(1057), + [sym_relational_expression] = STATE(1057), + [sym_shift_expression] = STATE(1057), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(2985), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(2969), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(2969), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(2985), + [sym_null] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1057] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1058] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_identifier] = ACTIONS(2991), + [sym_comment] = ACTIONS(3), }, [1059] = { - [sym_identifier] = ACTIONS(2975), + [sym_preproc_arg] = ACTIONS(2993), [sym_comment] = ACTIONS(3), }, [1060] = { - [anon_sym_while] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2995), [sym_comment] = ACTIONS(3), }, [1061] = { - [sym_identifier] = ACTIONS(2979), + [sym_string_literal] = STATE(933), + [anon_sym_union] = ACTIONS(245), + [anon_sym_unsigned] = ACTIONS(245), + [anon_sym_restrict] = ACTIONS(245), + [anon_sym_short] = ACTIONS(245), + [anon_sym_static] = ACTIONS(245), + [anon_sym_volatile] = ACTIONS(245), + [anon_sym_register] = ACTIONS(245), + [anon_sym_extern] = ACTIONS(245), + [sym_identifier] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(245), + [anon_sym_signed] = ACTIONS(245), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_long] = ACTIONS(245), + [anon_sym_const] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(245), + [sym_primitive_type] = ACTIONS(245), + [anon_sym_auto] = ACTIONS(245), + [anon_sym_L] = ACTIONS(249), + [anon_sym_inline] = ACTIONS(245), + [anon_sym___attribute__] = ACTIONS(245), [sym_comment] = ACTIONS(3), }, [1062] = { - [sym_while_statement] = STATE(1009), - [sym_continue_statement] = STATE(1009), - [sym_goto_statement] = STATE(1009), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(1009), - [sym_expression_statement] = STATE(1009), - [sym_if_statement] = STATE(1009), - [sym_do_statement] = STATE(1009), - [sym_for_statement] = STATE(1009), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(1009), - [sym_return_statement] = STATE(1009), - [sym_break_statement] = STATE(1009), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(1009), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [sym_parenthesized_expression] = STATE(934), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(255), }, [1063] = { - [sym_struct_specifier] = STATE(1010), - [sym_macro_type_specifier] = STATE(1010), - [sym_type_qualifier] = STATE(1064), - [aux_sym_type_definition_repeat1] = STATE(1064), - [sym_union_specifier] = STATE(1010), - [sym__type_specifier] = STATE(1010), - [sym_sized_type_specifier] = STATE(1010), - [sym_enum_specifier] = STATE(1010), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_identifier] = ACTIONS(197), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_volatile] = ACTIONS(13), + [sym_identifier] = ACTIONS(2997), [sym_comment] = ACTIONS(3), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), }, [1064] = { - [sym_struct_specifier] = STATE(1015), - [sym_macro_type_specifier] = STATE(1015), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_union_specifier] = STATE(1015), - [sym__type_specifier] = STATE(1015), - [sym_sized_type_specifier] = STATE(1015), - [sym_enum_specifier] = STATE(1015), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_identifier] = ACTIONS(197), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_volatile] = ACTIONS(13), + [anon_sym_while] = ACTIONS(2999), [sym_comment] = ACTIONS(3), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), }, [1065] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1069), - [sym_math_expression] = STATE(1069), - [sym_cast_expression] = STATE(1069), - [sym_declaration] = STATE(1016), - [sym_field_expression] = STATE(35), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym__expression] = STATE(1069), - [sym_bitwise_expression] = STATE(1069), - [sym_equality_expression] = STATE(1069), - [sym_sizeof_expression] = STATE(1069), - [sym__declaration_specifiers] = STATE(162), - [sym_compound_literal_expression] = STATE(1069), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(1069), - [sym_char_literal] = STATE(1069), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_conditional_expression] = STATE(1069), - [sym_assignment_expression] = STATE(1069), - [sym_relational_expression] = STATE(1069), - [sym_shift_expression] = STATE(1069), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_union] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(25), - [sym_null] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_unsigned] = ACTIONS(15), + [sym_array_type_declarator] = STATE(943), + [sym_pointer_type_declarator] = STATE(943), + [sym_function_type_declarator] = STATE(943), + [sym__type_declarator] = STATE(943), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(481), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(25), - [sym_false] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(63), [sym_identifier] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(2989), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(81), }, [1066] = { - [sym_while_statement] = STATE(1094), - [sym_continue_statement] = STATE(1094), - [sym_goto_statement] = STATE(1094), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(1094), - [sym_expression_statement] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_do_statement] = STATE(1094), - [sym_for_statement] = STATE(1094), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(1094), - [sym_return_statement] = STATE(1094), - [sym_break_statement] = STATE(1094), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(1094), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(3001), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), }, [1067] = { - [sym_while_statement] = STATE(180), - [sym_continue_statement] = STATE(180), - [sym_goto_statement] = STATE(180), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(180), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(180), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(180), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(180), - [sym_return_statement] = STATE(180), - [sym_break_statement] = STATE(180), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(180), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(983), + [sym_math_expression] = STATE(983), + [sym_cast_expression] = STATE(983), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(983), + [sym_comma_expression] = STATE(984), + [sym_bitwise_expression] = STATE(983), + [sym_equality_expression] = STATE(983), + [sym_sizeof_expression] = STATE(983), + [sym_compound_literal_expression] = STATE(983), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(983), + [sym_concatenated_string] = STATE(983), + [sym_conditional_expression] = STATE(983), + [sym_assignment_expression] = STATE(983), + [sym_relational_expression] = STATE(983), + [sym_shift_expression] = STATE(983), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3003), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3003), + [sym_null] = ACTIONS(3003), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1068] = { - [sym_while_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(182), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [sym_array_type_declarator] = STATE(954), + [sym_pointer_type_declarator] = STATE(954), + [sym_function_type_declarator] = STATE(954), + [sym__type_declarator] = STATE(954), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(481), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_identifier] = ACTIONS(483), }, [1069] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [1070] = { - [sym_while_statement] = STATE(362), - [sym_continue_statement] = STATE(362), - [sym_goto_statement] = STATE(362), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(362), - [sym_expression_statement] = STATE(362), - [sym_if_statement] = STATE(362), - [sym_do_statement] = STATE(362), - [sym_for_statement] = STATE(362), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(362), - [sym_return_statement] = STATE(362), - [sym_break_statement] = STATE(362), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(362), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1070), + [sym_math_expression] = STATE(1070), + [sym_cast_expression] = STATE(1070), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1070), + [sym_bitwise_expression] = STATE(1070), + [sym_equality_expression] = STATE(1070), + [sym_sizeof_expression] = STATE(1070), + [sym_compound_literal_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1070), + [sym_concatenated_string] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_assignment_expression] = STATE(1070), + [sym_relational_expression] = STATE(1070), + [sym_shift_expression] = STATE(1070), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3007), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3009), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3007), + [sym_null] = ACTIONS(3007), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1070] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1071] = { - [sym_while_statement] = STATE(420), - [sym_continue_statement] = STATE(420), - [sym_goto_statement] = STATE(420), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(420), - [sym_expression_statement] = STATE(420), - [sym_if_statement] = STATE(420), - [sym_do_statement] = STATE(420), - [sym_for_statement] = STATE(420), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(420), - [sym_return_statement] = STATE(420), - [sym_break_statement] = STATE(420), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(420), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1072), + [sym_math_expression] = STATE(1072), + [sym_cast_expression] = STATE(1072), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1072), + [sym_bitwise_expression] = STATE(1072), + [sym_equality_expression] = STATE(1072), + [sym_sizeof_expression] = STATE(1072), + [sym_compound_literal_expression] = STATE(1072), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1072), + [sym_concatenated_string] = STATE(1072), + [sym_conditional_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1072), + [sym_relational_expression] = STATE(1072), + [sym_shift_expression] = STATE(1072), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3015), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3015), + [sym_null] = ACTIONS(3015), + [anon_sym_SEMI] = ACTIONS(3013), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1072] = { - [sym_while_statement] = STATE(451), - [sym_continue_statement] = STATE(451), - [sym_goto_statement] = STATE(451), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(451), - [sym_expression_statement] = STATE(451), - [sym_if_statement] = STATE(451), - [sym_do_statement] = STATE(451), - [sym_for_statement] = STATE(451), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(451), - [sym_return_statement] = STATE(451), - [sym_break_statement] = STATE(451), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(451), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3019), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1073] = { - [sym_while_statement] = STATE(461), - [sym_continue_statement] = STATE(461), - [sym_goto_statement] = STATE(461), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(461), - [sym_expression_statement] = STATE(461), - [sym_if_statement] = STATE(461), - [sym_do_statement] = STATE(461), - [sym_for_statement] = STATE(461), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(461), - [sym_return_statement] = STATE(461), - [sym_break_statement] = STATE(461), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(461), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [sym_identifier] = ACTIONS(3021), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), }, [1074] = { - [sym_while_statement] = STATE(464), - [sym_continue_statement] = STATE(464), - [sym_goto_statement] = STATE(464), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(464), - [sym_expression_statement] = STATE(464), - [sym_if_statement] = STATE(464), - [sym_do_statement] = STATE(464), - [sym_for_statement] = STATE(464), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(464), - [sym_return_statement] = STATE(464), - [sym_break_statement] = STATE(464), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(464), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [sym_parenthesized_expression] = STATE(986), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(255), }, [1075] = { - [sym_while_statement] = STATE(466), - [sym_continue_statement] = STATE(466), - [sym_goto_statement] = STATE(466), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(466), - [sym_expression_statement] = STATE(466), - [sym_if_statement] = STATE(466), - [sym_do_statement] = STATE(466), - [sym_for_statement] = STATE(466), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(466), - [sym_return_statement] = STATE(466), - [sym_break_statement] = STATE(466), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(466), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [sym_identifier] = ACTIONS(3023), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), }, [1076] = { - [sym_while_statement] = STATE(1026), - [sym_continue_statement] = STATE(1026), - [sym_goto_statement] = STATE(1026), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(1026), - [sym_expression_statement] = STATE(1026), - [sym_if_statement] = STATE(1026), - [sym_do_statement] = STATE(1026), - [sym_for_statement] = STATE(1026), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(1026), - [sym_return_statement] = STATE(1026), - [sym_break_statement] = STATE(1026), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(1026), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), + [anon_sym_while] = ACTIONS(3025), [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), }, [1077] = { - [sym_struct_specifier] = STATE(1027), - [sym_macro_type_specifier] = STATE(1027), - [sym_type_qualifier] = STATE(1078), - [aux_sym_type_definition_repeat1] = STATE(1078), - [sym_union_specifier] = STATE(1027), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1027), - [sym_enum_specifier] = STATE(1027), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_identifier] = ACTIONS(197), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_volatile] = ACTIONS(13), + [anon_sym_DQUOTE] = ACTIONS(3027), [sym_comment] = ACTIONS(3), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), }, [1078] = { - [sym_struct_specifier] = STATE(1031), - [sym_macro_type_specifier] = STATE(1031), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_union_specifier] = STATE(1031), - [sym__type_specifier] = STATE(1031), - [sym_sized_type_specifier] = STATE(1031), - [sym_enum_specifier] = STATE(1031), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_identifier] = ACTIONS(197), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_volatile] = ACTIONS(13), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1008), + [sym_math_expression] = STATE(1008), + [sym_cast_expression] = STATE(1008), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1008), + [sym_comma_expression] = STATE(1009), + [sym_bitwise_expression] = STATE(1008), + [sym_equality_expression] = STATE(1008), + [sym_sizeof_expression] = STATE(1008), + [sym_compound_literal_expression] = STATE(1008), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1008), + [sym_concatenated_string] = STATE(1008), + [sym_conditional_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1008), + [sym_relational_expression] = STATE(1008), + [sym_shift_expression] = STATE(1008), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3029), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), [sym_comment] = ACTIONS(3), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3031), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3029), + [sym_null] = ACTIONS(3029), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1079] = { - [sym_pointer_expression] = STATE(35), + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(1080), [sym_math_expression] = STATE(1080), [sym_cast_expression] = STATE(1080), - [sym_declaration] = STATE(1032), - [sym_field_expression] = STATE(35), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), + [sym_field_expression] = STATE(36), [sym__expression] = STATE(1080), [sym_bitwise_expression] = STATE(1080), [sym_equality_expression] = STATE(1080), [sym_sizeof_expression] = STATE(1080), - [sym__declaration_specifiers] = STATE(162), [sym_compound_literal_expression] = STATE(1080), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(1080), + [sym_parenthesized_expression] = STATE(36), [sym_char_literal] = STATE(1080), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), + [sym_concatenated_string] = STATE(1080), [sym_conditional_expression] = STATE(1080), [sym_assignment_expression] = STATE(1080), [sym_relational_expression] = STATE(1080), [sym_shift_expression] = STATE(1080), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_union] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(25), - [sym_null] = ACTIONS(2997), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_unsigned] = ACTIONS(15), - [sym_comment] = ACTIONS(3), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3033), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_number_literal] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3035), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(25), - [sym_false] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3033), + [sym_null] = ACTIONS(3033), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1080] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3039), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1081] = { - [sym_while_statement] = STATE(1042), - [sym_continue_statement] = STATE(1042), - [sym_goto_statement] = STATE(1042), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(1042), - [sym_expression_statement] = STATE(1042), - [sym_if_statement] = STATE(1042), - [sym_do_statement] = STATE(1042), - [sym_for_statement] = STATE(1042), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(1042), - [sym_return_statement] = STATE(1042), - [sym_break_statement] = STATE(1042), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(1042), - [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(23), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1082), + [sym_math_expression] = STATE(1082), + [sym_cast_expression] = STATE(1082), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1082), + [sym_bitwise_expression] = STATE(1082), + [sym_equality_expression] = STATE(1082), + [sym_sizeof_expression] = STATE(1082), + [sym_compound_literal_expression] = STATE(1082), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1082), + [sym_concatenated_string] = STATE(1082), + [sym_conditional_expression] = STATE(1082), + [sym_assignment_expression] = STATE(1082), + [sym_relational_expression] = STATE(1082), + [sym_shift_expression] = STATE(1082), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3041), + [sym_identifier] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3043), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), - }, - [1082] = { - [sym_struct_specifier] = STATE(1043), - [sym_macro_type_specifier] = STATE(1043), - [sym_type_qualifier] = STATE(1083), - [aux_sym_type_definition_repeat1] = STATE(1083), - [sym_union_specifier] = STATE(1043), - [sym__type_specifier] = STATE(1043), - [sym_sized_type_specifier] = STATE(1043), - [sym_enum_specifier] = STATE(1043), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_identifier] = ACTIONS(197), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_volatile] = ACTIONS(13), - [sym_comment] = ACTIONS(3), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(3005), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3041), + [sym_null] = ACTIONS(3041), + [anon_sym_SEMI] = ACTIONS(3039), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, - [1083] = { - [sym_struct_specifier] = STATE(1045), - [sym_macro_type_specifier] = STATE(1045), - [sym_type_qualifier] = STATE(147), - [aux_sym_type_definition_repeat1] = STATE(147), - [sym_union_specifier] = STATE(1045), - [sym__type_specifier] = STATE(1045), - [sym_sized_type_specifier] = STATE(1045), - [sym_enum_specifier] = STATE(1045), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_identifier] = ACTIONS(197), - [anon_sym_union] = ACTIONS(7), - [anon_sym_const] = ACTIONS(13), - [anon_sym_unsigned] = ACTIONS(15), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_long] = ACTIONS(15), - [anon_sym_short] = ACTIONS(15), - [anon_sym_volatile] = ACTIONS(13), + [1082] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [1083] = { + [sym_identifier] = ACTIONS(3047), [sym_comment] = ACTIONS(3), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_enum] = ACTIONS(63), }, [1084] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1085), - [sym_math_expression] = STATE(1085), - [sym_cast_expression] = STATE(1085), - [sym_declaration] = STATE(1046), - [sym_field_expression] = STATE(35), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym__expression] = STATE(1085), - [sym_bitwise_expression] = STATE(1085), - [sym_equality_expression] = STATE(1085), - [sym_sizeof_expression] = STATE(1085), - [sym__declaration_specifiers] = STATE(162), - [sym_compound_literal_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(1085), - [sym_char_literal] = STATE(1085), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_conditional_expression] = STATE(1085), - [sym_assignment_expression] = STATE(1085), - [sym_relational_expression] = STATE(1085), - [sym_shift_expression] = STATE(1085), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_union] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(25), - [sym_null] = ACTIONS(3009), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_unsigned] = ACTIONS(15), + [anon_sym_while] = ACTIONS(3049), [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), - [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_number_literal] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(25), - [sym_false] = ACTIONS(3009), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(81), }, [1085] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_identifier] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), }, [1086] = { - [sym_while_statement] = STATE(1053), - [sym_continue_statement] = STATE(1053), - [sym_goto_statement] = STATE(1053), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(1053), - [sym_expression_statement] = STATE(1053), - [sym_if_statement] = STATE(1053), - [sym_do_statement] = STATE(1053), - [sym_for_statement] = STATE(1053), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(1053), - [sym_return_statement] = STATE(1053), - [sym_break_statement] = STATE(1053), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(1053), + [sym_while_statement] = STATE(1029), + [sym_continue_statement] = STATE(1029), + [sym_goto_statement] = STATE(1029), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(1029), + [sym_expression_statement] = STATE(1029), + [sym_if_statement] = STATE(1029), + [sym_do_statement] = STATE(1029), + [sym_for_statement] = STATE(1029), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(1029), + [sym_return_statement] = STATE(1029), + [sym_break_statement] = STATE(1029), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(1029), [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1087] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1088), - [sym_math_expression] = STATE(1088), - [sym_cast_expression] = STATE(1088), - [sym_declaration] = STATE(1055), - [sym_field_expression] = STATE(35), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym__expression] = STATE(1088), - [sym_bitwise_expression] = STATE(1088), - [sym_equality_expression] = STATE(1088), - [sym_sizeof_expression] = STATE(1088), - [sym__declaration_specifiers] = STATE(162), - [sym_compound_literal_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(1088), - [sym_char_literal] = STATE(1088), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_conditional_expression] = STATE(1088), - [sym_assignment_expression] = STATE(1088), - [sym_relational_expression] = STATE(1088), - [sym_shift_expression] = STATE(1088), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [anon_sym___attribute__] = ACTIONS(19), + [sym_struct_specifier] = STATE(1030), + [sym_macro_type_specifier] = STATE(1030), + [sym_type_qualifier] = STATE(1090), + [aux_sym_type_definition_repeat1] = STATE(1090), + [sym_union_specifier] = STATE(1030), + [sym__type_specifier] = STATE(1030), + [sym_sized_type_specifier] = STATE(1030), + [sym_enum_specifier] = STATE(1030), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [anon_sym_long] = ACTIONS(17), [anon_sym_union] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(25), - [sym_null] = ACTIONS(3017), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_unsigned] = ACTIONS(15), - [sym_comment] = ACTIONS(3), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(31), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(217), + [anon_sym_short] = ACTIONS(17), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_number_literal] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(25), - [sym_false] = ACTIONS(3017), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(3053), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), }, [1088] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), - }, - [1089] = { - [sym_while_statement] = STATE(1060), - [sym_continue_statement] = STATE(1060), - [sym_goto_statement] = STATE(1060), - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(42), - [sym_math_expression] = STATE(42), - [sym_cast_expression] = STATE(42), - [sym_field_expression] = STATE(35), - [sym_compound_statement] = STATE(1060), - [sym_expression_statement] = STATE(1060), - [sym_if_statement] = STATE(1060), - [sym_do_statement] = STATE(1060), - [sym_for_statement] = STATE(1060), - [sym__expression] = STATE(42), - [sym_comma_expression] = STATE(37), - [sym_bitwise_expression] = STATE(42), - [sym_equality_expression] = STATE(42), - [sym_sizeof_expression] = STATE(42), - [sym_compound_literal_expression] = STATE(42), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(42), - [sym_concatenated_string] = STATE(42), - [sym_switch_statement] = STATE(1060), - [sym_return_statement] = STATE(1060), - [sym_break_statement] = STATE(1060), - [sym_conditional_expression] = STATE(42), - [sym_assignment_expression] = STATE(42), - [sym_relational_expression] = STATE(42), - [sym_shift_expression] = STATE(42), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_labeled_statement] = STATE(1060), + [sym_while_statement] = STATE(141), + [sym_continue_statement] = STATE(141), + [sym_goto_statement] = STATE(141), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(141), + [sym_expression_statement] = STATE(141), + [sym_if_statement] = STATE(141), + [sym_do_statement] = STATE(141), + [sym_for_statement] = STATE(141), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(141), + [sym_return_statement] = STATE(141), + [sym_break_statement] = STATE(141), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(141), [anon_sym_LBRACE] = ACTIONS(5), - [sym_null] = ACTIONS(11), - [sym_comment] = ACTIONS(3), - [anon_sym_do] = ACTIONS(149), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(11), - [anon_sym_for] = ACTIONS(151), - [anon_sym_break] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(55), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_if] = ACTIONS(153), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_switch] = ACTIONS(61), - [sym_false] = ACTIONS(11), - [sym_identifier] = ACTIONS(155), - [anon_sym_return] = ACTIONS(69), - [anon_sym_while] = ACTIONS(157), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_SEMI] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1089] = { + [anon_sym_PERCENT] = ACTIONS(145), + [anon_sym_PERCENT_EQ] = ACTIONS(147), + [anon_sym_DASH_EQ] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_DASH_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(145), + [anon_sym_DASH_DASH] = ACTIONS(151), + [sym_comment] = ACTIONS(3), + [anon_sym_PLUS_EQ] = ACTIONS(147), + [anon_sym_LT_LT_EQ] = ACTIONS(147), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_GT_EQ] = ACTIONS(151), + [anon_sym_CARET_EQ] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(151), + [anon_sym_GT_GT_EQ] = ACTIONS(147), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_PIPE_EQ] = ACTIONS(147), + [anon_sym_AMP_EQ] = ACTIONS(147), + [anon_sym_AMP] = ACTIONS(145), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(145), + [anon_sym_COLON] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(147), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(145), + [anon_sym_SLASH_EQ] = ACTIONS(147), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(151), }, [1090] = { + [sym_struct_specifier] = STATE(1036), + [sym_macro_type_specifier] = STATE(1036), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_union_specifier] = STATE(1036), + [sym__type_specifier] = STATE(1036), + [sym_sized_type_specifier] = STATE(1036), + [sym_enum_specifier] = STATE(1036), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [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(217), + [anon_sym_short] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(3055), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3025), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), }, [1091] = { - [sym_parenthesized_expression] = STATE(1066), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1094), + [sym_math_expression] = STATE(1094), + [sym_cast_expression] = STATE(1094), + [sym_declaration] = STATE(1037), + [sym_field_expression] = STATE(36), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym__expression] = STATE(1094), + [sym_bitwise_expression] = STATE(1094), + [sym_equality_expression] = STATE(1094), + [sym_sizeof_expression] = STATE(1094), + [sym__declaration_specifiers] = STATE(169), + [sym_compound_literal_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1094), + [sym_char_literal] = STATE(1094), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_conditional_expression] = STATE(1094), + [sym_assignment_expression] = STATE(1094), + [sym_relational_expression] = STATE(1094), + [sym_shift_expression] = STATE(1094), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym_false] = ACTIONS(3057), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(499), + [anon_sym_const] = ACTIONS(13), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), + [sym_number_literal] = ACTIONS(3059), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [sym_true] = ACTIONS(3057), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [1092] = { - [sym_parenthesized_expression] = STATE(1068), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(223), + [sym_while_statement] = STATE(1118), + [sym_continue_statement] = STATE(1118), + [sym_goto_statement] = STATE(1118), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(1118), + [sym_expression_statement] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_do_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(1118), + [sym_return_statement] = STATE(1118), + [sym_break_statement] = STATE(1118), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(1118), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1093] = { - [anon_sym_PERCENT] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_LT_LT] = ACTIONS(233), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(239), + [sym_while_statement] = STATE(186), + [sym_continue_statement] = STATE(186), + [sym_goto_statement] = STATE(186), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(186), + [sym_expression_statement] = STATE(186), + [sym_if_statement] = STATE(186), + [sym_do_statement] = STATE(186), + [sym_for_statement] = STATE(186), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(186), + [sym_return_statement] = STATE(186), + [sym_break_statement] = STATE(186), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(186), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1094] = { - [anon_sym_else] = ACTIONS(3027), - [anon_sym_while] = ACTIONS(969), - [sym_comment] = ACTIONS(3), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1095] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1096), - [sym_math_expression] = STATE(1096), - [sym_cast_expression] = STATE(1096), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1096), - [sym_bitwise_expression] = STATE(1096), - [sym_equality_expression] = STATE(1096), - [sym_sizeof_expression] = STATE(1096), - [sym_compound_literal_expression] = STATE(1096), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1096), - [sym_concatenated_string] = STATE(1096), - [sym_conditional_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1096), - [sym_relational_expression] = STATE(1096), - [sym_shift_expression] = STATE(1096), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(370), + [sym_continue_statement] = STATE(370), + [sym_goto_statement] = STATE(370), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(370), + [sym_expression_statement] = STATE(370), + [sym_if_statement] = STATE(370), + [sym_do_statement] = STATE(370), + [sym_for_statement] = STATE(370), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(370), + [sym_return_statement] = STATE(370), + [sym_break_statement] = STATE(370), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(370), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(3029), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1096] = { - [aux_sym_for_statement_repeat1] = STATE(1098), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_while_statement] = STATE(428), + [sym_continue_statement] = STATE(428), + [sym_goto_statement] = STATE(428), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(428), + [sym_expression_statement] = STATE(428), + [sym_if_statement] = STATE(428), + [sym_do_statement] = STATE(428), + [sym_for_statement] = STATE(428), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(428), + [sym_return_statement] = STATE(428), + [sym_break_statement] = STATE(428), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(428), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1097] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1099), - [sym_math_expression] = STATE(1099), - [sym_cast_expression] = STATE(1099), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1099), - [sym_bitwise_expression] = STATE(1099), - [sym_equality_expression] = STATE(1099), - [sym_sizeof_expression] = STATE(1099), - [sym_compound_literal_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1099), - [sym_concatenated_string] = STATE(1099), - [sym_conditional_expression] = STATE(1099), - [sym_assignment_expression] = STATE(1099), - [sym_relational_expression] = STATE(1099), - [sym_shift_expression] = STATE(1099), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(459), + [sym_continue_statement] = STATE(459), + [sym_goto_statement] = STATE(459), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(459), + [sym_expression_statement] = STATE(459), + [sym_if_statement] = STATE(459), + [sym_do_statement] = STATE(459), + [sym_for_statement] = STATE(459), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(459), + [sym_return_statement] = STATE(459), + [sym_break_statement] = STATE(459), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(3037), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1098] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(469), + [sym_continue_statement] = STATE(469), + [sym_goto_statement] = STATE(469), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(469), + [sym_expression_statement] = STATE(469), + [sym_if_statement] = STATE(469), + [sym_do_statement] = STATE(469), + [sym_for_statement] = STATE(469), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(469), + [sym_return_statement] = STATE(469), + [sym_break_statement] = STATE(469), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(469), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1099] = { - [aux_sym_for_statement_repeat1] = STATE(1101), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_while_statement] = STATE(472), + [sym_continue_statement] = STATE(472), + [sym_goto_statement] = STATE(472), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(472), + [sym_expression_statement] = STATE(472), + [sym_if_statement] = STATE(472), + [sym_do_statement] = STATE(472), + [sym_for_statement] = STATE(472), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(472), + [sym_return_statement] = STATE(472), + [sym_break_statement] = STATE(472), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(472), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1100] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1102), - [sym_math_expression] = STATE(1102), - [sym_cast_expression] = STATE(1102), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1102), - [sym_bitwise_expression] = STATE(1102), - [sym_equality_expression] = STATE(1102), - [sym_sizeof_expression] = STATE(1102), - [sym_compound_literal_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1102), - [sym_concatenated_string] = STATE(1102), - [sym_conditional_expression] = STATE(1102), - [sym_assignment_expression] = STATE(1102), - [sym_relational_expression] = STATE(1102), - [sym_shift_expression] = STATE(1102), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(3043), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(474), + [sym_continue_statement] = STATE(474), + [sym_goto_statement] = STATE(474), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(474), + [sym_expression_statement] = STATE(474), + [sym_if_statement] = STATE(474), + [sym_do_statement] = STATE(474), + [sym_for_statement] = STATE(474), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(474), + [sym_return_statement] = STATE(474), + [sym_break_statement] = STATE(474), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(474), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(3043), - [sym_identifier] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1101] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(1108), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(1047), + [sym_continue_statement] = STATE(1047), + [sym_goto_statement] = STATE(1047), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(1047), + [sym_expression_statement] = STATE(1047), + [sym_if_statement] = STATE(1047), + [sym_do_statement] = STATE(1047), + [sym_for_statement] = STATE(1047), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(1047), + [sym_return_statement] = STATE(1047), + [sym_break_statement] = STATE(1047), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(1047), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), }, [1102] = { - [aux_sym_for_statement_repeat1] = STATE(1103), - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_struct_specifier] = STATE(1048), + [sym_macro_type_specifier] = STATE(1048), + [sym_type_qualifier] = STATE(1103), + [aux_sym_type_definition_repeat1] = STATE(1103), + [sym_union_specifier] = STATE(1048), + [sym__type_specifier] = STATE(1048), + [sym_sized_type_specifier] = STATE(1048), + [sym_enum_specifier] = STATE(1048), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [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(217), + [anon_sym_short] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(3065), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), }, [1103] = { - [aux_sym_for_statement_repeat1] = STATE(378), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(1108), + [sym_struct_specifier] = STATE(1053), + [sym_macro_type_specifier] = STATE(1053), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_union_specifier] = STATE(1053), + [sym__type_specifier] = STATE(1053), + [sym_sized_type_specifier] = STATE(1053), + [sym_enum_specifier] = STATE(1053), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [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(217), + [anon_sym_short] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(3067), [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), }, [1104] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1105), + [sym_math_expression] = STATE(1105), + [sym_cast_expression] = STATE(1105), + [sym_declaration] = STATE(1054), + [sym_field_expression] = STATE(36), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym__expression] = STATE(1105), + [sym_bitwise_expression] = STATE(1105), + [sym_equality_expression] = STATE(1105), + [sym_sizeof_expression] = STATE(1105), + [sym__declaration_specifiers] = STATE(169), + [sym_compound_literal_expression] = STATE(1105), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1105), + [sym_char_literal] = STATE(1105), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_conditional_expression] = STATE(1105), + [sym_assignment_expression] = STATE(1105), + [sym_relational_expression] = STATE(1105), + [sym_shift_expression] = STATE(1105), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym_false] = ACTIONS(3069), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(499), + [anon_sym_const] = ACTIONS(13), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3051), + [sym_number_literal] = ACTIONS(3071), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [sym_true] = ACTIONS(3069), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(3069), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [1105] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3053), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1106] = { - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3055), - }, - [1107] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1108), - [sym_math_expression] = STATE(1108), - [sym_cast_expression] = STATE(1108), - [sym_field_expression] = STATE(35), - [sym__expression] = STATE(1108), - [sym_bitwise_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_sizeof_expression] = STATE(1108), - [sym_compound_literal_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1108), - [sym_concatenated_string] = STATE(1108), - [sym_conditional_expression] = STATE(1108), - [sym_assignment_expression] = STATE(1108), - [sym_relational_expression] = STATE(1108), - [sym_shift_expression] = STATE(1108), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(1064), + [sym_continue_statement] = STATE(1064), + [sym_goto_statement] = STATE(1064), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(1064), + [sym_expression_statement] = STATE(1064), + [sym_if_statement] = STATE(1064), + [sym_do_statement] = STATE(1064), + [sym_for_statement] = STATE(1064), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(1064), + [sym_return_statement] = STATE(1064), + [sym_break_statement] = STATE(1064), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(1064), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(3057), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1107] = { + [sym_struct_specifier] = STATE(1065), + [sym_macro_type_specifier] = STATE(1065), + [sym_type_qualifier] = STATE(1108), + [aux_sym_type_definition_repeat1] = STATE(1108), + [sym_union_specifier] = STATE(1065), + [sym__type_specifier] = STATE(1065), + [sym_sized_type_specifier] = STATE(1065), + [sym_enum_specifier] = STATE(1065), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [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(217), + [anon_sym_short] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(3077), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), }, [1108] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_struct_specifier] = STATE(1068), + [sym_macro_type_specifier] = STATE(1068), + [sym_type_qualifier] = STATE(152), + [aux_sym_type_definition_repeat1] = STATE(152), + [sym_union_specifier] = STATE(1068), + [sym__type_specifier] = STATE(1068), + [sym_sized_type_specifier] = STATE(1068), + [sym_enum_specifier] = STATE(1068), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [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(217), + [anon_sym_short] = ACTIONS(17), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym__Atomic] = ACTIONS(13), + [sym_primitive_type] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_enum] = ACTIONS(67), }, [1109] = { - [sym_pointer_expression] = STATE(35), + [sym_pointer_expression] = STATE(36), [sym_logical_expression] = STATE(1110), [sym_math_expression] = STATE(1110), [sym_cast_expression] = STATE(1110), - [sym_field_expression] = STATE(35), + [sym_declaration] = STATE(1069), + [sym_field_expression] = STATE(36), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), [sym__expression] = STATE(1110), [sym_bitwise_expression] = STATE(1110), [sym_equality_expression] = STATE(1110), [sym_sizeof_expression] = STATE(1110), + [sym__declaration_specifiers] = STATE(169), [sym_compound_literal_expression] = STATE(1110), - [sym_parenthesized_expression] = STATE(35), - [sym_char_literal] = STATE(1110), + [sym_parenthesized_expression] = STATE(36), [sym_concatenated_string] = STATE(1110), + [sym_char_literal] = STATE(1110), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), [sym_conditional_expression] = STATE(1110), [sym_assignment_expression] = STATE(1110), [sym_relational_expression] = STATE(1110), [sym_shift_expression] = STATE(1110), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_string_literal] = STATE(38), - [sym_null] = ACTIONS(3065), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym_false] = ACTIONS(3081), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(499), + [anon_sym_const] = ACTIONS(13), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), + [sym_number_literal] = ACTIONS(3083), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), - [sym_true] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(51), - [sym_number_literal] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [sym_false] = ACTIONS(3065), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_sizeof] = ACTIONS(81), + [sym_true] = ACTIONS(3081), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(3081), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [1110] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), }, [1111] = { - [sym_pointer_expression] = STATE(35), - [sym_logical_expression] = STATE(1112), - [sym_math_expression] = STATE(1112), - [sym_cast_expression] = STATE(1112), - [sym_declaration] = STATE(1107), - [sym_field_expression] = STATE(35), - [sym_storage_class_specifier] = STATE(40), - [aux_sym_sized_type_specifier_repeat1] = STATE(36), - [sym_struct_specifier] = STATE(44), - [sym__expression] = STATE(1112), - [sym_bitwise_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_sizeof_expression] = STATE(1112), - [sym__declaration_specifiers] = STATE(162), - [sym_compound_literal_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(35), - [sym_concatenated_string] = STATE(1112), - [sym_char_literal] = STATE(1112), - [sym_macro_type_specifier] = STATE(44), - [sym_type_qualifier] = STATE(40), - [sym__type_specifier] = STATE(44), - [sym_union_specifier] = STATE(44), - [sym_conditional_expression] = STATE(1112), - [sym_assignment_expression] = STATE(1112), - [sym_relational_expression] = STATE(1112), - [sym_shift_expression] = STATE(1112), - [sym_subscript_expression] = STATE(35), - [sym_call_expression] = STATE(35), - [sym_attribute_specifier] = STATE(40), - [sym_string_literal] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(40), - [sym_sized_type_specifier] = STATE(44), - [sym_enum_specifier] = STATE(44), - [anon_sym___attribute__] = ACTIONS(19), - [anon_sym_union] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(25), - [sym_null] = ACTIONS(3071), - [anon_sym_restrict] = ACTIONS(13), - [anon_sym_short] = ACTIONS(15), - [anon_sym_unsigned] = ACTIONS(15), - [sym_comment] = ACTIONS(3), + [sym_while_statement] = STATE(1076), + [sym_continue_statement] = STATE(1076), + [sym_goto_statement] = STATE(1076), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(1076), + [sym_expression_statement] = STATE(1076), + [sym_if_statement] = STATE(1076), + [sym_do_statement] = STATE(1076), + [sym_for_statement] = STATE(1076), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(1076), + [sym_return_statement] = STATE(1076), + [sym_break_statement] = STATE(1076), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(1076), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1112] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1113), + [sym_math_expression] = STATE(1113), + [sym_cast_expression] = STATE(1113), + [sym_declaration] = STATE(1079), + [sym_field_expression] = STATE(36), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym__expression] = STATE(1113), + [sym_bitwise_expression] = STATE(1113), + [sym_equality_expression] = STATE(1113), + [sym_sizeof_expression] = STATE(1113), + [sym__declaration_specifiers] = STATE(169), + [sym_compound_literal_expression] = STATE(1113), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1113), + [sym_char_literal] = STATE(1113), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_conditional_expression] = STATE(1113), + [sym_assignment_expression] = STATE(1113), + [sym_relational_expression] = STATE(1113), + [sym_shift_expression] = STATE(1113), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym_false] = ACTIONS(3089), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(499), [anon_sym_const] = ACTIONS(13), - [anon_sym_LPAREN2] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(41), [anon_sym__Atomic] = ACTIONS(13), - [sym_primitive_type] = ACTIONS(41), - [sym_true] = ACTIONS(3071), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_static] = ACTIONS(17), + [sym_comment] = ACTIONS(3), + [sym_number_literal] = ACTIONS(3091), [anon_sym_volatile] = ACTIONS(13), - [anon_sym_register] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(17), - [sym_number_literal] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_PLUS] = ACTIONS(25), - [sym_false] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(63), - [sym_identifier] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(15), - [anon_sym_long] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym_auto] = ACTIONS(17), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_DQUOTE] = ACTIONS(79), - [anon_sym_inline] = ACTIONS(17), - [anon_sym_sizeof] = ACTIONS(81), - }, - [1112] = { - [sym_argument_list] = STATE(120), - [anon_sym_PERCENT] = ACTIONS(294), - [sym_comment] = ACTIONS(3), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_AMP] = ACTIONS(300), - [anon_sym_CARET] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_LPAREN2] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_DASH_DASH] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_PLUS_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(310), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(328), + [sym_true] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), }, [1113] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [1114] = { + [sym_while_statement] = STATE(1084), + [sym_continue_statement] = STATE(1084), + [sym_goto_statement] = STATE(1084), + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(43), + [sym_math_expression] = STATE(43), + [sym_cast_expression] = STATE(43), + [sym_field_expression] = STATE(36), + [sym_compound_statement] = STATE(1084), + [sym_expression_statement] = STATE(1084), + [sym_if_statement] = STATE(1084), + [sym_do_statement] = STATE(1084), + [sym_for_statement] = STATE(1084), + [sym__expression] = STATE(43), + [sym_comma_expression] = STATE(38), + [sym_bitwise_expression] = STATE(43), + [sym_equality_expression] = STATE(43), + [sym_sizeof_expression] = STATE(43), + [sym_compound_literal_expression] = STATE(43), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(43), + [sym_concatenated_string] = STATE(43), + [sym_switch_statement] = STATE(1084), + [sym_return_statement] = STATE(1084), + [sym_break_statement] = STATE(1084), + [sym_conditional_expression] = STATE(43), + [sym_assignment_expression] = STATE(43), + [sym_relational_expression] = STATE(43), + [sym_shift_expression] = STATE(43), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_labeled_statement] = STATE(1084), + [anon_sym_LBRACE] = ACTIONS(5), + [sym_false] = ACTIONS(11), + [sym_identifier] = ACTIONS(167), + [anon_sym_do] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_for] = ACTIONS(171), + [anon_sym_break] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_if] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_switch] = ACTIONS(65), + [sym_true] = ACTIONS(11), + [sym_null] = ACTIONS(11), + [anon_sym_return] = ACTIONS(71), + [anon_sym_while] = ACTIONS(175), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_SEMI] = ACTIONS(77), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1115] = { + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3097), + }, + [1116] = { + [sym_parenthesized_expression] = STATE(1092), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(251), + }, + [1117] = { + [sym_parenthesized_expression] = STATE(1093), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(251), + }, + [1118] = { + [anon_sym_else] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [anon_sym_while] = ACTIONS(1000), + }, + [1119] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1120), + [sym_math_expression] = STATE(1120), + [sym_cast_expression] = STATE(1120), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1120), + [sym_bitwise_expression] = STATE(1120), + [sym_equality_expression] = STATE(1120), + [sym_sizeof_expression] = STATE(1120), + [sym_compound_literal_expression] = STATE(1120), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1120), + [sym_concatenated_string] = STATE(1120), + [sym_conditional_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1120), + [sym_relational_expression] = STATE(1120), + [sym_shift_expression] = STATE(1120), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3101), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3101), + [sym_null] = ACTIONS(3101), + [anon_sym_RPAREN] = ACTIONS(3105), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1120] = { + [aux_sym_for_statement_repeat1] = STATE(1122), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(3107), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [1121] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1123), + [sym_math_expression] = STATE(1123), + [sym_cast_expression] = STATE(1123), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1123), + [sym_bitwise_expression] = STATE(1123), + [sym_equality_expression] = STATE(1123), + [sym_sizeof_expression] = STATE(1123), + [sym_compound_literal_expression] = STATE(1123), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1123), + [sym_concatenated_string] = STATE(1123), + [sym_conditional_expression] = STATE(1123), + [sym_assignment_expression] = STATE(1123), + [sym_relational_expression] = STATE(1123), + [sym_shift_expression] = STATE(1123), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3109), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3109), + [sym_null] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(3107), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1122] = { + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), + }, + [1123] = { + [aux_sym_for_statement_repeat1] = STATE(1125), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [1124] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1126), + [sym_math_expression] = STATE(1126), + [sym_cast_expression] = STATE(1126), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1126), + [sym_bitwise_expression] = STATE(1126), + [sym_equality_expression] = STATE(1126), + [sym_sizeof_expression] = STATE(1126), + [sym_compound_literal_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1126), + [sym_concatenated_string] = STATE(1126), + [sym_conditional_expression] = STATE(1126), + [sym_assignment_expression] = STATE(1126), + [sym_relational_expression] = STATE(1126), + [sym_shift_expression] = STATE(1126), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3115), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3115), + [sym_null] = ACTIONS(3115), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1125] = { + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), + }, + [1126] = { + [aux_sym_for_statement_repeat1] = STATE(1127), + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [1127] = { + [aux_sym_for_statement_repeat1] = STATE(386), + [anon_sym_RPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(1138), + }, + [1128] = { + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3123), + }, + [1129] = { + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3125), + }, + [1130] = { + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3127), + }, + [1131] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1132), + [sym_math_expression] = STATE(1132), + [sym_cast_expression] = STATE(1132), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1132), + [sym_bitwise_expression] = STATE(1132), + [sym_equality_expression] = STATE(1132), + [sym_sizeof_expression] = STATE(1132), + [sym_compound_literal_expression] = STATE(1132), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1132), + [sym_concatenated_string] = STATE(1132), + [sym_conditional_expression] = STATE(1132), + [sym_assignment_expression] = STATE(1132), + [sym_relational_expression] = STATE(1132), + [sym_shift_expression] = STATE(1132), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3129), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1132] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [1133] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1134), + [sym_math_expression] = STATE(1134), + [sym_cast_expression] = STATE(1134), + [sym_field_expression] = STATE(36), + [sym__expression] = STATE(1134), + [sym_bitwise_expression] = STATE(1134), + [sym_equality_expression] = STATE(1134), + [sym_sizeof_expression] = STATE(1134), + [sym_compound_literal_expression] = STATE(1134), + [sym_parenthesized_expression] = STATE(36), + [sym_char_literal] = STATE(1134), + [sym_concatenated_string] = STATE(1134), + [sym_conditional_expression] = STATE(1134), + [sym_assignment_expression] = STATE(1134), + [sym_relational_expression] = STATE(1134), + [sym_shift_expression] = STATE(1134), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_string_literal] = STATE(39), + [sym_false] = ACTIONS(3137), + [sym_identifier] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(41), + [sym_comment] = ACTIONS(3), + [anon_sym_BANG] = ACTIONS(55), + [sym_number_literal] = ACTIONS(3139), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [sym_true] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3135), + [anon_sym_L] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(35), + [anon_sym_sizeof] = ACTIONS(83), + }, + [1134] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [1135] = { + [sym_pointer_expression] = STATE(36), + [sym_logical_expression] = STATE(1136), + [sym_math_expression] = STATE(1136), + [sym_cast_expression] = STATE(1136), + [sym_declaration] = STATE(1131), + [sym_field_expression] = STATE(36), + [sym_storage_class_specifier] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(37), + [sym_struct_specifier] = STATE(45), + [sym__expression] = STATE(1136), + [sym_bitwise_expression] = STATE(1136), + [sym_equality_expression] = STATE(1136), + [sym_sizeof_expression] = STATE(1136), + [sym__declaration_specifiers] = STATE(169), + [sym_compound_literal_expression] = STATE(1136), + [sym_parenthesized_expression] = STATE(36), + [sym_concatenated_string] = STATE(1136), + [sym_char_literal] = STATE(1136), + [sym_macro_type_specifier] = STATE(45), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(45), + [sym_union_specifier] = STATE(45), + [sym_conditional_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1136), + [sym_relational_expression] = STATE(1136), + [sym_shift_expression] = STATE(1136), + [sym_subscript_expression] = STATE(36), + [sym_call_expression] = STATE(36), + [sym_attribute_specifier] = STATE(41), + [sym_string_literal] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [sym_sized_type_specifier] = STATE(45), + [sym_enum_specifier] = STATE(45), + [sym_false] = ACTIONS(3143), + [anon_sym_restrict] = ACTIONS(13), + [sym_identifier] = ACTIONS(499), + [anon_sym_const] = ACTIONS(13), + [anon_sym_DASH_DASH] = ACTIONS(41), + [anon_sym__Atomic] = ACTIONS(13), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN2] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3145), + [anon_sym_volatile] = ACTIONS(13), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(41), + [anon_sym_struct] = ACTIONS(63), + [anon_sym_signed] = ACTIONS(17), + [anon_sym_long] = ACTIONS(17), + [anon_sym_L] = ACTIONS(9), + [anon_sym___attribute__] = ACTIONS(25), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_union] = ACTIONS(7), + [anon_sym_unsigned] = ACTIONS(17), + [anon_sym_short] = ACTIONS(17), + [anon_sym_TILDE] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_LPAREN2] = ACTIONS(37), + [sym_primitive_type] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_static] = ACTIONS(19), + [anon_sym_register] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(31), + [sym_true] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(67), + [sym_null] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_auto] = ACTIONS(19), + [anon_sym_inline] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(35), + }, + [1136] = { + [sym_argument_list] = STATE(124), + [anon_sym_PERCENT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(314), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(318), + [anon_sym_LPAREN2] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_DASH_DASH] = ACTIONS(324), + [anon_sym_SLASH] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(324), + [anon_sym_STAR] = ACTIONS(306), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(340), + }, + [1137] = { + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN2] = ACTIONS(3151), }, }; @@ -46140,1439 +47102,1473 @@ static TSParseActionEntry ts_parse_actions[] = { [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 = true}, SHIFT(33), - [11] = {.count = 1, .reusable = false}, SHIFT(42), + [9] = {.count = 1, .reusable = false}, SHIFT(34), + [11] = {.count = 1, .reusable = false}, SHIFT(43), [13] = {.count = 1, .reusable = false}, SHIFT(5), - [15] = {.count = 1, .reusable = false}, SHIFT(36), - [17] = {.count = 1, .reusable = false}, SHIFT(21), - [19] = {.count = 1, .reusable = false}, SHIFT(34), + [15] = {.count = 1, .reusable = false}, SHIFT(6), + [17] = {.count = 1, .reusable = false}, SHIFT(37), + [19] = {.count = 1, .reusable = false}, SHIFT(22), [21] = {.count = 1, .reusable = false}, SHIFT(7), [23] = {.count = 1, .reusable = false}, SHIFT(8), - [25] = {.count = 1, .reusable = false}, SHIFT(15), + [25] = {.count = 1, .reusable = false}, SHIFT(35), [27] = {.count = 1, .reusable = true}, SHIFT(9), [29] = {.count = 1, .reusable = false}, SHIFT(10), [31] = {.count = 1, .reusable = true}, SHIFT(11), [33] = {.count = 1, .reusable = false}, SHIFT(12), - [35] = {.count = 1, .reusable = true}, SHIFT(13), - [37] = {.count = 1, .reusable = false}, SHIFT(14), - [39] = {.count = 1, .reusable = true}, SHIFT(15), - [41] = {.count = 1, .reusable = false}, SHIFT(44), - [43] = {.count = 1, .reusable = false}, SHIFT(16), - [45] = {.count = 1, .reusable = false}, SHIFT(17), - [47] = {.count = 1, .reusable = false}, SHIFT(18), - [49] = {.count = 1, .reusable = false}, SHIFT(19), - [51] = {.count = 1, .reusable = true}, SHIFT(20), - [53] = {.count = 1, .reusable = false}, SHIFT(22), - [55] = {.count = 1, .reusable = true}, SHIFT(42), + [35] = {.count = 1, .reusable = false}, SHIFT(15), + [37] = {.count = 1, .reusable = true}, SHIFT(13), + [39] = {.count = 1, .reusable = false}, SHIFT(14), + [41] = {.count = 1, .reusable = true}, SHIFT(15), + [43] = {.count = 1, .reusable = true}, SHIFT(16), + [45] = {.count = 1, .reusable = false}, SHIFT(45), + [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(20), + [55] = {.count = 1, .reusable = true}, SHIFT(21), [57] = {.count = 1, .reusable = false}, SHIFT(23), - [59] = {.count = 1, .reusable = false}, SHIFT(24), - [61] = {.count = 1, .reusable = false}, SHIFT(25), - [63] = {.count = 1, .reusable = false}, SHIFT(26), - [65] = {.count = 1, .reusable = false}, SHIFT(27), - [67] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), - [69] = {.count = 1, .reusable = false}, SHIFT(28), - [71] = {.count = 1, .reusable = false}, SHIFT(29), - [73] = {.count = 1, .reusable = false}, SHIFT(30), - [75] = {.count = 1, .reusable = true}, SHIFT(31), - [77] = {.count = 1, .reusable = false}, SHIFT(32), - [79] = {.count = 1, .reusable = true}, SHIFT(6), - [81] = {.count = 1, .reusable = false}, SHIFT(4), - [83] = {.count = 1, .reusable = false}, SHIFT(758), - [85] = {.count = 1, .reusable = false}, SHIFT(1001), - [87] = {.count = 1, .reusable = false}, SHIFT(1063), - [89] = {.count = 1, .reusable = false}, SHIFT(1004), - [91] = {.count = 1, .reusable = true}, SHIFT(758), - [93] = {.count = 1, .reusable = false}, SHIFT(1005), - [95] = {.count = 1, .reusable = false}, SHIFT(755), - [97] = {.count = 1, .reusable = true}, SHIFT(743), - [99] = {.count = 1, .reusable = false}, SHIFT(1062), - [101] = {.count = 1, .reusable = false}, SHIFT(747), - [103] = {.count = 1, .reusable = false}, SHIFT(1002), - [105] = {.count = 1, .reusable = true}, SHIFT(45), - [107] = {.count = 1, .reusable = false}, SHIFT(1090), - [109] = {.count = 1, .reusable = false}, SHIFT(749), - [111] = {.count = 1, .reusable = false}, SHIFT(750), - [113] = {.count = 1, .reusable = false}, SHIFT(752), - [115] = {.count = 1, .reusable = false}, SHIFT(1006), - [117] = {.count = 1, .reusable = false}, SHIFT(753), - [119] = {.count = 1, .reusable = false}, SHIFT(754), - [121] = {.count = 1, .reusable = false}, SHIFT(756), - [123] = {.count = 1, .reusable = true}, SHIFT(468), - [125] = {.count = 1, .reusable = false}, SHIFT(1007), - [127] = {.count = 1, .reusable = true}, SHIFT(47), + [59] = {.count = 1, .reusable = true}, SHIFT(43), + [61] = {.count = 1, .reusable = false}, SHIFT(24), + [63] = {.count = 1, .reusable = false}, SHIFT(25), + [65] = {.count = 1, .reusable = false}, SHIFT(26), + [67] = {.count = 1, .reusable = false}, SHIFT(27), + [69] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 0), + [71] = {.count = 1, .reusable = false}, SHIFT(28), + [73] = {.count = 1, .reusable = false}, SHIFT(29), + [75] = {.count = 1, .reusable = false}, SHIFT(30), + [77] = {.count = 1, .reusable = true}, SHIFT(31), + [79] = {.count = 1, .reusable = false}, SHIFT(32), + [81] = {.count = 1, .reusable = true}, SHIFT(33), + [83] = {.count = 1, .reusable = false}, SHIFT(4), + [85] = {.count = 1, .reusable = false}, SHIFT(773), + [87] = {.count = 1, .reusable = false}, SHIFT(760), + [89] = {.count = 1, .reusable = false}, SHIFT(1021), + [91] = {.count = 1, .reusable = false}, SHIFT(1087), + [93] = {.count = 1, .reusable = false}, SHIFT(1024), + [95] = {.count = 1, .reusable = true}, SHIFT(773), + [97] = {.count = 1, .reusable = false}, SHIFT(1025), + [99] = {.count = 1, .reusable = false}, SHIFT(770), + [101] = {.count = 1, .reusable = true}, SHIFT(758), + [103] = {.count = 1, .reusable = false}, SHIFT(1086), + [105] = {.count = 1, .reusable = false}, SHIFT(762), + [107] = {.count = 1, .reusable = false}, SHIFT(1022), + [109] = {.count = 1, .reusable = true}, SHIFT(46), + [111] = {.count = 1, .reusable = false}, SHIFT(1115), + [113] = {.count = 1, .reusable = false}, SHIFT(765), + [115] = {.count = 1, .reusable = false}, SHIFT(766), + [117] = {.count = 1, .reusable = false}, SHIFT(768), + [119] = {.count = 1, .reusable = false}, SHIFT(1026), + [121] = {.count = 1, .reusable = false}, SHIFT(769), + [123] = {.count = 1, .reusable = false}, SHIFT(771), + [125] = {.count = 1, .reusable = true}, SHIFT(476), + [127] = {.count = 1, .reusable = false}, SHIFT(1027), [129] = {.count = 1, .reusable = true}, SHIFT(48), - [131] = {.count = 1, .reusable = false}, SHIFT(51), - [133] = {.count = 1, .reusable = true}, SHIFT(51), - [135] = {.count = 1, .reusable = false}, SHIFT(35), - [137] = {.count = 1, .reusable = true}, SHIFT(50), - [139] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), - [141] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), - [143] = {.count = 1, .reusable = true}, SHIFT(53), - [145] = {.count = 1, .reusable = false}, SHIFT(52), - [147] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [149] = {.count = 1, .reusable = false}, SHIFT(1076), - [151] = {.count = 1, .reusable = false}, SHIFT(1113), - [153] = {.count = 1, .reusable = false}, SHIFT(1091), - [155] = {.count = 1, .reusable = false}, SHIFT(54), - [157] = {.count = 1, .reusable = false}, SHIFT(1092), - [159] = {.count = 1, .reusable = true}, SHIFT(56), - [161] = {.count = 1, .reusable = false}, SHIFT(57), - [163] = {.count = 1, .reusable = true}, SHIFT(57), - [165] = {.count = 1, .reusable = true}, SHIFT(58), - [167] = {.count = 1, .reusable = false}, SHIFT(59), - [169] = {.count = 1, .reusable = false}, SHIFT(60), - [171] = {.count = 1, .reusable = true}, SHIFT(751), - [173] = {.count = 1, .reusable = true}, SHIFT(60), - [175] = {.count = 1, .reusable = false}, SHIFT(748), - [177] = {.count = 1, .reusable = true}, SHIFT(748), - [179] = {.count = 1, .reusable = true}, SHIFT(746), - [181] = {.count = 1, .reusable = true}, SHIFT(1003), - [183] = {.count = 1, .reusable = false}, SHIFT(744), - [185] = {.count = 1, .reusable = false}, SHIFT(61), - [187] = {.count = 1, .reusable = false}, SHIFT(63), - [189] = {.count = 1, .reusable = false}, SHIFT(469), - [191] = {.count = 1, .reusable = false}, SHIFT(67), - [193] = {.count = 1, .reusable = true}, SHIFT(63), - [195] = {.count = 1, .reusable = false}, SHIFT(62), - [197] = {.count = 1, .reusable = false}, SHIFT(68), - [199] = {.count = 1, .reusable = false}, SHIFT(70), - [201] = {.count = 1, .reusable = false}, SHIFT(71), - [203] = {.count = 1, .reusable = true}, SHIFT(71), - [205] = {.count = 1, .reusable = true}, SHIFT(72), - [207] = {.count = 1, .reusable = true}, SHIFT(73), - [209] = {.count = 1, .reusable = true}, SHIFT(74), - [211] = {.count = 1, .reusable = true}, SHIFT(75), - [213] = {.count = 1, .reusable = true}, SHIFT(745), - [215] = {.count = 1, .reusable = false}, SHIFT(76), - [217] = {.count = 1, .reusable = true}, SHIFT(76), - [219] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), - [221] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), - [223] = {.count = 1, .reusable = true}, SHIFT(78), - [225] = {.count = 1, .reusable = true}, SHIFT(80), - [227] = {.count = 1, .reusable = true}, SHIFT(772), - [229] = {.count = 1, .reusable = true}, SHIFT(83), - [231] = {.count = 1, .reusable = true}, SHIFT(84), - [233] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [235] = {.count = 1, .reusable = true}, SHIFT(86), - [237] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [239] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [241] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(87), - [245] = {.count = 1, .reusable = false}, SHIFT(86), - [247] = {.count = 1, .reusable = true}, SHIFT(88), - [249] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [252] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [255] = {.count = 1, .reusable = false}, SHIFT(90), - [257] = {.count = 1, .reusable = true}, SHIFT(90), + [131] = {.count = 1, .reusable = true}, SHIFT(49), + [133] = {.count = 1, .reusable = false}, SHIFT(52), + [135] = {.count = 1, .reusable = false}, SHIFT(36), + [137] = {.count = 1, .reusable = true}, SHIFT(51), + [139] = {.count = 1, .reusable = true}, SHIFT(52), + [141] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), + [143] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), + [145] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [147] = {.count = 1, .reusable = true}, SHIFT(53), + [149] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [151] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [153] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(54), + [157] = {.count = 1, .reusable = false}, SHIFT(53), + [159] = {.count = 1, .reusable = true}, SHIFT(55), + [161] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [164] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [167] = {.count = 1, .reusable = false}, SHIFT(56), + [169] = {.count = 1, .reusable = false}, SHIFT(1101), + [171] = {.count = 1, .reusable = false}, SHIFT(1137), + [173] = {.count = 1, .reusable = false}, SHIFT(1116), + [175] = {.count = 1, .reusable = false}, SHIFT(1117), + [177] = {.count = 1, .reusable = true}, SHIFT(58), + [179] = {.count = 1, .reusable = false}, SHIFT(59), + [181] = {.count = 1, .reusable = true}, SHIFT(59), + [183] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [185] = {.count = 1, .reusable = true}, SHIFT(60), + [187] = {.count = 1, .reusable = false}, SHIFT(61), + [189] = {.count = 1, .reusable = false}, SHIFT(62), + [191] = {.count = 1, .reusable = true}, SHIFT(761), + [193] = {.count = 1, .reusable = true}, SHIFT(1023), + [195] = {.count = 1, .reusable = true}, SHIFT(763), + [197] = {.count = 1, .reusable = true}, SHIFT(767), + [199] = {.count = 1, .reusable = true}, SHIFT(62), + [201] = {.count = 1, .reusable = false}, SHIFT(763), + [203] = {.count = 1, .reusable = false}, SHIFT(759), + [205] = {.count = 1, .reusable = false}, SHIFT(63), + [207] = {.count = 1, .reusable = false}, SHIFT(65), + [209] = {.count = 1, .reusable = false}, SHIFT(64), + [211] = {.count = 1, .reusable = false}, SHIFT(477), + [213] = {.count = 1, .reusable = false}, SHIFT(69), + [215] = {.count = 1, .reusable = true}, SHIFT(65), + [217] = {.count = 1, .reusable = false}, SHIFT(70), + [219] = {.count = 1, .reusable = false}, SHIFT(72), + [221] = {.count = 1, .reusable = false}, SHIFT(73), + [223] = {.count = 1, .reusable = true}, SHIFT(73), + [225] = {.count = 1, .reusable = false}, SHIFT(74), + [227] = {.count = 1, .reusable = true}, SHIFT(75), + [229] = {.count = 1, .reusable = true}, SHIFT(76), + [231] = {.count = 1, .reusable = true}, SHIFT(77), + [233] = {.count = 1, .reusable = true}, SHIFT(78), + [235] = {.count = 1, .reusable = true}, SHIFT(79), + [237] = {.count = 1, .reusable = true}, SHIFT(764), + [239] = {.count = 1, .reusable = true}, SHIFT(80), + [241] = {.count = 1, .reusable = false}, SHIFT(81), + [243] = {.count = 1, .reusable = true}, SHIFT(81), + [245] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), + [247] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), + [249] = {.count = 1, .reusable = false}, SHIFT(1031), + [251] = {.count = 1, .reusable = true}, SHIFT(83), + [253] = {.count = 1, .reusable = true}, SHIFT(85), + [255] = {.count = 1, .reusable = true}, SHIFT(786), + [257] = {.count = 1, .reusable = true}, SHIFT(88), [259] = {.count = 1, .reusable = true}, SHIFT(89), - [261] = {.count = 1, .reusable = true}, SHIFT(92), - [263] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [265] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [267] = {.count = 1, .reusable = true}, SHIFT(93), - [269] = {.count = 1, .reusable = false}, SHIFT(94), - [271] = {.count = 1, .reusable = true}, SHIFT(94), + [261] = {.count = 1, .reusable = false}, SHIFT(92), + [263] = {.count = 1, .reusable = true}, SHIFT(92), + [265] = {.count = 1, .reusable = true}, SHIFT(91), + [267] = {.count = 1, .reusable = true}, SHIFT(94), + [269] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [271] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), [273] = {.count = 1, .reusable = true}, SHIFT(95), - [275] = {.count = 1, .reusable = false}, SHIFT(98), - [277] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), - [279] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), - [281] = {.count = 1, .reusable = false}, SHIFT(97), - [283] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(96), - [286] = {.count = 1, .reusable = true}, SHIFT(99), - [288] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), - [290] = {.count = 1, .reusable = false}, SHIFT(102), - [292] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [294] = {.count = 1, .reusable = true}, SHIFT(104), - [296] = {.count = 1, .reusable = false}, SHIFT(106), - [298] = {.count = 1, .reusable = true}, SHIFT(106), - [300] = {.count = 1, .reusable = false}, SHIFT(112), - [302] = {.count = 1, .reusable = true}, SHIFT(113), - [304] = {.count = 1, .reusable = true}, SHIFT(114), - [306] = {.count = 1, .reusable = true}, SHIFT(115), - [308] = {.count = 1, .reusable = true}, SHIFT(116), - [310] = {.count = 1, .reusable = true}, SHIFT(117), - [312] = {.count = 1, .reusable = true}, SHIFT(111), - [314] = {.count = 1, .reusable = false}, SHIFT(104), - [316] = {.count = 1, .reusable = true}, SHIFT(119), - [318] = {.count = 1, .reusable = true}, SHIFT(105), - [320] = {.count = 1, .reusable = true}, SHIFT(107), - [322] = {.count = 1, .reusable = true}, SHIFT(109), - [324] = {.count = 1, .reusable = false}, SHIFT(110), - [326] = {.count = 1, .reusable = false}, SHIFT(118), - [328] = {.count = 1, .reusable = true}, SHIFT(108), - [330] = {.count = 1, .reusable = true}, SHIFT(124), - [332] = {.count = 1, .reusable = true}, SHIFT(121), - [334] = {.count = 1, .reusable = true}, SHIFT(122), - [336] = {.count = 1, .reusable = true}, SHIFT(123), - [338] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), - [340] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), - [342] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [344] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [346] = {.count = 1, .reusable = true}, SHIFT(127), - [348] = {.count = 1, .reusable = false}, SHIFT(825), - [350] = {.count = 1, .reusable = false}, SHIFT(129), - [352] = {.count = 1, .reusable = true}, SHIFT(130), - [354] = {.count = 1, .reusable = false}, SHIFT(128), - [356] = {.count = 1, .reusable = false}, SHIFT(1025), - [358] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 2), - [360] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 2), - [362] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), - [364] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), - [366] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), - [368] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), - [370] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [372] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [374] = {.count = 1, .reusable = true}, SHIFT(136), - [376] = {.count = 1, .reusable = false}, SHIFT(135), - [378] = {.count = 1, .reusable = true}, SHIFT(1067), - [380] = {.count = 1, .reusable = true}, SHIFT(137), - [382] = {.count = 1, .reusable = true}, SHIFT(138), - [384] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), - [386] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), - [388] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), - [390] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), - [392] = {.count = 1, .reusable = true}, SHIFT(139), - [394] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), - [396] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), - [398] = {.count = 1, .reusable = false}, SHIFT(834), - [400] = {.count = 1, .reusable = false}, SHIFT(1020), - [402] = {.count = 1, .reusable = false}, SHIFT(141), - [404] = {.count = 1, .reusable = false}, SHIFT(1077), - [406] = {.count = 1, .reusable = false}, SHIFT(1022), - [408] = {.count = 1, .reusable = true}, SHIFT(834), - [410] = {.count = 1, .reusable = false}, SHIFT(1023), - [412] = {.count = 1, .reusable = false}, SHIFT(831), - [414] = {.count = 1, .reusable = false}, SHIFT(142), - [416] = {.count = 1, .reusable = true}, SHIFT(823), - [418] = {.count = 1, .reusable = false}, SHIFT(1081), - [420] = {.count = 1, .reusable = false}, SHIFT(140), - [422] = {.count = 1, .reusable = false}, SHIFT(896), - [424] = {.count = 1, .reusable = false}, SHIFT(1021), - [426] = {.count = 1, .reusable = false}, SHIFT(1104), - [428] = {.count = 1, .reusable = false}, SHIFT(826), - [430] = {.count = 1, .reusable = false}, SHIFT(827), - [432] = {.count = 1, .reusable = false}, SHIFT(828), - [434] = {.count = 1, .reusable = false}, SHIFT(1024), - [436] = {.count = 1, .reusable = false}, SHIFT(829), - [438] = {.count = 1, .reusable = false}, SHIFT(830), - [440] = {.count = 1, .reusable = false}, SHIFT(832), - [442] = {.count = 1, .reusable = true}, SHIFT(563), - [444] = {.count = 1, .reusable = false}, SHIFT(1041), - [446] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [448] = {.count = 1, .reusable = true}, SHIFT(145), - [450] = {.count = 1, .reusable = true}, SHIFT(146), - [452] = {.count = 1, .reusable = false}, SHIFT(148), - [454] = {.count = 1, .reusable = true}, SHIFT(5), - [456] = {.count = 1, .reusable = true}, SHIFT(150), - [458] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), - [460] = {.count = 1, .reusable = true}, SHIFT(149), - [462] = {.count = 1, .reusable = true}, SHIFT(151), - [464] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(87), - [467] = {.count = 1, .reusable = false}, SHIFT(155), - [469] = {.count = 1, .reusable = true}, SHIFT(156), - [471] = {.count = 1, .reusable = true}, SHIFT(157), - [473] = {.count = 1, .reusable = true}, SHIFT(158), - [475] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), - [477] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), - [479] = {.count = 1, .reusable = false}, SHIFT(161), - [481] = {.count = 1, .reusable = true}, SHIFT(161), - [483] = {.count = 1, .reusable = false}, SHIFT(473), - [485] = {.count = 1, .reusable = true}, SHIFT(160), - [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(163), - [493] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), - [495] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), - [497] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), - [499] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), - [501] = {.count = 1, .reusable = true}, SHIFT(166), - [503] = {.count = 1, .reusable = false}, SHIFT(767), - [505] = {.count = 1, .reusable = true}, SHIFT(767), - [507] = {.count = 1, .reusable = false}, SHIFT(1093), - [509] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 2), - [511] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 2), - [513] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), - [515] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), - [517] = {.count = 1, .reusable = true}, SHIFT(171), - [519] = {.count = 1, .reusable = true}, SHIFT(173), - [521] = {.count = 1, .reusable = true}, SHIFT(174), - [523] = {.count = 1, .reusable = true}, SHIFT(175), - [525] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 2), - [527] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 2), - [529] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), - [531] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), - [533] = {.count = 1, .reusable = false}, SHIFT(178), + [275] = {.count = 1, .reusable = true}, SHIFT(96), + [277] = {.count = 1, .reusable = false}, SHIFT(96), + [279] = {.count = 1, .reusable = true}, SHIFT(97), + [281] = {.count = 1, .reusable = true}, SHIFT(98), + [283] = {.count = 1, .reusable = true}, SHIFT(99), + [285] = {.count = 1, .reusable = false}, SHIFT(102), + [287] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), + [289] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(101), + [292] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), + [294] = {.count = 1, .reusable = false}, SHIFT(100), + [296] = {.count = 1, .reusable = true}, SHIFT(103), + [298] = {.count = 1, .reusable = true}, SHIFT(1031), + [300] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), + [302] = {.count = 1, .reusable = false}, SHIFT(106), + [304] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [306] = {.count = 1, .reusable = true}, SHIFT(108), + [308] = {.count = 1, .reusable = false}, SHIFT(110), + [310] = {.count = 1, .reusable = true}, SHIFT(110), + [312] = {.count = 1, .reusable = false}, SHIFT(116), + [314] = {.count = 1, .reusable = true}, SHIFT(117), + [316] = {.count = 1, .reusable = true}, SHIFT(118), + [318] = {.count = 1, .reusable = true}, SHIFT(119), + [320] = {.count = 1, .reusable = true}, SHIFT(120), + [322] = {.count = 1, .reusable = true}, SHIFT(121), + [324] = {.count = 1, .reusable = true}, SHIFT(115), + [326] = {.count = 1, .reusable = false}, SHIFT(108), + [328] = {.count = 1, .reusable = true}, SHIFT(123), + [330] = {.count = 1, .reusable = true}, SHIFT(109), + [332] = {.count = 1, .reusable = true}, SHIFT(111), + [334] = {.count = 1, .reusable = true}, SHIFT(113), + [336] = {.count = 1, .reusable = false}, SHIFT(114), + [338] = {.count = 1, .reusable = false}, SHIFT(122), + [340] = {.count = 1, .reusable = true}, SHIFT(112), + [342] = {.count = 1, .reusable = true}, SHIFT(125), + [344] = {.count = 1, .reusable = true}, SHIFT(126), + [346] = {.count = 1, .reusable = true}, SHIFT(128), + [348] = {.count = 1, .reusable = true}, SHIFT(127), + [350] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), + [352] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), + [354] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [356] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [358] = {.count = 1, .reusable = true}, SHIFT(131), + [360] = {.count = 1, .reusable = false}, SHIFT(842), + [362] = {.count = 1, .reusable = false}, SHIFT(133), + [364] = {.count = 1, .reusable = true}, SHIFT(134), + [366] = {.count = 1, .reusable = false}, SHIFT(132), + [368] = {.count = 1, .reusable = false}, SHIFT(1046), + [370] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .production_id = 2), + [372] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .production_id = 2), + [374] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), + [376] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), + [378] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), + [380] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), + [382] = {.count = 1, .reusable = false}, SHIFT(139), + [384] = {.count = 1, .reusable = true}, SHIFT(139), + [386] = {.count = 1, .reusable = false}, SHIFT(1089), + [388] = {.count = 1, .reusable = true}, SHIFT(1088), + [390] = {.count = 1, .reusable = true}, SHIFT(142), + [392] = {.count = 1, .reusable = true}, SHIFT(143), + [394] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), + [396] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), + [398] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), + [400] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), + [402] = {.count = 1, .reusable = true}, SHIFT(144), + [404] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), + [406] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), + [408] = {.count = 1, .reusable = false}, SHIFT(851), + [410] = {.count = 1, .reusable = false}, SHIFT(841), + [412] = {.count = 1, .reusable = false}, SHIFT(1041), + [414] = {.count = 1, .reusable = false}, SHIFT(145), + [416] = {.count = 1, .reusable = false}, SHIFT(1102), + [418] = {.count = 1, .reusable = false}, SHIFT(1043), + [420] = {.count = 1, .reusable = true}, SHIFT(851), + [422] = {.count = 1, .reusable = false}, SHIFT(1044), + [424] = {.count = 1, .reusable = false}, SHIFT(848), + [426] = {.count = 1, .reusable = false}, SHIFT(146), + [428] = {.count = 1, .reusable = true}, SHIFT(840), + [430] = {.count = 1, .reusable = false}, SHIFT(1106), + [432] = {.count = 1, .reusable = false}, SHIFT(147), + [434] = {.count = 1, .reusable = false}, SHIFT(914), + [436] = {.count = 1, .reusable = false}, SHIFT(1042), + [438] = {.count = 1, .reusable = false}, SHIFT(1128), + [440] = {.count = 1, .reusable = false}, SHIFT(844), + [442] = {.count = 1, .reusable = false}, SHIFT(845), + [444] = {.count = 1, .reusable = false}, SHIFT(846), + [446] = {.count = 1, .reusable = false}, SHIFT(1045), + [448] = {.count = 1, .reusable = false}, SHIFT(847), + [450] = {.count = 1, .reusable = false}, SHIFT(849), + [452] = {.count = 1, .reusable = true}, SHIFT(573), + [454] = {.count = 1, .reusable = false}, SHIFT(1063), + [456] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [458] = {.count = 1, .reusable = true}, SHIFT(150), + [460] = {.count = 1, .reusable = true}, SHIFT(151), + [462] = {.count = 1, .reusable = false}, SHIFT(153), + [464] = {.count = 1, .reusable = true}, SHIFT(5), + [466] = {.count = 1, .reusable = true}, SHIFT(155), + [468] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), + [470] = {.count = 1, .reusable = true}, SHIFT(154), + [472] = {.count = 1, .reusable = true}, SHIFT(156), + [474] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(54), + [477] = {.count = 1, .reusable = false}, SHIFT(160), + [479] = {.count = 1, .reusable = true}, SHIFT(162), + [481] = {.count = 1, .reusable = true}, SHIFT(163), + [483] = {.count = 1, .reusable = true}, SHIFT(161), + [485] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), + [487] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), + [489] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [491] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [493] = {.count = 1, .reusable = false}, SHIFT(165), + [495] = {.count = 1, .reusable = true}, SHIFT(166), + [497] = {.count = 1, .reusable = false}, SHIFT(168), + [499] = {.count = 1, .reusable = false}, SHIFT(482), + [501] = {.count = 1, .reusable = true}, SHIFT(168), + [503] = {.count = 1, .reusable = true}, SHIFT(167), + [505] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [507] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [509] = {.count = 1, .reusable = false}, SHIFT(170), + [511] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), + [513] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), + [515] = {.count = 1, .reusable = true}, SHIFT(790), + [517] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), + [519] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), + [521] = {.count = 1, .reusable = true}, SHIFT(173), + [523] = {.count = 1, .reusable = false}, SHIFT(780), + [525] = {.count = 1, .reusable = true}, SHIFT(780), + [527] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .production_id = 2), + [529] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .production_id = 2), + [531] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), + [533] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), [535] = {.count = 1, .reusable = true}, SHIFT(178), - [537] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [539] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [541] = {.count = 1, .reusable = true}, SHIFT(181), - [543] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [545] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [547] = {.count = 1, .reusable = false}, SHIFT(183), - [549] = {.count = 1, .reusable = true}, SHIFT(185), - [551] = {.count = 1, .reusable = true}, SHIFT(184), - [553] = {.count = 1, .reusable = true}, SHIFT(187), - [555] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 2), - [557] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 2), - [559] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), - [561] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), - [563] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(98), - [566] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [568] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [570] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [572] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [574] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [576] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [578] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [581] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [584] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [587] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), - [590] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), - [593] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), - [596] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), - [599] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), - [602] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), - [605] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [608] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [610] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), - [613] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), - [616] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), - [619] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [622] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), - [625] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [628] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), - [631] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(44), - [634] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), - [637] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), - [640] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), - [643] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), - [646] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), - [649] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [652] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), - [655] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), - [658] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), - [661] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), - [664] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), - [667] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), - [670] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [673] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [676] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), - [679] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [682] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), - [685] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), - [688] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), - [691] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), - [694] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), - [696] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), - [698] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [700] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5), - [703] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [705] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(21), - [708] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(34), - [711] = {.count = 1, .reusable = false}, SHIFT(191), - [713] = {.count = 1, .reusable = true}, SHIFT(191), - [715] = {.count = 1, .reusable = false}, SHIFT(192), - [717] = {.count = 1, .reusable = true}, SHIFT(192), - [719] = {.count = 1, .reusable = false}, SHIFT(193), - [721] = {.count = 1, .reusable = true}, SHIFT(193), - [723] = {.count = 1, .reusable = false}, SHIFT(194), - [725] = {.count = 1, .reusable = true}, SHIFT(194), - [727] = {.count = 1, .reusable = false}, SHIFT(195), - [729] = {.count = 1, .reusable = true}, SHIFT(195), - [731] = {.count = 1, .reusable = false}, SHIFT(196), - [733] = {.count = 1, .reusable = true}, SHIFT(196), - [735] = {.count = 1, .reusable = false}, SHIFT(198), - [737] = {.count = 1, .reusable = true}, SHIFT(198), - [739] = {.count = 1, .reusable = false}, SHIFT(199), - [741] = {.count = 1, .reusable = true}, SHIFT(199), - [743] = {.count = 1, .reusable = false}, SHIFT(200), - [745] = {.count = 1, .reusable = true}, SHIFT(200), - [747] = {.count = 1, .reusable = false}, SHIFT(201), - [749] = {.count = 1, .reusable = true}, SHIFT(201), - [751] = {.count = 1, .reusable = true}, SHIFT(202), - [753] = {.count = 1, .reusable = false}, SHIFT(204), - [755] = {.count = 1, .reusable = true}, SHIFT(204), - [757] = {.count = 1, .reusable = true}, SHIFT(203), - [759] = {.count = 1, .reusable = false}, SHIFT(205), - [761] = {.count = 1, .reusable = true}, SHIFT(205), - [763] = {.count = 1, .reusable = false}, SHIFT(206), - [765] = {.count = 1, .reusable = true}, SHIFT(206), - [767] = {.count = 1, .reusable = false}, SHIFT(207), - [769] = {.count = 1, .reusable = true}, SHIFT(207), - [771] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), - [773] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), - [775] = {.count = 1, .reusable = false}, SHIFT(208), - [777] = {.count = 1, .reusable = true}, SHIFT(210), - [779] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [781] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [783] = {.count = 1, .reusable = true}, SHIFT(211), - [785] = {.count = 1, .reusable = true}, SHIFT(215), - [787] = {.count = 1, .reusable = true}, SHIFT(213), - [789] = {.count = 1, .reusable = true}, SHIFT(214), - [791] = {.count = 1, .reusable = true}, SHIFT(212), - [793] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [795] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [797] = {.count = 1, .reusable = true}, SHIFT(219), - [799] = {.count = 1, .reusable = false}, SHIFT(220), - [801] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [803] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [805] = {.count = 1, .reusable = true}, SHIFT(221), - [807] = {.count = 1, .reusable = true}, SHIFT(223), - [809] = {.count = 1, .reusable = true}, SHIFT(224), - [811] = {.count = 1, .reusable = true}, SHIFT(225), - [813] = {.count = 1, .reusable = true}, SHIFT(226), - [815] = {.count = 1, .reusable = true}, SHIFT(227), - [817] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .production_id = 2), - [819] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .production_id = 2), - [821] = {.count = 1, .reusable = true}, SHIFT(230), - [823] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [825] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [827] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(136), - [830] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [832] = {.count = 1, .reusable = true}, SHIFT(1011), - [834] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .production_id = 3), - [836] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .production_id = 3), - [838] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), - [840] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), - [842] = {.count = 1, .reusable = true}, SHIFT(894), - [844] = {.count = 1, .reusable = false}, SHIFT(905), - [846] = {.count = 1, .reusable = false}, SHIFT(1086), - [848] = {.count = 1, .reusable = false}, SHIFT(1036), - [850] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), - [852] = {.count = 1, .reusable = false}, SHIFT(953), - [854] = {.count = 1, .reusable = false}, SHIFT(1037), - [856] = {.count = 1, .reusable = false}, SHIFT(1082), - [858] = {.count = 1, .reusable = false}, SHIFT(1105), - [860] = {.count = 1, .reusable = false}, SHIFT(897), - [862] = {.count = 1, .reusable = false}, SHIFT(1038), - [864] = {.count = 1, .reusable = false}, SHIFT(898), - [866] = {.count = 1, .reusable = false}, SHIFT(1039), - [868] = {.count = 1, .reusable = true}, SHIFT(905), - [870] = {.count = 1, .reusable = false}, SHIFT(899), - [872] = {.count = 1, .reusable = false}, SHIFT(1040), - [874] = {.count = 1, .reusable = false}, SHIFT(900), - [876] = {.count = 1, .reusable = false}, SHIFT(901), - [878] = {.count = 1, .reusable = false}, SHIFT(902), - [880] = {.count = 1, .reusable = false}, SHIFT(903), - [882] = {.count = 1, .reusable = true}, SHIFT(632), - [884] = {.count = 1, .reusable = false}, SHIFT(1052), - [886] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), - [888] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), - [890] = {.count = 1, .reusable = false}, SHIFT(233), - [892] = {.count = 1, .reusable = true}, SHIFT(234), - [894] = {.count = 1, .reusable = false}, SHIFT(234), - [896] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [898] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [900] = {.count = 1, .reusable = true}, SHIFT(236), - [902] = {.count = 1, .reusable = false}, SHIFT(238), - [904] = {.count = 1, .reusable = true}, SHIFT(238), - [906] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [908] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5), - [911] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [913] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), - [915] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [917] = {.count = 1, .reusable = true}, SHIFT(243), - [919] = {.count = 1, .reusable = true}, SHIFT(244), - [921] = {.count = 1, .reusable = false}, SHIFT(250), - [923] = {.count = 1, .reusable = true}, SHIFT(250), - [925] = {.count = 1, .reusable = true}, SHIFT(247), - [927] = {.count = 1, .reusable = true}, SHIFT(248), - [929] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), - [931] = {.count = 1, .reusable = true}, SHIFT(251), - [933] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [935] = {.count = 1, .reusable = false}, SHIFT(156), - [937] = {.count = 1, .reusable = true}, SHIFT(258), - [939] = {.count = 1, .reusable = true}, SHIFT(257), - [941] = {.count = 1, .reusable = true}, SHIFT(259), - [943] = {.count = 1, .reusable = false}, SHIFT(263), - [945] = {.count = 1, .reusable = true}, SHIFT(263), - [947] = {.count = 1, .reusable = true}, SHIFT(262), - [949] = {.count = 1, .reusable = true}, SHIFT(264), - [951] = {.count = 1, .reusable = true}, SHIFT(265), - [953] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), - [955] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), - [957] = {.count = 1, .reusable = true}, SHIFT(266), - [959] = {.count = 1, .reusable = false}, SHIFT(266), - [961] = {.count = 1, .reusable = true}, SHIFT(268), - [963] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), - [965] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), - [967] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), - [969] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), - [971] = {.count = 1, .reusable = false}, SHIFT(270), - [973] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .production_id = 2), - [975] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .production_id = 2), - [977] = {.count = 1, .reusable = true}, SHIFT(951), - [979] = {.count = 1, .reusable = false}, SHIFT(271), - [981] = {.count = 1, .reusable = false}, SHIFT(960), - [983] = {.count = 1, .reusable = false}, SHIFT(1089), - [985] = {.count = 1, .reusable = false}, SHIFT(1050), - [987] = {.count = 1, .reusable = true}, SHIFT(272), - [989] = {.count = 1, .reusable = false}, SHIFT(273), - [991] = {.count = 1, .reusable = false}, SHIFT(1106), - [993] = {.count = 1, .reusable = false}, SHIFT(954), - [995] = {.count = 1, .reusable = true}, SHIFT(960), - [997] = {.count = 1, .reusable = false}, SHIFT(955), - [999] = {.count = 1, .reusable = false}, SHIFT(1051), - [1001] = {.count = 1, .reusable = false}, SHIFT(838), - [1003] = {.count = 1, .reusable = false}, SHIFT(956), - [1005] = {.count = 1, .reusable = false}, SHIFT(957), - [1007] = {.count = 1, .reusable = false}, SHIFT(958), - [1009] = {.count = 1, .reusable = true}, SHIFT(690), - [1011] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), - [1013] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), - [1015] = {.count = 1, .reusable = true}, SHIFT(275), - [1017] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), - [1019] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [1021] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [1023] = {.count = 1, .reusable = true}, SHIFT(276), - [1025] = {.count = 1, .reusable = true}, SHIFT(277), - [1027] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .production_id = 2), - [1029] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .production_id = 2), - [1031] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), - [1033] = {.count = 1, .reusable = true}, SHIFT(279), - [1035] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .production_id = 4), - [1037] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .production_id = 4), - [1039] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [1041] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [1043] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1045] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1047] = {.count = 1, .reusable = true}, SHIFT(280), - [1049] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), - [1051] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), - [1053] = {.count = 1, .reusable = true}, SHIFT(281), - [1055] = {.count = 1, .reusable = true}, SHIFT(282), - [1057] = {.count = 1, .reusable = true}, SHIFT(283), - [1059] = {.count = 1, .reusable = false}, SHIFT(284), - [1061] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [1063] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [1065] = {.count = 1, .reusable = true}, SHIFT(285), - [1067] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1069] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1071] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6), - [1074] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), - [1076] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), - [1078] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), - [1080] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), - [1082] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), - [1084] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), - [1086] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), - [1088] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), - [1090] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), - [1092] = {.count = 1, .reusable = true}, SHIFT(286), - [1094] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), - [1096] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), - [1098] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), - [1100] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .production_id = 5), - [1102] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .production_id = 5), - [1104] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), - [1106] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), - [1108] = {.count = 1, .reusable = true}, SHIFT(287), - [1110] = {.count = 1, .reusable = true}, SHIFT(288), - [1112] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), - [1114] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), - [1116] = {.count = 1, .reusable = true}, SHIFT(290), - [1118] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), - [1120] = {.count = 1, .reusable = false}, SHIFT(291), - [1122] = {.count = 1, .reusable = true}, SHIFT(292), - [1124] = {.count = 1, .reusable = false}, SHIFT(294), - [1126] = {.count = 1, .reusable = true}, SHIFT(294), - [1128] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), - [1130] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), - [1132] = {.count = 1, .reusable = true}, SHIFT(295), - [1134] = {.count = 1, .reusable = false}, SHIFT(300), - [1136] = {.count = 1, .reusable = true}, SHIFT(300), - [1138] = {.count = 1, .reusable = true}, SHIFT(297), - [1140] = {.count = 1, .reusable = true}, SHIFT(298), - [1142] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [1144] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [1146] = {.count = 1, .reusable = true}, SHIFT(301), - [1148] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), - [1150] = {.count = 1, .reusable = true}, SHIFT(34), - [1152] = {.count = 1, .reusable = false}, SHIFT(1013), - [1154] = {.count = 1, .reusable = false}, SHIFT(304), - [1156] = {.count = 1, .reusable = false}, SHIFT(986), - [1158] = {.count = 1, .reusable = false}, SHIFT(1014), - [1160] = {.count = 1, .reusable = false}, SHIFT(305), - [1162] = {.count = 1, .reusable = false}, SHIFT(306), - [1164] = {.count = 1, .reusable = false}, SHIFT(1059), - [1166] = {.count = 1, .reusable = false}, SHIFT(309), - [1168] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [1170] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [1172] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(128), - [1175] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3), - [1178] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(36), - [1181] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5), - [1184] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(21), - [1187] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(24), - [1190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(825), - [1193] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(129), - [1196] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(26), - [1199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(68), - [1202] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1025), - [1207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(44), - [1210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(34), - [1213] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .production_id = 6), - [1215] = {.count = 1, .reusable = false}, SHIFT(223), - [1217] = {.count = 1, .reusable = false}, SHIFT(315), - [1219] = {.count = 1, .reusable = true}, SHIFT(315), - [1221] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), - [1223] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), - [1225] = {.count = 1, .reusable = true}, SHIFT(316), - [1227] = {.count = 1, .reusable = true}, SHIFT(318), - [1229] = {.count = 1, .reusable = true}, SHIFT(317), - [1231] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), - [1233] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), - [1235] = {.count = 1, .reusable = false}, SHIFT(11), - [1237] = {.count = 1, .reusable = false}, SHIFT(20), - [1239] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), - [1241] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), - [1243] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), - [1245] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), - [1247] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), - [1249] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), - [1251] = {.count = 1, .reusable = true}, SHIFT(324), - [1253] = {.count = 1, .reusable = true}, SHIFT(325), - [1255] = {.count = 1, .reusable = false}, SHIFT(331), - [1257] = {.count = 1, .reusable = true}, SHIFT(327), - [1259] = {.count = 1, .reusable = true}, SHIFT(326), - [1261] = {.count = 1, .reusable = true}, SHIFT(331), - [1263] = {.count = 1, .reusable = false}, SHIFT(328), - [1265] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), - [1267] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), - [1269] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), - [1271] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), - [1273] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), - [1275] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [1277] = {.count = 1, .reusable = true}, SHIFT(335), - [1279] = {.count = 1, .reusable = true}, SHIFT(334), - [1281] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), - [1283] = {.count = 1, .reusable = true}, SHIFT(337), - [1285] = {.count = 1, .reusable = true}, SHIFT(341), - [1287] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), - [1289] = {.count = 1, .reusable = true}, SHIFT(338), - [1291] = {.count = 1, .reusable = true}, SHIFT(339), - [1293] = {.count = 1, .reusable = true}, SHIFT(342), - [1295] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [1297] = {.count = 1, .reusable = false}, SHIFT(344), - [1299] = {.count = 1, .reusable = true}, SHIFT(344), - [1301] = {.count = 1, .reusable = true}, SHIFT(343), - [1303] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), - [1305] = {.count = 1, .reusable = true}, SHIFT(346), - [1307] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), - [1309] = {.count = 1, .reusable = true}, SHIFT(349), - [1311] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), - [1313] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), - [1315] = {.count = 1, .reusable = false}, SHIFT(354), - [1317] = {.count = 1, .reusable = true}, SHIFT(354), - [1319] = {.count = 1, .reusable = true}, SHIFT(351), - [1321] = {.count = 1, .reusable = true}, SHIFT(352), - [1323] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), - [1325] = {.count = 1, .reusable = false}, SHIFT(357), - [1327] = {.count = 1, .reusable = true}, SHIFT(357), - [1329] = {.count = 1, .reusable = true}, SHIFT(356), - [1331] = {.count = 1, .reusable = true}, SHIFT(358), - [1333] = {.count = 1, .reusable = false}, SHIFT(359), - [1335] = {.count = 1, .reusable = true}, SHIFT(359), - [1337] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), - [1339] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), - [1341] = {.count = 1, .reusable = true}, SHIFT(360), - [1343] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [1345] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [1347] = {.count = 1, .reusable = true}, SHIFT(361), - [1349] = {.count = 1, .reusable = false}, SHIFT(363), - [1351] = {.count = 1, .reusable = true}, SHIFT(363), - [1353] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), - [1355] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), - [1357] = {.count = 1, .reusable = true}, SHIFT(364), - [1359] = {.count = 1, .reusable = true}, SHIFT(365), - [1361] = {.count = 1, .reusable = false}, SHIFT(367), - [1363] = {.count = 1, .reusable = true}, SHIFT(367), - [1365] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [1367] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [1369] = {.count = 1, .reusable = true}, SHIFT(368), - [1371] = {.count = 1, .reusable = true}, SHIFT(370), - [1373] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), - [1375] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), - [1377] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), - [1379] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), - [1381] = {.count = 1, .reusable = true}, SHIFT(372), - [1383] = {.count = 1, .reusable = true}, SHIFT(373), - [1385] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 2), - [1387] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [1389] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), - [1391] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), - [1393] = {.count = 1, .reusable = true}, SHIFT(375), - [1395] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), - [1397] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), - [1399] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), - [1401] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), - [1403] = {.count = 1, .reusable = false}, SHIFT(376), - [1405] = {.count = 1, .reusable = true}, SHIFT(376), - [1407] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), - [1409] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), - [1411] = {.count = 1, .reusable = true}, SHIFT(377), - [1413] = {.count = 1, .reusable = false}, SHIFT(379), - [1415] = {.count = 1, .reusable = true}, SHIFT(379), - [1417] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), - [1419] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), - [1421] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), - [1423] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), - [1425] = {.count = 1, .reusable = true}, SHIFT(380), - [1427] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), - [1429] = {.count = 1, .reusable = false}, SHIFT(382), - [1431] = {.count = 1, .reusable = true}, SHIFT(382), - [1433] = {.count = 1, .reusable = true}, SHIFT(381), - [1435] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), - [1437] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), - [1439] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(214), - [1442] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3), - [1444] = {.count = 1, .reusable = false}, SHIFT(1029), - [1446] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1448] = {.count = 1, .reusable = false}, SHIFT(995), - [1450] = {.count = 1, .reusable = false}, SHIFT(1030), - [1452] = {.count = 1, .reusable = false}, SHIFT(1061), - [1454] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [1456] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [1458] = {.count = 1, .reusable = false}, SHIFT(385), - [1460] = {.count = 1, .reusable = false}, SHIFT(386), - [1462] = {.count = 1, .reusable = true}, SHIFT(386), - [1464] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [1466] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [1468] = {.count = 1, .reusable = false}, SHIFT(388), - [1470] = {.count = 1, .reusable = true}, SHIFT(388), - [1472] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), - [1474] = {.count = 1, .reusable = true}, SHIFT(391), - [1476] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), - [1478] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), - [1480] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), - [1482] = {.count = 1, .reusable = false}, SHIFT(396), - [1484] = {.count = 1, .reusable = true}, SHIFT(396), - [1486] = {.count = 1, .reusable = true}, SHIFT(393), - [1488] = {.count = 1, .reusable = true}, SHIFT(394), - [1490] = {.count = 1, .reusable = true}, SHIFT(397), - [1492] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), - [1494] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), - [1496] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), - [1498] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), - [1500] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), - [1502] = {.count = 1, .reusable = false}, SHIFT(401), - [1504] = {.count = 1, .reusable = true}, SHIFT(401), - [1506] = {.count = 1, .reusable = true}, SHIFT(402), - [1508] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [1510] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [1512] = {.count = 1, .reusable = true}, SHIFT(403), - [1514] = {.count = 1, .reusable = true}, SHIFT(404), - [1516] = {.count = 1, .reusable = true}, SHIFT(328), - [1518] = {.count = 1, .reusable = true}, SHIFT(406), - [1520] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4), - [1522] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), - [1524] = {.count = 1, .reusable = true}, SHIFT(408), - [1526] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), - [1528] = {.count = 1, .reusable = true}, SHIFT(409), - [1530] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), - [1532] = {.count = 1, .reusable = false}, SHIFT(412), - [1534] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), - [1536] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [1538] = {.count = 1, .reusable = true}, SHIFT(413), - [1540] = {.count = 1, .reusable = false}, SHIFT(415), - [1542] = {.count = 1, .reusable = true}, SHIFT(415), - [1544] = {.count = 1, .reusable = true}, SHIFT(414), - [1546] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), - [1548] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), - [1550] = {.count = 1, .reusable = true}, SHIFT(416), - [1552] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), - [1554] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), - [1556] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), - [1558] = {.count = 1, .reusable = true}, SHIFT(417), - [1560] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), - [1562] = {.count = 1, .reusable = false}, SHIFT(419), - [1564] = {.count = 1, .reusable = true}, SHIFT(419), - [1566] = {.count = 1, .reusable = true}, SHIFT(418), - [1568] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), SHIFT_REPEAT(258), - [1571] = {.count = 1, .reusable = true}, SHIFT(421), - [1573] = {.count = 1, .reusable = false}, SHIFT(423), - [1575] = {.count = 1, .reusable = true}, SHIFT(423), - [1577] = {.count = 1, .reusable = true}, SHIFT(424), - [1579] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), - [1581] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), - [1583] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [1585] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [1587] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [1589] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [1591] = {.count = 1, .reusable = true}, SHIFT(425), - [1593] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), - [1595] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), - [1597] = {.count = 1, .reusable = false}, SHIFT(467), - [1599] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), - [1601] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), - [1603] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(951), - [1606] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(271), - [1609] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(960), - [1612] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1089), - [1615] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1050), - [1618] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(9), - [1621] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(11), - [1624] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(13), - [1627] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), - [1629] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(15), - [1632] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(273), - [1635] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1106), - [1638] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(954), - [1641] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(20), - [1644] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(960), - [1647] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(15), - [1650] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(955), - [1653] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1051), - [1656] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(838), - [1659] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(956), - [1662] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(957), - [1665] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(958), - [1668] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(690), - [1671] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(33), - [1674] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(6), - [1677] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4), - [1680] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), - [1682] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [1684] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [1686] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [1688] = {.count = 1, .reusable = true}, SHIFT(427), - [1690] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(428), - [1693] = {.count = 1, .reusable = true}, SHIFT(429), - [1695] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 3), - [1697] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [1699] = {.count = 1, .reusable = true}, SHIFT(430), - [1701] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), - [1703] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), - [1705] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1707] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), - [1709] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), - [1711] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(287), - [1714] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), - [1716] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), - [1718] = {.count = 1, .reusable = true}, SHIFT(432), - [1720] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [1722] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(34), - [1725] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1727] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), - [1729] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [1731] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [1733] = {.count = 1, .reusable = true}, SHIFT(435), - [1735] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [1737] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [1739] = {.count = 1, .reusable = true}, SHIFT(436), - [1741] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), - [1743] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), - [1745] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [1747] = {.count = 1, .reusable = true}, SHIFT(437), - [1749] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), - [1751] = {.count = 1, .reusable = false}, SHIFT(439), - [1753] = {.count = 1, .reusable = true}, SHIFT(439), - [1755] = {.count = 1, .reusable = true}, SHIFT(438), - [1757] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), - [1759] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), - [1761] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(317), - [1764] = {.count = 1, .reusable = true}, SHIFT(440), - [1766] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), - [1768] = {.count = 1, .reusable = true}, SHIFT(441), - [1770] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [1772] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [1774] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .production_id = 7), - [1776] = {.count = 1, .reusable = false}, SHIFT(443), - [1778] = {.count = 1, .reusable = true}, SHIFT(443), - [1780] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [1782] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(328), - [1785] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(325), - [1788] = {.count = 1, .reusable = false}, SHIFT(446), - [1790] = {.count = 1, .reusable = true}, SHIFT(444), - [1792] = {.count = 1, .reusable = true}, SHIFT(446), + [537] = {.count = 1, .reusable = true}, SHIFT(180), + [539] = {.count = 1, .reusable = true}, SHIFT(181), + [541] = {.count = 1, .reusable = true}, SHIFT(182), + [543] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .production_id = 2), + [545] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .production_id = 2), + [547] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), + [549] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), + [551] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [553] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [555] = {.count = 1, .reusable = true}, SHIFT(185), + [557] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [559] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [561] = {.count = 1, .reusable = false}, SHIFT(187), + [563] = {.count = 1, .reusable = true}, SHIFT(189), + [565] = {.count = 1, .reusable = true}, SHIFT(188), + [567] = {.count = 1, .reusable = true}, SHIFT(191), + [569] = {.count = 1, .reusable = true}, SHIFT(192), + [571] = {.count = 1, .reusable = false}, SHIFT(192), + [573] = {.count = 1, .reusable = true}, SHIFT(193), + [575] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), + [577] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), + [579] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 2), + [581] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 2), + [583] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(102), + [586] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [588] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [590] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [592] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [594] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [596] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [598] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), + [601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), + [604] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), + [607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), + [610] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), + [613] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(43), + [616] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), + [619] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), + [622] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), + [625] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), + [628] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), + [631] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), + [634] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), + [637] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [639] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), + [642] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), + [645] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), + [648] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), + [651] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(45), + [654] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), + [657] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), + [660] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), + [663] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), + [666] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), + [669] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), + [672] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), + [675] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), + [678] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), + [681] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [684] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), + [687] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), + [690] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), + [693] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [696] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), + [699] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [702] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(43), + [705] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), + [708] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), + [711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), + [714] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), + [717] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), + [719] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), + [721] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [723] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5), + [726] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [728] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(22), + [731] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(35), + [734] = {.count = 1, .reusable = false}, SHIFT(197), + [736] = {.count = 1, .reusable = true}, SHIFT(197), + [738] = {.count = 1, .reusable = false}, SHIFT(198), + [740] = {.count = 1, .reusable = true}, SHIFT(198), + [742] = {.count = 1, .reusable = false}, SHIFT(199), + [744] = {.count = 1, .reusable = true}, SHIFT(199), + [746] = {.count = 1, .reusable = false}, SHIFT(200), + [748] = {.count = 1, .reusable = true}, SHIFT(200), + [750] = {.count = 1, .reusable = false}, SHIFT(201), + [752] = {.count = 1, .reusable = true}, SHIFT(201), + [754] = {.count = 1, .reusable = false}, SHIFT(202), + [756] = {.count = 1, .reusable = true}, SHIFT(202), + [758] = {.count = 1, .reusable = false}, SHIFT(204), + [760] = {.count = 1, .reusable = true}, SHIFT(204), + [762] = {.count = 1, .reusable = false}, SHIFT(205), + [764] = {.count = 1, .reusable = true}, SHIFT(205), + [766] = {.count = 1, .reusable = false}, SHIFT(206), + [768] = {.count = 1, .reusable = true}, SHIFT(206), + [770] = {.count = 1, .reusable = false}, SHIFT(207), + [772] = {.count = 1, .reusable = true}, SHIFT(207), + [774] = {.count = 1, .reusable = true}, SHIFT(208), + [776] = {.count = 1, .reusable = false}, SHIFT(210), + [778] = {.count = 1, .reusable = true}, SHIFT(210), + [780] = {.count = 1, .reusable = true}, SHIFT(209), + [782] = {.count = 1, .reusable = false}, SHIFT(211), + [784] = {.count = 1, .reusable = true}, SHIFT(211), + [786] = {.count = 1, .reusable = false}, SHIFT(212), + [788] = {.count = 1, .reusable = true}, SHIFT(212), + [790] = {.count = 1, .reusable = false}, SHIFT(213), + [792] = {.count = 1, .reusable = true}, SHIFT(213), + [794] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), + [796] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), + [798] = {.count = 1, .reusable = false}, SHIFT(214), + [800] = {.count = 1, .reusable = true}, SHIFT(216), + [802] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [804] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [806] = {.count = 1, .reusable = true}, SHIFT(217), + [808] = {.count = 1, .reusable = true}, SHIFT(221), + [810] = {.count = 1, .reusable = true}, SHIFT(219), + [812] = {.count = 1, .reusable = true}, SHIFT(220), + [814] = {.count = 1, .reusable = true}, SHIFT(218), + [816] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [818] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [820] = {.count = 1, .reusable = true}, SHIFT(225), + [822] = {.count = 1, .reusable = false}, SHIFT(226), + [824] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [826] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [828] = {.count = 1, .reusable = true}, SHIFT(227), + [830] = {.count = 1, .reusable = true}, SHIFT(229), + [832] = {.count = 1, .reusable = true}, SHIFT(230), + [834] = {.count = 1, .reusable = true}, SHIFT(231), + [836] = {.count = 1, .reusable = true}, SHIFT(232), + [838] = {.count = 1, .reusable = true}, SHIFT(233), + [840] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .production_id = 2), + [842] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .production_id = 2), + [844] = {.count = 1, .reusable = true}, SHIFT(236), + [846] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), + [848] = {.count = 1, .reusable = true}, SHIFT(237), + [850] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .production_id = 3), + [852] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .production_id = 3), + [854] = {.count = 1, .reusable = true}, SHIFT(1032), + [856] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .production_id = 4), + [858] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .production_id = 4), + [860] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), + [862] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), + [864] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), + [866] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), + [868] = {.count = 1, .reusable = false}, SHIFT(239), + [870] = {.count = 1, .reusable = true}, SHIFT(912), + [872] = {.count = 1, .reusable = false}, SHIFT(923), + [874] = {.count = 1, .reusable = false}, SHIFT(913), + [876] = {.count = 1, .reusable = false}, SHIFT(1111), + [878] = {.count = 1, .reusable = false}, SHIFT(1058), + [880] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), + [882] = {.count = 1, .reusable = false}, SHIFT(971), + [884] = {.count = 1, .reusable = false}, SHIFT(1059), + [886] = {.count = 1, .reusable = false}, SHIFT(1107), + [888] = {.count = 1, .reusable = false}, SHIFT(1129), + [890] = {.count = 1, .reusable = false}, SHIFT(916), + [892] = {.count = 1, .reusable = false}, SHIFT(1060), + [894] = {.count = 1, .reusable = false}, SHIFT(917), + [896] = {.count = 1, .reusable = false}, SHIFT(1061), + [898] = {.count = 1, .reusable = true}, SHIFT(923), + [900] = {.count = 1, .reusable = false}, SHIFT(918), + [902] = {.count = 1, .reusable = false}, SHIFT(1062), + [904] = {.count = 1, .reusable = false}, SHIFT(919), + [906] = {.count = 1, .reusable = false}, SHIFT(920), + [908] = {.count = 1, .reusable = false}, SHIFT(921), + [910] = {.count = 1, .reusable = true}, SHIFT(644), + [912] = {.count = 1, .reusable = false}, SHIFT(1075), + [914] = {.count = 1, .reusable = true}, SHIFT(241), + [916] = {.count = 1, .reusable = false}, SHIFT(241), + [918] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [920] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [922] = {.count = 1, .reusable = true}, SHIFT(243), + [924] = {.count = 1, .reusable = false}, SHIFT(245), + [926] = {.count = 1, .reusable = true}, SHIFT(245), + [928] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [930] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5), + [933] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), + [935] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), + [937] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [939] = {.count = 1, .reusable = true}, SHIFT(250), + [941] = {.count = 1, .reusable = true}, SHIFT(251), + [943] = {.count = 1, .reusable = false}, SHIFT(257), + [945] = {.count = 1, .reusable = true}, SHIFT(257), + [947] = {.count = 1, .reusable = true}, SHIFT(254), + [949] = {.count = 1, .reusable = true}, SHIFT(255), + [951] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), + [953] = {.count = 1, .reusable = true}, SHIFT(258), + [955] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [957] = {.count = 1, .reusable = false}, SHIFT(161), + [959] = {.count = 1, .reusable = true}, SHIFT(265), + [961] = {.count = 1, .reusable = true}, SHIFT(264), + [963] = {.count = 1, .reusable = true}, SHIFT(266), + [965] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [967] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [969] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [971] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(166), + [974] = {.count = 1, .reusable = false}, SHIFT(270), + [976] = {.count = 1, .reusable = true}, SHIFT(270), + [978] = {.count = 1, .reusable = true}, SHIFT(269), + [980] = {.count = 1, .reusable = true}, SHIFT(271), + [982] = {.count = 1, .reusable = true}, SHIFT(272), + [984] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), + [986] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), + [988] = {.count = 1, .reusable = true}, SHIFT(273), + [990] = {.count = 1, .reusable = false}, SHIFT(273), + [992] = {.count = 1, .reusable = true}, SHIFT(275), + [994] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), + [996] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), + [998] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), + [1000] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), + [1002] = {.count = 1, .reusable = false}, SHIFT(277), + [1004] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .production_id = 2), + [1006] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .production_id = 2), + [1008] = {.count = 1, .reusable = true}, SHIFT(970), + [1010] = {.count = 1, .reusable = false}, SHIFT(278), + [1012] = {.count = 1, .reusable = false}, SHIFT(979), + [1014] = {.count = 1, .reusable = false}, SHIFT(576), + [1016] = {.count = 1, .reusable = false}, SHIFT(1114), + [1018] = {.count = 1, .reusable = false}, SHIFT(1073), + [1020] = {.count = 1, .reusable = true}, SHIFT(279), + [1022] = {.count = 1, .reusable = false}, SHIFT(280), + [1024] = {.count = 1, .reusable = false}, SHIFT(1130), + [1026] = {.count = 1, .reusable = false}, SHIFT(973), + [1028] = {.count = 1, .reusable = true}, SHIFT(979), + [1030] = {.count = 1, .reusable = false}, SHIFT(974), + [1032] = {.count = 1, .reusable = false}, SHIFT(1074), + [1034] = {.count = 1, .reusable = false}, SHIFT(975), + [1036] = {.count = 1, .reusable = false}, SHIFT(976), + [1038] = {.count = 1, .reusable = false}, SHIFT(977), + [1040] = {.count = 1, .reusable = true}, SHIFT(704), + [1042] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), + [1044] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), + [1046] = {.count = 1, .reusable = true}, SHIFT(282), + [1048] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), + [1050] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [1052] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [1054] = {.count = 1, .reusable = true}, SHIFT(283), + [1056] = {.count = 1, .reusable = true}, SHIFT(284), + [1058] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .production_id = 2), + [1060] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .production_id = 2), + [1062] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [1064] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [1066] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1068] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1070] = {.count = 1, .reusable = true}, SHIFT(286), + [1072] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), + [1074] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), + [1076] = {.count = 1, .reusable = true}, SHIFT(287), + [1078] = {.count = 1, .reusable = true}, SHIFT(288), + [1080] = {.count = 1, .reusable = true}, SHIFT(289), + [1082] = {.count = 1, .reusable = false}, SHIFT(290), + [1084] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [1086] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [1088] = {.count = 1, .reusable = true}, SHIFT(291), + [1090] = {.count = 1, .reusable = false}, SHIFT(292), + [1092] = {.count = 1, .reusable = true}, SHIFT(293), + [1094] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1096] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1098] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1031), + [1101] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(16), + [1104] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), + [1106] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), + [1108] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), + [1110] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), + [1112] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), + [1114] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), + [1116] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), + [1118] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), + [1120] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), + [1122] = {.count = 1, .reusable = true}, SHIFT(294), + [1124] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [1126] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), + [1128] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), + [1130] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .production_id = 5), + [1132] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .production_id = 5), + [1134] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), + [1136] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), + [1138] = {.count = 1, .reusable = true}, SHIFT(295), + [1140] = {.count = 1, .reusable = true}, SHIFT(296), + [1142] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), + [1144] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), + [1146] = {.count = 1, .reusable = true}, SHIFT(298), + [1148] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), + [1150] = {.count = 1, .reusable = false}, SHIFT(299), + [1152] = {.count = 1, .reusable = true}, SHIFT(300), + [1154] = {.count = 1, .reusable = false}, SHIFT(302), + [1156] = {.count = 1, .reusable = true}, SHIFT(302), + [1158] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), + [1160] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), + [1162] = {.count = 1, .reusable = true}, SHIFT(303), + [1164] = {.count = 1, .reusable = false}, SHIFT(308), + [1166] = {.count = 1, .reusable = true}, SHIFT(308), + [1168] = {.count = 1, .reusable = true}, SHIFT(305), + [1170] = {.count = 1, .reusable = true}, SHIFT(306), + [1172] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1174] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1176] = {.count = 1, .reusable = true}, SHIFT(309), + [1178] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), + [1180] = {.count = 1, .reusable = true}, SHIFT(35), + [1182] = {.count = 1, .reusable = false}, SHIFT(1034), + [1184] = {.count = 1, .reusable = false}, SHIFT(312), + [1186] = {.count = 1, .reusable = false}, SHIFT(1006), + [1188] = {.count = 1, .reusable = false}, SHIFT(1035), + [1190] = {.count = 1, .reusable = false}, SHIFT(313), + [1192] = {.count = 1, .reusable = false}, SHIFT(314), + [1194] = {.count = 1, .reusable = false}, SHIFT(1083), + [1196] = {.count = 1, .reusable = false}, SHIFT(317), + [1198] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [1200] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [1202] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(132), + [1205] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3), + [1208] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(37), + [1211] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5), + [1214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(22), + [1217] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(70), + [1220] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(25), + [1223] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(842), + [1226] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(133), + [1229] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(27), + [1232] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1234] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1046), + [1237] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(45), + [1240] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(35), + [1243] = {.count = 1, .reusable = false}, SHIFT(231), + [1245] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .production_id = 6), + [1247] = {.count = 1, .reusable = false}, SHIFT(323), + [1249] = {.count = 1, .reusable = true}, SHIFT(323), + [1251] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), + [1253] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), + [1255] = {.count = 1, .reusable = true}, SHIFT(324), + [1257] = {.count = 1, .reusable = true}, SHIFT(326), + [1259] = {.count = 1, .reusable = true}, SHIFT(325), + [1261] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), + [1263] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), + [1265] = {.count = 1, .reusable = false}, SHIFT(11), + [1267] = {.count = 1, .reusable = false}, SHIFT(21), + [1269] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), + [1271] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), + [1273] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), + [1275] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), + [1277] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), + [1279] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), + [1281] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), + [1283] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), + [1285] = {.count = 1, .reusable = true}, SHIFT(332), + [1287] = {.count = 1, .reusable = true}, SHIFT(333), + [1289] = {.count = 1, .reusable = false}, SHIFT(339), + [1291] = {.count = 1, .reusable = true}, SHIFT(335), + [1293] = {.count = 1, .reusable = true}, SHIFT(339), + [1295] = {.count = 1, .reusable = true}, SHIFT(334), + [1297] = {.count = 1, .reusable = false}, SHIFT(336), + [1299] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), + [1301] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), + [1303] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), + [1305] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), + [1307] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), + [1309] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [1311] = {.count = 1, .reusable = true}, SHIFT(343), + [1313] = {.count = 1, .reusable = true}, SHIFT(342), + [1315] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), + [1317] = {.count = 1, .reusable = true}, SHIFT(345), + [1319] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), + [1321] = {.count = 1, .reusable = true}, SHIFT(346), + [1323] = {.count = 1, .reusable = true}, SHIFT(347), + [1325] = {.count = 1, .reusable = true}, SHIFT(349), + [1327] = {.count = 1, .reusable = true}, SHIFT(350), + [1329] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [1331] = {.count = 1, .reusable = false}, SHIFT(352), + [1333] = {.count = 1, .reusable = true}, SHIFT(352), + [1335] = {.count = 1, .reusable = true}, SHIFT(351), + [1337] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), + [1339] = {.count = 1, .reusable = true}, SHIFT(354), + [1341] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), + [1343] = {.count = 1, .reusable = true}, SHIFT(357), + [1345] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), + [1347] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), + [1349] = {.count = 1, .reusable = false}, SHIFT(362), + [1351] = {.count = 1, .reusable = true}, SHIFT(362), + [1353] = {.count = 1, .reusable = true}, SHIFT(359), + [1355] = {.count = 1, .reusable = true}, SHIFT(360), + [1357] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), + [1359] = {.count = 1, .reusable = false}, SHIFT(365), + [1361] = {.count = 1, .reusable = true}, SHIFT(365), + [1363] = {.count = 1, .reusable = true}, SHIFT(364), + [1365] = {.count = 1, .reusable = true}, SHIFT(366), + [1367] = {.count = 1, .reusable = false}, SHIFT(367), + [1369] = {.count = 1, .reusable = true}, SHIFT(367), + [1371] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), + [1373] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), + [1375] = {.count = 1, .reusable = true}, SHIFT(368), + [1377] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [1379] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [1381] = {.count = 1, .reusable = true}, SHIFT(369), + [1383] = {.count = 1, .reusable = false}, SHIFT(371), + [1385] = {.count = 1, .reusable = true}, SHIFT(371), + [1387] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), + [1389] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), + [1391] = {.count = 1, .reusable = true}, SHIFT(372), + [1393] = {.count = 1, .reusable = true}, SHIFT(373), + [1395] = {.count = 1, .reusable = false}, SHIFT(375), + [1397] = {.count = 1, .reusable = true}, SHIFT(375), + [1399] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [1401] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [1403] = {.count = 1, .reusable = true}, SHIFT(376), + [1405] = {.count = 1, .reusable = true}, SHIFT(378), + [1407] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), + [1409] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), + [1411] = {.count = 1, .reusable = true}, SHIFT(380), + [1413] = {.count = 1, .reusable = true}, SHIFT(381), + [1415] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 2), + [1417] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [1419] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), + [1421] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), + [1423] = {.count = 1, .reusable = true}, SHIFT(383), + [1425] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 4), + [1427] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 4), + [1429] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 4), + [1431] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 4), + [1433] = {.count = 1, .reusable = true}, REDUCE(sym_attribute_specifier, 4), + [1435] = {.count = 1, .reusable = false}, REDUCE(sym_attribute_specifier, 4), + [1437] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), + [1439] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), + [1441] = {.count = 1, .reusable = false}, SHIFT(384), + [1443] = {.count = 1, .reusable = true}, SHIFT(384), + [1445] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), + [1447] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), + [1449] = {.count = 1, .reusable = true}, SHIFT(385), + [1451] = {.count = 1, .reusable = false}, SHIFT(387), + [1453] = {.count = 1, .reusable = true}, SHIFT(387), + [1455] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), + [1457] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), + [1459] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), + [1461] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), + [1463] = {.count = 1, .reusable = true}, SHIFT(388), + [1465] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), + [1467] = {.count = 1, .reusable = false}, SHIFT(390), + [1469] = {.count = 1, .reusable = true}, SHIFT(390), + [1471] = {.count = 1, .reusable = true}, SHIFT(389), + [1473] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), + [1475] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), + [1477] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(220), + [1480] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 3), + [1482] = {.count = 1, .reusable = false}, SHIFT(1051), + [1484] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1486] = {.count = 1, .reusable = false}, SHIFT(1015), + [1488] = {.count = 1, .reusable = false}, SHIFT(1052), + [1490] = {.count = 1, .reusable = false}, SHIFT(1085), + [1492] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [1494] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [1496] = {.count = 1, .reusable = false}, SHIFT(393), + [1498] = {.count = 1, .reusable = false}, SHIFT(394), + [1500] = {.count = 1, .reusable = true}, SHIFT(394), + [1502] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [1504] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [1506] = {.count = 1, .reusable = false}, SHIFT(396), + [1508] = {.count = 1, .reusable = true}, SHIFT(396), + [1510] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), + [1512] = {.count = 1, .reusable = true}, SHIFT(399), + [1514] = {.count = 1, .reusable = true}, REDUCE(sym_bitfield_clause, 2), + [1516] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [1518] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), + [1520] = {.count = 1, .reusable = false}, SHIFT(404), + [1522] = {.count = 1, .reusable = true}, SHIFT(404), + [1524] = {.count = 1, .reusable = true}, SHIFT(401), + [1526] = {.count = 1, .reusable = true}, SHIFT(402), + [1528] = {.count = 1, .reusable = true}, SHIFT(405), + [1530] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), + [1532] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), + [1534] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), + [1536] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), + [1538] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), + [1540] = {.count = 1, .reusable = false}, SHIFT(409), + [1542] = {.count = 1, .reusable = true}, SHIFT(409), + [1544] = {.count = 1, .reusable = true}, SHIFT(410), + [1546] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [1548] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [1550] = {.count = 1, .reusable = true}, SHIFT(411), + [1552] = {.count = 1, .reusable = true}, SHIFT(412), + [1554] = {.count = 1, .reusable = true}, SHIFT(336), + [1556] = {.count = 1, .reusable = true}, SHIFT(414), + [1558] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 4), + [1560] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), + [1562] = {.count = 1, .reusable = true}, SHIFT(416), + [1564] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), + [1566] = {.count = 1, .reusable = true}, SHIFT(417), + [1568] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), + [1570] = {.count = 1, .reusable = false}, SHIFT(420), + [1572] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), + [1574] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [1576] = {.count = 1, .reusable = true}, SHIFT(421), + [1578] = {.count = 1, .reusable = false}, SHIFT(423), + [1580] = {.count = 1, .reusable = true}, SHIFT(423), + [1582] = {.count = 1, .reusable = true}, SHIFT(422), + [1584] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), + [1586] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), + [1588] = {.count = 1, .reusable = true}, SHIFT(424), + [1590] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), + [1592] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), + [1594] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), + [1596] = {.count = 1, .reusable = true}, SHIFT(425), + [1598] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), + [1600] = {.count = 1, .reusable = false}, SHIFT(427), + [1602] = {.count = 1, .reusable = true}, SHIFT(427), + [1604] = {.count = 1, .reusable = true}, SHIFT(426), + [1606] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat2, 2), SHIFT_REPEAT(265), + [1609] = {.count = 1, .reusable = true}, SHIFT(429), + [1611] = {.count = 1, .reusable = false}, SHIFT(431), + [1613] = {.count = 1, .reusable = true}, SHIFT(431), + [1615] = {.count = 1, .reusable = true}, SHIFT(432), + [1617] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), + [1619] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), + [1621] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [1623] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [1625] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [1627] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [1629] = {.count = 1, .reusable = true}, SHIFT(433), + [1631] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), + [1633] = {.count = 1, .reusable = false}, SHIFT(475), + [1635] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), + [1637] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), + [1639] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), + [1641] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(970), + [1644] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(278), + [1647] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(979), + [1650] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(576), + [1653] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1114), + [1656] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1073), + [1659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(9), + [1662] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(11), + [1665] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(16), + [1668] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(13), + [1671] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), + [1673] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(15), + [1676] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(280), + [1679] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1130), + [1682] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(973), + [1685] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(21), + [1688] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(979), + [1691] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(33), + [1694] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(15), + [1697] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(974), + [1700] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1074), + [1703] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(975), + [1706] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(976), + [1709] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(977), + [1712] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(704), + [1715] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(34), + [1718] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4), + [1721] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), + [1723] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [1725] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [1727] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [1729] = {.count = 1, .reusable = true}, SHIFT(435), + [1731] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(436), + [1734] = {.count = 1, .reusable = true}, SHIFT(437), + [1736] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 3), + [1738] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [1740] = {.count = 1, .reusable = true}, SHIFT(438), + [1742] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), + [1744] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), + [1746] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1748] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), + [1750] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), + [1752] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(295), + [1755] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), + [1757] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), + [1759] = {.count = 1, .reusable = true}, SHIFT(440), + [1761] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [1763] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(35), + [1766] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1768] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), + [1770] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [1772] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [1774] = {.count = 1, .reusable = true}, SHIFT(443), + [1776] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [1778] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [1780] = {.count = 1, .reusable = true}, SHIFT(444), + [1782] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), + [1784] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), + [1786] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [1788] = {.count = 1, .reusable = true}, SHIFT(445), + [1790] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), + [1792] = {.count = 1, .reusable = false}, SHIFT(447), [1794] = {.count = 1, .reusable = true}, SHIFT(447), - [1796] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [1798] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), - [1800] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(334), - [1803] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(87), - [1807] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [1810] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), - [1812] = {.count = 1, .reusable = true}, SHIFT(449), - [1814] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6), - [1816] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6), - [1818] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), - [1820] = {.count = 1, .reusable = true}, SHIFT(450), - [1822] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [1824] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [1826] = {.count = 1, .reusable = true}, SHIFT(452), - [1828] = {.count = 1, .reusable = false}, SHIFT(454), - [1830] = {.count = 1, .reusable = true}, SHIFT(454), - [1832] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [1834] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [1836] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [1838] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [1840] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [1842] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 4), - [1844] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [1846] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(372), - [1849] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), - [1851] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), - [1853] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), - [1855] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [1857] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [1859] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [1861] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [1863] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), - [1865] = {.count = 1, .reusable = true}, SHIFT(458), - [1867] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), - [1869] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), - [1871] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [1873] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), - [1875] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [1877] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [1879] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [1881] = {.count = 1, .reusable = true}, SHIFT(459), - [1883] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(460), - [1886] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), - [1888] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), - [1890] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), - [1892] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), - [1894] = {.count = 1, .reusable = true}, SHIFT(462), - [1896] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), - [1898] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), - [1900] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), - [1903] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3), - [1906] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1908] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(36), - [1911] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5), - [1914] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4), - [1917] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6), - [1920] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [1923] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7), - [1926] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8), - [1929] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9), - [1932] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), - [1935] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(13), - [1938] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), - [1941] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1943] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), - [1946] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(44), - [1949] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(16), - [1952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), - [1955] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(20), - [1958] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(21), - [1961] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), - [1964] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), - [1967] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), - [1970] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), - [1973] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), - [1976] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [1979] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), - [1982] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [1985] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [1988] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [1991] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(467), - [1994] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), - [1997] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), - [2000] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), - [2002] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), - [2004] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [2006] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [2008] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), - [2010] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), - [2012] = {.count = 1, .reusable = true}, SHIFT(465), - [2014] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), - [2016] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), - [2018] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), - [2020] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), - [2022] = {.count = 1, .reusable = false}, SHIFT(96), - [2024] = {.count = 1, .reusable = false}, SHIFT(763), - [2026] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(743), - [2029] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(758), - [2032] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(753), - [2035] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1062), - [2038] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1001), - [2041] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(747), - [2044] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1002), - [2047] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1063), - [2050] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1090), - [2053] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(749), - [2056] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1004), - [2059] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(750), - [2062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1005), - [2065] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(752), - [2068] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1006), - [2071] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(754), - [2074] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(755), - [2077] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(756), - [2080] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(468), - [2083] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(758), - [2086] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1007), - [2089] = {.count = 1, .reusable = false}, SHIFT(510), - [2091] = {.count = 1, .reusable = true}, SHIFT(510), - [2093] = {.count = 1, .reusable = false}, SHIFT(511), - [2095] = {.count = 1, .reusable = true}, SHIFT(511), - [2097] = {.count = 1, .reusable = false}, SHIFT(512), - [2099] = {.count = 1, .reusable = true}, SHIFT(512), - [2101] = {.count = 1, .reusable = false}, SHIFT(513), - [2103] = {.count = 1, .reusable = true}, SHIFT(513), - [2105] = {.count = 1, .reusable = false}, SHIFT(514), - [2107] = {.count = 1, .reusable = true}, SHIFT(514), - [2109] = {.count = 1, .reusable = false}, SHIFT(515), - [2111] = {.count = 1, .reusable = true}, SHIFT(515), - [2113] = {.count = 1, .reusable = false}, SHIFT(516), - [2115] = {.count = 1, .reusable = true}, SHIFT(516), - [2117] = {.count = 1, .reusable = false}, SHIFT(517), - [2119] = {.count = 1, .reusable = true}, SHIFT(517), - [2121] = {.count = 1, .reusable = false}, SHIFT(518), - [2123] = {.count = 1, .reusable = true}, SHIFT(518), - [2125] = {.count = 1, .reusable = false}, SHIFT(529), - [2127] = {.count = 1, .reusable = false}, SHIFT(483), - [2129] = {.count = 1, .reusable = false}, SHIFT(485), - [2131] = {.count = 1, .reusable = true}, SHIFT(485), - [2133] = {.count = 1, .reusable = false}, SHIFT(489), - [2135] = {.count = 1, .reusable = false}, SHIFT(491), - [2137] = {.count = 1, .reusable = false}, SHIFT(488), - [2139] = {.count = 1, .reusable = true}, SHIFT(490), - [2141] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3), - [2143] = {.count = 1, .reusable = true}, SHIFT(484), - [2145] = {.count = 1, .reusable = true}, SHIFT(486), - [2147] = {.count = 1, .reusable = false}, SHIFT(487), - [2149] = {.count = 1, .reusable = false}, SHIFT(492), - [2151] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), - [2153] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1013), - [2156] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2158] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(986), - [2161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1014), - [2164] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1059), - [2167] = {.count = 1, .reusable = false}, SHIFT(751), - [2169] = {.count = 1, .reusable = false}, SHIFT(546), - [2171] = {.count = 1, .reusable = true}, SHIFT(546), - [2173] = {.count = 1, .reusable = true}, SHIFT(1012), - [2175] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5), - [2177] = {.count = 1, .reusable = false}, SHIFT(909), - [2179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(834), - [2182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1020), - [2185] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [2187] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1077), - [2190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1022), - [2193] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(834), - [2196] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1023), - [2199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(831), - [2202] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(823), - [2205] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1081), - [2208] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(896), - [2211] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1021), - [2214] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1104), - [2217] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(826), - [2220] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(827), - [2223] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(828), - [2226] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1024), - [2229] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(829), - [2232] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(830), - [2235] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(832), - [2238] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(563), - [2241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1041), - [2244] = {.count = 1, .reusable = false}, SHIFT(600), - [2246] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1029), - [2249] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(995), - [2252] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1030), - [2255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1061), - [2258] = {.count = 1, .reusable = false}, SHIFT(963), - [2260] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(894), - [2263] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(905), - [2266] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(900), - [2269] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1086), - [2272] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1036), - [2275] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(953), - [2278] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1037), - [2281] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1082), - [2284] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1105), - [2287] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(897), - [2290] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1038), - [2293] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(898), - [2296] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1039), - [2299] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(899), - [2302] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1040), - [2305] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(901), - [2308] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(902), - [2311] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(903), - [2314] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(632), - [2317] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(905), - [2320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1052), - [2323] = {.count = 1, .reusable = false}, SHIFT(667), - [2325] = {.count = 1, .reusable = false}, SHIFT(713), - [2327] = {.count = 1, .reusable = true}, SHIFT(470), - [2329] = {.count = 1, .reusable = false}, SHIFT(761), - [2331] = {.count = 1, .reusable = true}, SHIFT(761), - [2333] = {.count = 1, .reusable = true}, SHIFT(1008), - [2335] = {.count = 1, .reusable = true}, SHIFT(762), - [2337] = {.count = 1, .reusable = false}, SHIFT(471), - [2339] = {.count = 1, .reusable = true}, SHIFT(472), - [2341] = {.count = 1, .reusable = false}, SHIFT(765), - [2343] = {.count = 1, .reusable = true}, SHIFT(474), - [2345] = {.count = 1, .reusable = true}, SHIFT(475), - [2347] = {.count = 1, .reusable = true}, SHIFT(824), - [2349] = {.count = 1, .reusable = true}, SHIFT(477), - [2351] = {.count = 1, .reusable = false}, SHIFT(774), - [2353] = {.count = 1, .reusable = true}, SHIFT(774), - [2355] = {.count = 1, .reusable = true}, SHIFT(478), - [2357] = {.count = 1, .reusable = true}, SHIFT(480), - [2359] = {.count = 1, .reusable = true}, SHIFT(481), - [2361] = {.count = 1, .reusable = true}, SHIFT(776), - [2363] = {.count = 1, .reusable = true}, SHIFT(493), - [2365] = {.count = 1, .reusable = true}, SHIFT(494), - [2367] = {.count = 1, .reusable = false}, SHIFT(495), - [2369] = {.count = 1, .reusable = true}, SHIFT(496), - [2371] = {.count = 1, .reusable = true}, SHIFT(497), - [2373] = {.count = 1, .reusable = false}, SHIFT(498), - [2375] = {.count = 1, .reusable = true}, SHIFT(499), - [2377] = {.count = 1, .reusable = true}, SHIFT(500), - [2379] = {.count = 1, .reusable = false}, SHIFT(501), - [2381] = {.count = 1, .reusable = true}, SHIFT(786), - [2383] = {.count = 1, .reusable = true}, SHIFT(788), - [2385] = {.count = 1, .reusable = true}, SHIFT(507), - [2387] = {.count = 1, .reusable = false}, SHIFT(789), - [2389] = {.count = 1, .reusable = true}, SHIFT(509), - [2391] = {.count = 1, .reusable = true}, SHIFT(519), - [2393] = {.count = 1, .reusable = true}, SHIFT(522), - [2395] = {.count = 1, .reusable = true}, SHIFT(523), - [2397] = {.count = 1, .reusable = true}, SHIFT(1028), - [2399] = {.count = 1, .reusable = true}, SHIFT(525), - [2401] = {.count = 1, .reusable = false}, SHIFT(525), - [2403] = {.count = 1, .reusable = true}, SHIFT(526), - [2405] = {.count = 1, .reusable = true}, SHIFT(527), - [2407] = {.count = 1, .reusable = false}, SHIFT(527), - [2409] = {.count = 1, .reusable = true}, SHIFT(528), - [2411] = {.count = 1, .reusable = true}, SHIFT(530), - [2413] = {.count = 1, .reusable = true}, SHIFT(531), - [2415] = {.count = 1, .reusable = true}, SHIFT(532), - [2417] = {.count = 1, .reusable = false}, SHIFT(804), - [2419] = {.count = 1, .reusable = true}, SHIFT(533), - [2421] = {.count = 1, .reusable = true}, SHIFT(534), - [2423] = {.count = 1, .reusable = false}, SHIFT(535), - [2425] = {.count = 1, .reusable = false}, SHIFT(536), - [2427] = {.count = 1, .reusable = true}, SHIFT(537), - [2429] = {.count = 1, .reusable = true}, SHIFT(538), - [2431] = {.count = 1, .reusable = true}, SHIFT(539), - [2433] = {.count = 1, .reusable = false}, SHIFT(812), - [2435] = {.count = 1, .reusable = true}, SHIFT(812), - [2437] = {.count = 1, .reusable = true}, SHIFT(540), - [2439] = {.count = 1, .reusable = true}, SHIFT(541), - [2441] = {.count = 1, .reusable = true}, SHIFT(542), - [2443] = {.count = 1, .reusable = true}, SHIFT(544), - [2445] = {.count = 1, .reusable = true}, SHIFT(545), - [2447] = {.count = 1, .reusable = false}, SHIFT(547), - [2449] = {.count = 1, .reusable = true}, SHIFT(547), - [2451] = {.count = 1, .reusable = false}, SHIFT(548), - [2453] = {.count = 1, .reusable = true}, SHIFT(548), - [2455] = {.count = 1, .reusable = true}, SHIFT(549), - [2457] = {.count = 1, .reusable = true}, SHIFT(550), - [2459] = {.count = 1, .reusable = true}, SHIFT(552), - [2461] = {.count = 1, .reusable = false}, SHIFT(818), - [2463] = {.count = 1, .reusable = true}, SHIFT(818), - [2465] = {.count = 1, .reusable = true}, SHIFT(553), - [2467] = {.count = 1, .reusable = true}, SHIFT(554), - [2469] = {.count = 1, .reusable = true}, SHIFT(555), - [2471] = {.count = 1, .reusable = true}, SHIFT(557), - [2473] = {.count = 1, .reusable = false}, SHIFT(821), - [2475] = {.count = 1, .reusable = true}, SHIFT(821), - [2477] = {.count = 1, .reusable = true}, SHIFT(559), - [2479] = {.count = 1, .reusable = true}, SHIFT(561), - [2481] = {.count = 1, .reusable = true}, SHIFT(564), - [2483] = {.count = 1, .reusable = true}, SHIFT(837), - [2485] = {.count = 1, .reusable = false}, SHIFT(565), - [2487] = {.count = 1, .reusable = true}, SHIFT(566), - [2489] = {.count = 1, .reusable = false}, SHIFT(840), - [2491] = {.count = 1, .reusable = true}, SHIFT(567), - [2493] = {.count = 1, .reusable = true}, SHIFT(568), - [2495] = {.count = 1, .reusable = true}, SHIFT(895), - [2497] = {.count = 1, .reusable = true}, SHIFT(570), - [2499] = {.count = 1, .reusable = false}, SHIFT(847), - [2501] = {.count = 1, .reusable = true}, SHIFT(847), - [2503] = {.count = 1, .reusable = true}, SHIFT(571), - [2505] = {.count = 1, .reusable = true}, SHIFT(573), - [2507] = {.count = 1, .reusable = true}, SHIFT(574), - [2509] = {.count = 1, .reusable = true}, SHIFT(849), - [2511] = {.count = 1, .reusable = true}, SHIFT(576), - [2513] = {.count = 1, .reusable = true}, SHIFT(577), - [2515] = {.count = 1, .reusable = false}, SHIFT(578), - [2517] = {.count = 1, .reusable = true}, SHIFT(696), - [2519] = {.count = 1, .reusable = true}, SHIFT(579), - [2521] = {.count = 1, .reusable = true}, SHIFT(580), - [2523] = {.count = 1, .reusable = false}, SHIFT(581), - [2525] = {.count = 1, .reusable = true}, SHIFT(582), - [2527] = {.count = 1, .reusable = false}, SHIFT(583), - [2529] = {.count = 1, .reusable = true}, SHIFT(858), - [2531] = {.count = 1, .reusable = true}, SHIFT(860), - [2533] = {.count = 1, .reusable = true}, SHIFT(588), - [2535] = {.count = 1, .reusable = false}, SHIFT(861), - [2537] = {.count = 1, .reusable = true}, SHIFT(590), - [2539] = {.count = 1, .reusable = true}, SHIFT(591), - [2541] = {.count = 1, .reusable = true}, SHIFT(594), - [2543] = {.count = 1, .reusable = true}, SHIFT(596), - [2545] = {.count = 1, .reusable = false}, SHIFT(596), - [2547] = {.count = 1, .reusable = true}, SHIFT(597), - [2549] = {.count = 1, .reusable = true}, SHIFT(598), - [2551] = {.count = 1, .reusable = false}, SHIFT(598), - [2553] = {.count = 1, .reusable = true}, SHIFT(599), - [2555] = {.count = 1, .reusable = true}, SHIFT(601), - [2557] = {.count = 1, .reusable = true}, SHIFT(602), - [2559] = {.count = 1, .reusable = true}, SHIFT(603), - [2561] = {.count = 1, .reusable = false}, SHIFT(875), - [2563] = {.count = 1, .reusable = true}, SHIFT(604), - [2565] = {.count = 1, .reusable = false}, SHIFT(605), - [2567] = {.count = 1, .reusable = false}, SHIFT(606), - [2569] = {.count = 1, .reusable = true}, SHIFT(607), - [2571] = {.count = 1, .reusable = true}, SHIFT(608), - [2573] = {.count = 1, .reusable = true}, SHIFT(609), - [2575] = {.count = 1, .reusable = false}, SHIFT(883), - [2577] = {.count = 1, .reusable = true}, SHIFT(883), - [2579] = {.count = 1, .reusable = true}, SHIFT(610), - [2581] = {.count = 1, .reusable = true}, SHIFT(611), - [2583] = {.count = 1, .reusable = true}, SHIFT(612), - [2585] = {.count = 1, .reusable = true}, SHIFT(614), - [2587] = {.count = 1, .reusable = true}, SHIFT(615), - [2589] = {.count = 1, .reusable = false}, SHIFT(616), - [2591] = {.count = 1, .reusable = true}, SHIFT(616), - [2593] = {.count = 1, .reusable = false}, SHIFT(617), - [2595] = {.count = 1, .reusable = true}, SHIFT(617), - [2597] = {.count = 1, .reusable = true}, SHIFT(618), - [2599] = {.count = 1, .reusable = true}, SHIFT(619), - [2601] = {.count = 1, .reusable = true}, SHIFT(621), - [2603] = {.count = 1, .reusable = false}, SHIFT(889), - [2605] = {.count = 1, .reusable = true}, SHIFT(889), - [2607] = {.count = 1, .reusable = true}, SHIFT(622), - [2609] = {.count = 1, .reusable = true}, SHIFT(623), - [2611] = {.count = 1, .reusable = true}, SHIFT(624), - [2613] = {.count = 1, .reusable = true}, SHIFT(626), - [2615] = {.count = 1, .reusable = false}, SHIFT(892), - [2617] = {.count = 1, .reusable = true}, SHIFT(892), - [2619] = {.count = 1, .reusable = true}, SHIFT(628), - [2621] = {.count = 1, .reusable = true}, SHIFT(630), - [2623] = {.count = 1, .reusable = true}, SHIFT(633), - [2625] = {.count = 1, .reusable = true}, SHIFT(908), - [2627] = {.count = 1, .reusable = false}, SHIFT(634), - [2629] = {.count = 1, .reusable = true}, SHIFT(635), - [2631] = {.count = 1, .reusable = false}, SHIFT(911), - [2633] = {.count = 1, .reusable = true}, SHIFT(636), - [2635] = {.count = 1, .reusable = true}, SHIFT(637), - [2637] = {.count = 1, .reusable = true}, SHIFT(952), - [2639] = {.count = 1, .reusable = true}, SHIFT(639), - [2641] = {.count = 1, .reusable = false}, SHIFT(918), - [2643] = {.count = 1, .reusable = true}, SHIFT(918), - [2645] = {.count = 1, .reusable = true}, SHIFT(640), - [2647] = {.count = 1, .reusable = true}, SHIFT(642), - [2649] = {.count = 1, .reusable = true}, SHIFT(643), - [2651] = {.count = 1, .reusable = true}, SHIFT(920), - [2653] = {.count = 1, .reusable = true}, SHIFT(645), - [2655] = {.count = 1, .reusable = true}, SHIFT(646), - [2657] = {.count = 1, .reusable = false}, SHIFT(647), - [2659] = {.count = 1, .reusable = true}, SHIFT(648), - [2661] = {.count = 1, .reusable = true}, SHIFT(649), - [2663] = {.count = 1, .reusable = false}, SHIFT(650), - [2665] = {.count = 1, .reusable = true}, SHIFT(651), - [2667] = {.count = 1, .reusable = false}, SHIFT(652), - [2669] = {.count = 1, .reusable = true}, SHIFT(928), - [2671] = {.count = 1, .reusable = true}, SHIFT(930), - [2673] = {.count = 1, .reusable = true}, SHIFT(657), - [2675] = {.count = 1, .reusable = false}, SHIFT(931), - [2677] = {.count = 1, .reusable = true}, SHIFT(659), - [2679] = {.count = 1, .reusable = true}, SHIFT(660), - [2681] = {.count = 1, .reusable = true}, SHIFT(1044), - [2683] = {.count = 1, .reusable = true}, SHIFT(663), - [2685] = {.count = 1, .reusable = false}, SHIFT(663), - [2687] = {.count = 1, .reusable = true}, SHIFT(664), - [2689] = {.count = 1, .reusable = true}, SHIFT(665), - [2691] = {.count = 1, .reusable = false}, SHIFT(665), - [2693] = {.count = 1, .reusable = true}, SHIFT(666), - [2695] = {.count = 1, .reusable = true}, SHIFT(668), - [2697] = {.count = 1, .reusable = true}, SHIFT(669), - [2699] = {.count = 1, .reusable = true}, SHIFT(670), - [2701] = {.count = 1, .reusable = false}, SHIFT(941), - [2703] = {.count = 1, .reusable = true}, SHIFT(671), - [2705] = {.count = 1, .reusable = true}, SHIFT(672), - [2707] = {.count = 1, .reusable = true}, SHIFT(673), - [2709] = {.count = 1, .reusable = false}, SHIFT(943), - [2711] = {.count = 1, .reusable = true}, SHIFT(943), - [2713] = {.count = 1, .reusable = true}, SHIFT(674), - [2715] = {.count = 1, .reusable = true}, SHIFT(675), - [2717] = {.count = 1, .reusable = true}, SHIFT(676), - [2719] = {.count = 1, .reusable = true}, SHIFT(678), - [2721] = {.count = 1, .reusable = true}, SHIFT(679), - [2723] = {.count = 1, .reusable = true}, SHIFT(680), - [2725] = {.count = 1, .reusable = true}, SHIFT(682), - [2727] = {.count = 1, .reusable = false}, SHIFT(946), - [2729] = {.count = 1, .reusable = true}, SHIFT(946), - [2731] = {.count = 1, .reusable = true}, SHIFT(684), + [1796] = {.count = 1, .reusable = true}, SHIFT(446), + [1798] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), + [1800] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), + [1802] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(325), + [1805] = {.count = 1, .reusable = true}, SHIFT(448), + [1807] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), + [1809] = {.count = 1, .reusable = true}, SHIFT(449), + [1811] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [1813] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [1815] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .production_id = 7), + [1817] = {.count = 1, .reusable = false}, SHIFT(451), + [1819] = {.count = 1, .reusable = true}, SHIFT(451), + [1821] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [1823] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(336), + [1826] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(333), + [1829] = {.count = 1, .reusable = false}, SHIFT(454), + [1831] = {.count = 1, .reusable = true}, SHIFT(452), + [1833] = {.count = 1, .reusable = true}, SHIFT(454), + [1835] = {.count = 1, .reusable = true}, SHIFT(455), + [1837] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [1839] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), + [1841] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(342), + [1844] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(54), + [1848] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [1851] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), + [1853] = {.count = 1, .reusable = true}, SHIFT(457), + [1855] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 6), + [1857] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 6), + [1859] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), + [1861] = {.count = 1, .reusable = true}, SHIFT(458), + [1863] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [1865] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [1867] = {.count = 1, .reusable = true}, SHIFT(460), + [1869] = {.count = 1, .reusable = false}, SHIFT(462), + [1871] = {.count = 1, .reusable = true}, SHIFT(462), + [1873] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [1875] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [1877] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [1879] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [1881] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [1883] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_params, 4), + [1885] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [1887] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(380), + [1890] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), + [1892] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), + [1894] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), + [1896] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [1898] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [1900] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [1902] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [1904] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), + [1906] = {.count = 1, .reusable = true}, SHIFT(466), + [1908] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), + [1910] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), + [1912] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [1914] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), + [1916] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [1918] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [1920] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [1922] = {.count = 1, .reusable = true}, SHIFT(467), + [1924] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(468), + [1927] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), + [1929] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), + [1931] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), + [1933] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), + [1935] = {.count = 1, .reusable = true}, SHIFT(470), + [1937] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), + [1939] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [1941] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2), + [1944] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3), + [1947] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1949] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), + [1952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5), + [1955] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4), + [1958] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(43), + [1961] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(475), + [1964] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7), + [1967] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8), + [1970] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9), + [1973] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), + [1976] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(13), + [1979] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), + [1982] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1984] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), + [1987] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(16), + [1990] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(45), + [1993] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), + [1996] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(18), + [1999] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(21), + [2002] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(22), + [2005] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), + [2008] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), + [2011] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [2014] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), + [2017] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), + [2020] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [2023] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [2026] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [2029] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(43), + [2032] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), + [2035] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(33), + [2038] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), + [2041] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), + [2044] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), + [2046] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), + [2048] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [2050] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [2052] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), + [2054] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), + [2056] = {.count = 1, .reusable = true}, SHIFT(473), + [2058] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), + [2060] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), + [2062] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), + [2064] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), + [2066] = {.count = 1, .reusable = false}, SHIFT(101), + [2068] = {.count = 1, .reusable = false}, SHIFT(480), + [2070] = {.count = 1, .reusable = true}, SHIFT(479), + [2072] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(758), + [2075] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(773), + [2078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1086), + [2081] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1021), + [2084] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(760), + [2087] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(762), + [2090] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1022), + [2093] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1087), + [2096] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1115), + [2099] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(765), + [2102] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1024), + [2105] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(766), + [2108] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1025), + [2111] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(768), + [2114] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1026), + [2117] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(769), + [2120] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(770), + [2123] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(771), + [2126] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(476), + [2129] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(773), + [2132] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1027), + [2135] = {.count = 1, .reusable = false}, SHIFT(519), + [2137] = {.count = 1, .reusable = true}, SHIFT(519), + [2139] = {.count = 1, .reusable = false}, SHIFT(520), + [2141] = {.count = 1, .reusable = true}, SHIFT(520), + [2143] = {.count = 1, .reusable = false}, SHIFT(521), + [2145] = {.count = 1, .reusable = true}, SHIFT(521), + [2147] = {.count = 1, .reusable = false}, SHIFT(522), + [2149] = {.count = 1, .reusable = true}, SHIFT(522), + [2151] = {.count = 1, .reusable = false}, SHIFT(523), + [2153] = {.count = 1, .reusable = true}, SHIFT(523), + [2155] = {.count = 1, .reusable = false}, SHIFT(524), + [2157] = {.count = 1, .reusable = true}, SHIFT(524), + [2159] = {.count = 1, .reusable = false}, SHIFT(525), + [2161] = {.count = 1, .reusable = true}, SHIFT(525), + [2163] = {.count = 1, .reusable = false}, SHIFT(526), + [2165] = {.count = 1, .reusable = true}, SHIFT(526), + [2167] = {.count = 1, .reusable = false}, SHIFT(527), + [2169] = {.count = 1, .reusable = true}, SHIFT(527), + [2171] = {.count = 1, .reusable = false}, SHIFT(492), + [2173] = {.count = 1, .reusable = false}, SHIFT(494), + [2175] = {.count = 1, .reusable = true}, SHIFT(494), + [2177] = {.count = 1, .reusable = false}, SHIFT(498), + [2179] = {.count = 1, .reusable = false}, SHIFT(500), + [2181] = {.count = 1, .reusable = false}, SHIFT(497), + [2183] = {.count = 1, .reusable = true}, SHIFT(499), + [2185] = {.count = 1, .reusable = false}, REDUCE(sym_assignment_expression, 3), + [2187] = {.count = 1, .reusable = true}, SHIFT(493), + [2189] = {.count = 1, .reusable = true}, SHIFT(495), + [2191] = {.count = 1, .reusable = false}, SHIFT(496), + [2193] = {.count = 1, .reusable = false}, SHIFT(501), + [2195] = {.count = 1, .reusable = false}, SHIFT(538), + [2197] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), + [2199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1034), + [2202] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1006), + [2207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1035), + [2210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1083), + [2213] = {.count = 1, .reusable = false}, SHIFT(767), + [2215] = {.count = 1, .reusable = false}, SHIFT(556), + [2217] = {.count = 1, .reusable = true}, SHIFT(556), + [2219] = {.count = 1, .reusable = true}, SHIFT(1033), + [2221] = {.count = 1, .reusable = false}, REDUCE(sym_conditional_expression, 5), + [2223] = {.count = 1, .reusable = false}, SHIFT(647), + [2225] = {.count = 1, .reusable = true}, SHIFT(706), + [2227] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(851), + [2230] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(841), + [2233] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1041), + [2236] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [2238] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1102), + [2241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1043), + [2244] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(851), + [2247] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1044), + [2250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(848), + [2253] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(840), + [2256] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1106), + [2259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(914), + [2262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1042), + [2265] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1128), + [2268] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(844), + [2271] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(845), + [2274] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(846), + [2277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1045), + [2280] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(847), + [2283] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(849), + [2286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(573), + [2289] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1063), + [2292] = {.count = 1, .reusable = false}, SHIFT(611), + [2294] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1051), + [2297] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1015), + [2300] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1052), + [2303] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1085), + [2306] = {.count = 1, .reusable = false}, SHIFT(839), + [2308] = {.count = 1, .reusable = true}, SHIFT(575), + [2310] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(912), + [2313] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(923), + [2316] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1111), + [2319] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1058), + [2322] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(913), + [2325] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(971), + [2328] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1059), + [2331] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1107), + [2334] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1129), + [2337] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(916), + [2340] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1060), + [2343] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(917), + [2346] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1061), + [2349] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(918), + [2352] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1062), + [2355] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(919), + [2358] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(920), + [2361] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(921), + [2364] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(644), + [2367] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(923), + [2370] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1075), + [2373] = {.count = 1, .reusable = false}, SHIFT(680), + [2375] = {.count = 1, .reusable = false}, SHIFT(727), + [2377] = {.count = 1, .reusable = true}, SHIFT(478), + [2379] = {.count = 1, .reusable = false}, SHIFT(776), + [2381] = {.count = 1, .reusable = true}, SHIFT(1028), + [2383] = {.count = 1, .reusable = true}, SHIFT(776), + [2385] = {.count = 1, .reusable = true}, SHIFT(481), + [2387] = {.count = 1, .reusable = false}, SHIFT(778), + [2389] = {.count = 1, .reusable = false}, SHIFT(483), + [2391] = {.count = 1, .reusable = true}, SHIFT(783), + [2393] = {.count = 1, .reusable = true}, SHIFT(484), + [2395] = {.count = 1, .reusable = true}, SHIFT(485), + [2397] = {.count = 1, .reusable = true}, SHIFT(843), + [2399] = {.count = 1, .reusable = true}, SHIFT(1049), + [2401] = {.count = 1, .reusable = false}, SHIFT(788), + [2403] = {.count = 1, .reusable = true}, SHIFT(788), + [2405] = {.count = 1, .reusable = true}, SHIFT(487), + [2407] = {.count = 1, .reusable = true}, SHIFT(489), + [2409] = {.count = 1, .reusable = true}, SHIFT(490), + [2411] = {.count = 1, .reusable = true}, SHIFT(791), + [2413] = {.count = 1, .reusable = true}, SHIFT(502), + [2415] = {.count = 1, .reusable = true}, SHIFT(503), + [2417] = {.count = 1, .reusable = true}, SHIFT(506), + [2419] = {.count = 1, .reusable = true}, SHIFT(507), + [2421] = {.count = 1, .reusable = false}, SHIFT(508), + [2423] = {.count = 1, .reusable = true}, SHIFT(509), + [2425] = {.count = 1, .reusable = true}, SHIFT(510), + [2427] = {.count = 1, .reusable = false}, SHIFT(511), + [2429] = {.count = 1, .reusable = false}, SHIFT(512), + [2431] = {.count = 1, .reusable = true}, SHIFT(801), + [2433] = {.count = 1, .reusable = true}, SHIFT(803), + [2435] = {.count = 1, .reusable = true}, SHIFT(516), + [2437] = {.count = 1, .reusable = false}, SHIFT(804), + [2439] = {.count = 1, .reusable = true}, SHIFT(518), + [2441] = {.count = 1, .reusable = true}, SHIFT(806), + [2443] = {.count = 1, .reusable = true}, SHIFT(528), + [2445] = {.count = 1, .reusable = true}, SHIFT(531), + [2447] = {.count = 1, .reusable = true}, SHIFT(532), + [2449] = {.count = 1, .reusable = true}, SHIFT(1050), + [2451] = {.count = 1, .reusable = true}, SHIFT(534), + [2453] = {.count = 1, .reusable = false}, SHIFT(534), + [2455] = {.count = 1, .reusable = true}, SHIFT(535), + [2457] = {.count = 1, .reusable = true}, SHIFT(536), + [2459] = {.count = 1, .reusable = false}, SHIFT(536), + [2461] = {.count = 1, .reusable = true}, SHIFT(537), + [2463] = {.count = 1, .reusable = true}, SHIFT(539), + [2465] = {.count = 1, .reusable = true}, SHIFT(540), + [2467] = {.count = 1, .reusable = true}, SHIFT(541), + [2469] = {.count = 1, .reusable = false}, SHIFT(820), + [2471] = {.count = 1, .reusable = false}, SHIFT(542), + [2473] = {.count = 1, .reusable = true}, SHIFT(543), + [2475] = {.count = 1, .reusable = true}, SHIFT(544), + [2477] = {.count = 1, .reusable = false}, SHIFT(545), + [2479] = {.count = 1, .reusable = false}, SHIFT(546), + [2481] = {.count = 1, .reusable = true}, SHIFT(547), + [2483] = {.count = 1, .reusable = true}, SHIFT(548), + [2485] = {.count = 1, .reusable = true}, SHIFT(549), + [2487] = {.count = 1, .reusable = false}, SHIFT(828), + [2489] = {.count = 1, .reusable = true}, SHIFT(828), + [2491] = {.count = 1, .reusable = true}, SHIFT(550), + [2493] = {.count = 1, .reusable = true}, SHIFT(551), + [2495] = {.count = 1, .reusable = true}, SHIFT(552), + [2497] = {.count = 1, .reusable = true}, SHIFT(554), + [2499] = {.count = 1, .reusable = true}, SHIFT(555), + [2501] = {.count = 1, .reusable = false}, SHIFT(557), + [2503] = {.count = 1, .reusable = true}, SHIFT(557), + [2505] = {.count = 1, .reusable = false}, SHIFT(558), + [2507] = {.count = 1, .reusable = true}, SHIFT(558), + [2509] = {.count = 1, .reusable = true}, SHIFT(559), + [2511] = {.count = 1, .reusable = true}, SHIFT(560), + [2513] = {.count = 1, .reusable = true}, SHIFT(562), + [2515] = {.count = 1, .reusable = false}, SHIFT(834), + [2517] = {.count = 1, .reusable = true}, SHIFT(834), + [2519] = {.count = 1, .reusable = true}, SHIFT(563), + [2521] = {.count = 1, .reusable = true}, SHIFT(564), + [2523] = {.count = 1, .reusable = true}, SHIFT(565), + [2525] = {.count = 1, .reusable = true}, SHIFT(567), + [2527] = {.count = 1, .reusable = false}, SHIFT(837), + [2529] = {.count = 1, .reusable = true}, SHIFT(837), + [2531] = {.count = 1, .reusable = true}, SHIFT(569), + [2533] = {.count = 1, .reusable = true}, SHIFT(571), + [2535] = {.count = 1, .reusable = true}, SHIFT(646), + [2537] = {.count = 1, .reusable = true}, SHIFT(574), + [2539] = {.count = 1, .reusable = true}, SHIFT(577), + [2541] = {.count = 1, .reusable = false}, SHIFT(855), + [2543] = {.count = 1, .reusable = false}, SHIFT(578), + [2545] = {.count = 1, .reusable = true}, SHIFT(859), + [2547] = {.count = 1, .reusable = true}, SHIFT(579), + [2549] = {.count = 1, .reusable = true}, SHIFT(580), + [2551] = {.count = 1, .reusable = true}, SHIFT(915), + [2553] = {.count = 1, .reusable = true}, SHIFT(1066), + [2555] = {.count = 1, .reusable = false}, SHIFT(863), + [2557] = {.count = 1, .reusable = true}, SHIFT(863), + [2559] = {.count = 1, .reusable = true}, SHIFT(582), + [2561] = {.count = 1, .reusable = true}, SHIFT(584), + [2563] = {.count = 1, .reusable = true}, SHIFT(585), + [2565] = {.count = 1, .reusable = true}, SHIFT(866), + [2567] = {.count = 1, .reusable = true}, SHIFT(587), + [2569] = {.count = 1, .reusable = true}, SHIFT(588), + [2571] = {.count = 1, .reusable = true}, SHIFT(590), + [2573] = {.count = 1, .reusable = true}, SHIFT(591), + [2575] = {.count = 1, .reusable = false}, SHIFT(592), + [2577] = {.count = 1, .reusable = true}, SHIFT(593), + [2579] = {.count = 1, .reusable = false}, SHIFT(594), + [2581] = {.count = 1, .reusable = false}, SHIFT(595), + [2583] = {.count = 1, .reusable = true}, SHIFT(875), + [2585] = {.count = 1, .reusable = true}, SHIFT(877), + [2587] = {.count = 1, .reusable = true}, SHIFT(599), + [2589] = {.count = 1, .reusable = false}, SHIFT(878), + [2591] = {.count = 1, .reusable = true}, SHIFT(601), + [2593] = {.count = 1, .reusable = true}, SHIFT(880), + [2595] = {.count = 1, .reusable = true}, SHIFT(602), + [2597] = {.count = 1, .reusable = true}, SHIFT(605), + [2599] = {.count = 1, .reusable = true}, SHIFT(607), + [2601] = {.count = 1, .reusable = false}, SHIFT(607), + [2603] = {.count = 1, .reusable = true}, SHIFT(608), + [2605] = {.count = 1, .reusable = true}, SHIFT(609), + [2607] = {.count = 1, .reusable = false}, SHIFT(609), + [2609] = {.count = 1, .reusable = true}, SHIFT(610), + [2611] = {.count = 1, .reusable = true}, SHIFT(612), + [2613] = {.count = 1, .reusable = true}, SHIFT(613), + [2615] = {.count = 1, .reusable = true}, SHIFT(614), + [2617] = {.count = 1, .reusable = false}, SHIFT(893), + [2619] = {.count = 1, .reusable = false}, SHIFT(615), + [2621] = {.count = 1, .reusable = true}, SHIFT(616), + [2623] = {.count = 1, .reusable = false}, SHIFT(617), + [2625] = {.count = 1, .reusable = false}, SHIFT(618), + [2627] = {.count = 1, .reusable = true}, SHIFT(619), + [2629] = {.count = 1, .reusable = true}, SHIFT(620), + [2631] = {.count = 1, .reusable = true}, SHIFT(621), + [2633] = {.count = 1, .reusable = false}, SHIFT(901), + [2635] = {.count = 1, .reusable = true}, SHIFT(901), + [2637] = {.count = 1, .reusable = true}, SHIFT(622), + [2639] = {.count = 1, .reusable = true}, SHIFT(623), + [2641] = {.count = 1, .reusable = true}, SHIFT(624), + [2643] = {.count = 1, .reusable = true}, SHIFT(626), + [2645] = {.count = 1, .reusable = true}, SHIFT(627), + [2647] = {.count = 1, .reusable = false}, SHIFT(628), + [2649] = {.count = 1, .reusable = true}, SHIFT(628), + [2651] = {.count = 1, .reusable = false}, SHIFT(629), + [2653] = {.count = 1, .reusable = true}, SHIFT(629), + [2655] = {.count = 1, .reusable = true}, SHIFT(630), + [2657] = {.count = 1, .reusable = true}, SHIFT(631), + [2659] = {.count = 1, .reusable = true}, SHIFT(633), + [2661] = {.count = 1, .reusable = false}, SHIFT(907), + [2663] = {.count = 1, .reusable = true}, SHIFT(907), + [2665] = {.count = 1, .reusable = true}, SHIFT(634), + [2667] = {.count = 1, .reusable = true}, SHIFT(635), + [2669] = {.count = 1, .reusable = true}, SHIFT(636), + [2671] = {.count = 1, .reusable = true}, SHIFT(638), + [2673] = {.count = 1, .reusable = false}, SHIFT(910), + [2675] = {.count = 1, .reusable = true}, SHIFT(910), + [2677] = {.count = 1, .reusable = true}, SHIFT(640), + [2679] = {.count = 1, .reusable = true}, SHIFT(642), + [2681] = {.count = 1, .reusable = true}, SHIFT(645), + [2683] = {.count = 1, .reusable = true}, SHIFT(648), + [2685] = {.count = 1, .reusable = false}, SHIFT(927), + [2687] = {.count = 1, .reusable = false}, SHIFT(649), + [2689] = {.count = 1, .reusable = true}, SHIFT(931), + [2691] = {.count = 1, .reusable = true}, SHIFT(650), + [2693] = {.count = 1, .reusable = true}, SHIFT(651), + [2695] = {.count = 1, .reusable = true}, SHIFT(972), + [2697] = {.count = 1, .reusable = true}, SHIFT(1077), + [2699] = {.count = 1, .reusable = false}, SHIFT(935), + [2701] = {.count = 1, .reusable = true}, SHIFT(935), + [2703] = {.count = 1, .reusable = true}, SHIFT(653), + [2705] = {.count = 1, .reusable = true}, SHIFT(655), + [2707] = {.count = 1, .reusable = true}, SHIFT(656), + [2709] = {.count = 1, .reusable = true}, SHIFT(938), + [2711] = {.count = 1, .reusable = true}, SHIFT(658), + [2713] = {.count = 1, .reusable = true}, SHIFT(659), + [2715] = {.count = 1, .reusable = true}, SHIFT(661), + [2717] = {.count = 1, .reusable = true}, SHIFT(662), + [2719] = {.count = 1, .reusable = false}, SHIFT(663), + [2721] = {.count = 1, .reusable = true}, SHIFT(664), + [2723] = {.count = 1, .reusable = false}, SHIFT(665), + [2725] = {.count = 1, .reusable = false}, SHIFT(666), + [2727] = {.count = 1, .reusable = true}, SHIFT(946), + [2729] = {.count = 1, .reusable = true}, SHIFT(948), + [2731] = {.count = 1, .reusable = true}, SHIFT(670), [2733] = {.count = 1, .reusable = false}, SHIFT(949), - [2735] = {.count = 1, .reusable = true}, SHIFT(949), - [2737] = {.count = 1, .reusable = true}, SHIFT(686), - [2739] = {.count = 1, .reusable = true}, SHIFT(688), - [2741] = {.count = 1, .reusable = true}, SHIFT(691), - [2743] = {.count = 1, .reusable = true}, SHIFT(962), - [2745] = {.count = 1, .reusable = false}, SHIFT(692), - [2747] = {.count = 1, .reusable = true}, SHIFT(693), - [2749] = {.count = 1, .reusable = false}, SHIFT(965), - [2751] = {.count = 1, .reusable = true}, SHIFT(694), - [2753] = {.count = 1, .reusable = false}, SHIFT(969), - [2755] = {.count = 1, .reusable = true}, SHIFT(969), - [2757] = {.count = 1, .reusable = true}, SHIFT(697), - [2759] = {.count = 1, .reusable = true}, SHIFT(699), - [2761] = {.count = 1, .reusable = true}, SHIFT(700), - [2763] = {.count = 1, .reusable = true}, SHIFT(701), - [2765] = {.count = 1, .reusable = false}, SHIFT(702), - [2767] = {.count = 1, .reusable = true}, SHIFT(703), - [2769] = {.count = 1, .reusable = true}, SHIFT(704), - [2771] = {.count = 1, .reusable = true}, SHIFT(705), - [2773] = {.count = 1, .reusable = true}, SHIFT(972), - [2775] = {.count = 1, .reusable = true}, SHIFT(709), - [2777] = {.count = 1, .reusable = false}, SHIFT(973), - [2779] = {.count = 1, .reusable = true}, SHIFT(711), - [2781] = {.count = 1, .reusable = true}, SHIFT(1054), - [2783] = {.count = 1, .reusable = true}, SHIFT(714), - [2785] = {.count = 1, .reusable = true}, SHIFT(715), - [2787] = {.count = 1, .reusable = true}, SHIFT(716), - [2789] = {.count = 1, .reusable = false}, SHIFT(977), - [2791] = {.count = 1, .reusable = false}, SHIFT(978), - [2793] = {.count = 1, .reusable = true}, SHIFT(978), - [2795] = {.count = 1, .reusable = true}, SHIFT(717), - [2797] = {.count = 1, .reusable = true}, SHIFT(719), - [2799] = {.count = 1, .reusable = true}, SHIFT(720), - [2801] = {.count = 1, .reusable = true}, SHIFT(722), - [2803] = {.count = 1, .reusable = false}, SHIFT(981), - [2805] = {.count = 1, .reusable = true}, SHIFT(981), - [2807] = {.count = 1, .reusable = true}, SHIFT(724), - [2809] = {.count = 1, .reusable = false}, SHIFT(984), - [2811] = {.count = 1, .reusable = true}, SHIFT(984), - [2813] = {.count = 1, .reusable = true}, SHIFT(726), - [2815] = {.count = 1, .reusable = true}, SHIFT(728), - [2817] = {.count = 1, .reusable = true}, SHIFT(730), - [2819] = {.count = 1, .reusable = false}, SHIFT(987), - [2821] = {.count = 1, .reusable = true}, SHIFT(731), - [2823] = {.count = 1, .reusable = true}, SHIFT(732), - [2825] = {.count = 1, .reusable = false}, SHIFT(992), - [2827] = {.count = 1, .reusable = true}, SHIFT(733), - [2829] = {.count = 1, .reusable = true}, SHIFT(734), - [2831] = {.count = 1, .reusable = true}, SHIFT(735), - [2833] = {.count = 1, .reusable = false}, SHIFT(994), - [2835] = {.count = 1, .reusable = true}, SHIFT(736), - [2837] = {.count = 1, .reusable = true}, SHIFT(737), - [2839] = {.count = 1, .reusable = false}, SHIFT(996), - [2841] = {.count = 1, .reusable = true}, SHIFT(738), - [2843] = {.count = 1, .reusable = false}, SHIFT(998), - [2845] = {.count = 1, .reusable = true}, SHIFT(739), - [2847] = {.count = 1, .reusable = true}, SHIFT(740), - [2849] = {.count = 1, .reusable = true}, SHIFT(741), - [2851] = {.count = 1, .reusable = false}, SHIFT(1000), - [2853] = {.count = 1, .reusable = true}, SHIFT(742), - [2855] = {.count = 1, .reusable = true}, SHIFT(764), - [2857] = {.count = 1, .reusable = false}, SHIFT(766), - [2859] = {.count = 1, .reusable = true}, SHIFT(770), - [2861] = {.count = 1, .reusable = true}, SHIFT(775), - [2863] = {.count = 1, .reusable = true}, SHIFT(780), - [2865] = {.count = 1, .reusable = false}, SHIFT(842), - [2867] = {.count = 1, .reusable = true}, SHIFT(842), - [2869] = {.count = 1, .reusable = false}, SHIFT(791), - [2871] = {.count = 1, .reusable = true}, SHIFT(791), - [2873] = {.count = 1, .reusable = true}, SHIFT(793), - [2875] = {.count = 1, .reusable = false}, SHIFT(794), - [2877] = {.count = 1, .reusable = false}, SHIFT(1017), - [2879] = {.count = 1, .reusable = true}, SHIFT(1017), - [2881] = {.count = 1, .reusable = true}, SHIFT(800), - [2883] = {.count = 1, .reusable = true}, SHIFT(813), - [2885] = {.count = 1, .reusable = false}, SHIFT(1019), - [2887] = {.count = 1, .reusable = true}, SHIFT(1019), - [2889] = {.count = 1, .reusable = true}, SHIFT(819), - [2891] = {.count = 1, .reusable = true}, SHIFT(839), - [2893] = {.count = 1, .reusable = false}, SHIFT(841), - [2895] = {.count = 1, .reusable = true}, SHIFT(844), - [2897] = {.count = 1, .reusable = true}, SHIFT(848), - [2899] = {.count = 1, .reusable = true}, SHIFT(852), - [2901] = {.count = 1, .reusable = false}, SHIFT(913), - [2903] = {.count = 1, .reusable = true}, SHIFT(913), - [2905] = {.count = 1, .reusable = true}, SHIFT(864), - [2907] = {.count = 1, .reusable = false}, SHIFT(865), - [2909] = {.count = 1, .reusable = false}, SHIFT(1033), - [2911] = {.count = 1, .reusable = true}, SHIFT(1033), - [2913] = {.count = 1, .reusable = true}, SHIFT(871), - [2915] = {.count = 1, .reusable = true}, SHIFT(884), - [2917] = {.count = 1, .reusable = false}, SHIFT(1035), - [2919] = {.count = 1, .reusable = true}, SHIFT(1035), - [2921] = {.count = 1, .reusable = true}, SHIFT(890), - [2923] = {.count = 1, .reusable = true}, SHIFT(910), - [2925] = {.count = 1, .reusable = false}, SHIFT(912), - [2927] = {.count = 1, .reusable = true}, SHIFT(915), - [2929] = {.count = 1, .reusable = true}, SHIFT(919), - [2931] = {.count = 1, .reusable = true}, SHIFT(922), - [2933] = {.count = 1, .reusable = false}, SHIFT(966), - [2935] = {.count = 1, .reusable = true}, SHIFT(966), - [2937] = {.count = 1, .reusable = false}, SHIFT(1047), - [2939] = {.count = 1, .reusable = true}, SHIFT(1047), - [2941] = {.count = 1, .reusable = true}, SHIFT(937), - [2943] = {.count = 1, .reusable = true}, SHIFT(944), - [2945] = {.count = 1, .reusable = false}, SHIFT(1049), - [2947] = {.count = 1, .reusable = true}, SHIFT(1049), - [2949] = {.count = 1, .reusable = true}, SHIFT(947), - [2951] = {.count = 1, .reusable = true}, SHIFT(964), - [2953] = {.count = 1, .reusable = true}, SHIFT(970), - [2955] = {.count = 1, .reusable = true}, SHIFT(971), - [2957] = {.count = 1, .reusable = false}, SHIFT(988), - [2959] = {.count = 1, .reusable = true}, SHIFT(988), - [2961] = {.count = 1, .reusable = false}, SHIFT(1056), - [2963] = {.count = 1, .reusable = true}, SHIFT(1056), - [2965] = {.count = 1, .reusable = true}, SHIFT(975), - [2967] = {.count = 1, .reusable = true}, SHIFT(979), - [2969] = {.count = 1, .reusable = false}, SHIFT(1058), - [2971] = {.count = 1, .reusable = true}, SHIFT(1058), - [2973] = {.count = 1, .reusable = true}, SHIFT(982), - [2975] = {.count = 1, .reusable = true}, SHIFT(990), - [2977] = {.count = 1, .reusable = true}, SHIFT(991), - [2979] = {.count = 1, .reusable = true}, SHIFT(997), - [2981] = {.count = 1, .reusable = false}, SHIFT(1010), - [2983] = {.count = 1, .reusable = false}, SHIFT(1015), - [2985] = {.count = 1, .reusable = false}, SHIFT(1069), - [2987] = {.count = 1, .reusable = true}, SHIFT(1069), - [2989] = {.count = 1, .reusable = true}, SHIFT(1016), - [2991] = {.count = 1, .reusable = true}, SHIFT(1018), - [2993] = {.count = 1, .reusable = false}, SHIFT(1027), - [2995] = {.count = 1, .reusable = false}, SHIFT(1031), - [2997] = {.count = 1, .reusable = false}, SHIFT(1080), - [2999] = {.count = 1, .reusable = true}, SHIFT(1080), - [3001] = {.count = 1, .reusable = true}, SHIFT(1032), - [3003] = {.count = 1, .reusable = true}, SHIFT(1034), - [3005] = {.count = 1, .reusable = false}, SHIFT(1043), - [3007] = {.count = 1, .reusable = false}, SHIFT(1045), - [3009] = {.count = 1, .reusable = false}, SHIFT(1085), - [3011] = {.count = 1, .reusable = true}, SHIFT(1085), - [3013] = {.count = 1, .reusable = true}, SHIFT(1046), - [3015] = {.count = 1, .reusable = true}, SHIFT(1048), - [3017] = {.count = 1, .reusable = false}, SHIFT(1088), - [3019] = {.count = 1, .reusable = true}, SHIFT(1088), - [3021] = {.count = 1, .reusable = true}, SHIFT(1055), - [3023] = {.count = 1, .reusable = true}, SHIFT(1057), - [3025] = {.count = 1, .reusable = true}, SHIFT(1065), - [3027] = {.count = 1, .reusable = true}, SHIFT(1070), - [3029] = {.count = 1, .reusable = false}, SHIFT(1096), - [3031] = {.count = 1, .reusable = true}, SHIFT(1096), - [3033] = {.count = 1, .reusable = true}, SHIFT(1071), - [3035] = {.count = 1, .reusable = true}, SHIFT(1072), - [3037] = {.count = 1, .reusable = false}, SHIFT(1099), - [3039] = {.count = 1, .reusable = true}, SHIFT(1099), - [3041] = {.count = 1, .reusable = true}, SHIFT(1073), - [3043] = {.count = 1, .reusable = false}, SHIFT(1102), - [3045] = {.count = 1, .reusable = true}, SHIFT(1102), - [3047] = {.count = 1, .reusable = true}, SHIFT(1074), - [3049] = {.count = 1, .reusable = true}, SHIFT(1075), - [3051] = {.count = 1, .reusable = true}, SHIFT(1079), - [3053] = {.count = 1, .reusable = true}, SHIFT(1084), - [3055] = {.count = 1, .reusable = true}, SHIFT(1087), - [3057] = {.count = 1, .reusable = false}, SHIFT(1108), - [3059] = {.count = 1, .reusable = true}, SHIFT(1108), - [3061] = {.count = 1, .reusable = true}, SHIFT(1095), - [3063] = {.count = 1, .reusable = true}, SHIFT(1097), - [3065] = {.count = 1, .reusable = false}, SHIFT(1110), - [3067] = {.count = 1, .reusable = true}, SHIFT(1110), - [3069] = {.count = 1, .reusable = true}, SHIFT(1100), - [3071] = {.count = 1, .reusable = false}, SHIFT(1112), - [3073] = {.count = 1, .reusable = true}, SHIFT(1112), - [3075] = {.count = 1, .reusable = true}, SHIFT(1107), - [3077] = {.count = 1, .reusable = true}, SHIFT(1109), - [3079] = {.count = 1, .reusable = true}, SHIFT(1111), + [2735] = {.count = 1, .reusable = true}, SHIFT(672), + [2737] = {.count = 1, .reusable = true}, SHIFT(951), + [2739] = {.count = 1, .reusable = true}, SHIFT(673), + [2741] = {.count = 1, .reusable = true}, SHIFT(1067), + [2743] = {.count = 1, .reusable = true}, SHIFT(676), + [2745] = {.count = 1, .reusable = false}, SHIFT(676), + [2747] = {.count = 1, .reusable = true}, SHIFT(677), + [2749] = {.count = 1, .reusable = true}, SHIFT(678), + [2751] = {.count = 1, .reusable = false}, SHIFT(678), + [2753] = {.count = 1, .reusable = true}, SHIFT(679), + [2755] = {.count = 1, .reusable = true}, SHIFT(681), + [2757] = {.count = 1, .reusable = true}, SHIFT(682), + [2759] = {.count = 1, .reusable = true}, SHIFT(683), + [2761] = {.count = 1, .reusable = false}, SHIFT(960), + [2763] = {.count = 1, .reusable = false}, SHIFT(684), + [2765] = {.count = 1, .reusable = true}, SHIFT(685), + [2767] = {.count = 1, .reusable = true}, SHIFT(686), + [2769] = {.count = 1, .reusable = true}, SHIFT(687), + [2771] = {.count = 1, .reusable = false}, SHIFT(962), + [2773] = {.count = 1, .reusable = true}, SHIFT(962), + [2775] = {.count = 1, .reusable = true}, SHIFT(688), + [2777] = {.count = 1, .reusable = true}, SHIFT(689), + [2779] = {.count = 1, .reusable = true}, SHIFT(690), + [2781] = {.count = 1, .reusable = true}, SHIFT(692), + [2783] = {.count = 1, .reusable = true}, SHIFT(693), + [2785] = {.count = 1, .reusable = true}, SHIFT(694), + [2787] = {.count = 1, .reusable = true}, SHIFT(696), + [2789] = {.count = 1, .reusable = false}, SHIFT(965), + [2791] = {.count = 1, .reusable = true}, SHIFT(965), + [2793] = {.count = 1, .reusable = true}, SHIFT(698), + [2795] = {.count = 1, .reusable = false}, SHIFT(968), + [2797] = {.count = 1, .reusable = true}, SHIFT(968), + [2799] = {.count = 1, .reusable = true}, SHIFT(700), + [2801] = {.count = 1, .reusable = true}, SHIFT(702), + [2803] = {.count = 1, .reusable = true}, SHIFT(705), + [2805] = {.count = 1, .reusable = true}, SHIFT(707), + [2807] = {.count = 1, .reusable = false}, SHIFT(982), + [2809] = {.count = 1, .reusable = false}, SHIFT(708), + [2811] = {.count = 1, .reusable = true}, SHIFT(985), + [2813] = {.count = 1, .reusable = true}, SHIFT(709), + [2815] = {.count = 1, .reusable = false}, SHIFT(987), + [2817] = {.count = 1, .reusable = true}, SHIFT(987), + [2819] = {.count = 1, .reusable = true}, SHIFT(711), + [2821] = {.count = 1, .reusable = true}, SHIFT(713), + [2823] = {.count = 1, .reusable = true}, SHIFT(714), + [2825] = {.count = 1, .reusable = true}, SHIFT(715), + [2827] = {.count = 1, .reusable = true}, SHIFT(717), + [2829] = {.count = 1, .reusable = true}, SHIFT(718), + [2831] = {.count = 1, .reusable = true}, SHIFT(719), + [2833] = {.count = 1, .reusable = false}, SHIFT(720), + [2835] = {.count = 1, .reusable = true}, SHIFT(991), + [2837] = {.count = 1, .reusable = true}, SHIFT(723), + [2839] = {.count = 1, .reusable = false}, SHIFT(992), + [2841] = {.count = 1, .reusable = true}, SHIFT(725), + [2843] = {.count = 1, .reusable = true}, SHIFT(994), + [2845] = {.count = 1, .reusable = true}, SHIFT(1078), + [2847] = {.count = 1, .reusable = true}, SHIFT(728), + [2849] = {.count = 1, .reusable = true}, SHIFT(729), + [2851] = {.count = 1, .reusable = true}, SHIFT(730), + [2853] = {.count = 1, .reusable = false}, SHIFT(997), + [2855] = {.count = 1, .reusable = false}, SHIFT(731), + [2857] = {.count = 1, .reusable = false}, SHIFT(998), + [2859] = {.count = 1, .reusable = true}, SHIFT(998), + [2861] = {.count = 1, .reusable = true}, SHIFT(732), + [2863] = {.count = 1, .reusable = true}, SHIFT(734), + [2865] = {.count = 1, .reusable = true}, SHIFT(735), + [2867] = {.count = 1, .reusable = true}, SHIFT(737), + [2869] = {.count = 1, .reusable = false}, SHIFT(1001), + [2871] = {.count = 1, .reusable = true}, SHIFT(1001), + [2873] = {.count = 1, .reusable = true}, SHIFT(739), + [2875] = {.count = 1, .reusable = false}, SHIFT(1004), + [2877] = {.count = 1, .reusable = true}, SHIFT(1004), + [2879] = {.count = 1, .reusable = true}, SHIFT(741), + [2881] = {.count = 1, .reusable = true}, SHIFT(743), + [2883] = {.count = 1, .reusable = true}, SHIFT(745), + [2885] = {.count = 1, .reusable = false}, SHIFT(1007), + [2887] = {.count = 1, .reusable = true}, SHIFT(746), + [2889] = {.count = 1, .reusable = true}, SHIFT(747), + [2891] = {.count = 1, .reusable = false}, SHIFT(1012), + [2893] = {.count = 1, .reusable = true}, SHIFT(748), + [2895] = {.count = 1, .reusable = true}, SHIFT(749), + [2897] = {.count = 1, .reusable = true}, SHIFT(750), + [2899] = {.count = 1, .reusable = false}, SHIFT(1014), + [2901] = {.count = 1, .reusable = true}, SHIFT(751), + [2903] = {.count = 1, .reusable = true}, SHIFT(752), + [2905] = {.count = 1, .reusable = false}, SHIFT(1016), + [2907] = {.count = 1, .reusable = true}, SHIFT(753), + [2909] = {.count = 1, .reusable = false}, SHIFT(1018), + [2911] = {.count = 1, .reusable = true}, SHIFT(754), + [2913] = {.count = 1, .reusable = true}, SHIFT(755), + [2915] = {.count = 1, .reusable = true}, SHIFT(756), + [2917] = {.count = 1, .reusable = false}, SHIFT(1020), + [2919] = {.count = 1, .reusable = true}, SHIFT(757), + [2921] = {.count = 1, .reusable = true}, SHIFT(777), + [2923] = {.count = 1, .reusable = false}, SHIFT(779), + [2925] = {.count = 1, .reusable = true}, SHIFT(784), + [2927] = {.count = 1, .reusable = true}, SHIFT(789), + [2929] = {.count = 1, .reusable = true}, SHIFT(795), + [2931] = {.count = 1, .reusable = false}, SHIFT(857), + [2933] = {.count = 1, .reusable = true}, SHIFT(857), + [2935] = {.count = 1, .reusable = false}, SHIFT(807), + [2937] = {.count = 1, .reusable = true}, SHIFT(807), + [2939] = {.count = 1, .reusable = true}, SHIFT(809), + [2941] = {.count = 1, .reusable = false}, SHIFT(810), + [2943] = {.count = 1, .reusable = false}, SHIFT(1038), + [2945] = {.count = 1, .reusable = true}, SHIFT(1038), + [2947] = {.count = 1, .reusable = true}, SHIFT(816), + [2949] = {.count = 1, .reusable = true}, SHIFT(829), + [2951] = {.count = 1, .reusable = false}, SHIFT(1040), + [2953] = {.count = 1, .reusable = true}, SHIFT(1040), + [2955] = {.count = 1, .reusable = true}, SHIFT(835), + [2957] = {.count = 1, .reusable = true}, SHIFT(854), + [2959] = {.count = 1, .reusable = false}, SHIFT(856), + [2961] = {.count = 1, .reusable = true}, SHIFT(860), + [2963] = {.count = 1, .reusable = true}, SHIFT(864), + [2965] = {.count = 1, .reusable = true}, SHIFT(869), + [2967] = {.count = 1, .reusable = true}, SHIFT(865), + [2969] = {.count = 1, .reusable = false}, SHIFT(929), + [2971] = {.count = 1, .reusable = true}, SHIFT(929), + [2973] = {.count = 1, .reusable = true}, SHIFT(882), + [2975] = {.count = 1, .reusable = false}, SHIFT(883), + [2977] = {.count = 1, .reusable = false}, SHIFT(1055), + [2979] = {.count = 1, .reusable = true}, SHIFT(1055), + [2981] = {.count = 1, .reusable = true}, SHIFT(889), + [2983] = {.count = 1, .reusable = true}, SHIFT(902), + [2985] = {.count = 1, .reusable = false}, SHIFT(1057), + [2987] = {.count = 1, .reusable = true}, SHIFT(1057), + [2989] = {.count = 1, .reusable = true}, SHIFT(908), + [2991] = {.count = 1, .reusable = true}, SHIFT(926), + [2993] = {.count = 1, .reusable = false}, SHIFT(928), + [2995] = {.count = 1, .reusable = true}, SHIFT(932), + [2997] = {.count = 1, .reusable = true}, SHIFT(936), + [2999] = {.count = 1, .reusable = true}, SHIFT(940), + [3001] = {.count = 1, .reusable = true}, SHIFT(937), + [3003] = {.count = 1, .reusable = false}, SHIFT(983), + [3005] = {.count = 1, .reusable = true}, SHIFT(983), + [3007] = {.count = 1, .reusable = false}, SHIFT(1070), + [3009] = {.count = 1, .reusable = true}, SHIFT(1070), + [3011] = {.count = 1, .reusable = true}, SHIFT(956), + [3013] = {.count = 1, .reusable = true}, SHIFT(963), + [3015] = {.count = 1, .reusable = false}, SHIFT(1072), + [3017] = {.count = 1, .reusable = true}, SHIFT(1072), + [3019] = {.count = 1, .reusable = true}, SHIFT(966), + [3021] = {.count = 1, .reusable = true}, SHIFT(981), + [3023] = {.count = 1, .reusable = true}, SHIFT(988), + [3025] = {.count = 1, .reusable = true}, SHIFT(990), + [3027] = {.count = 1, .reusable = true}, SHIFT(989), + [3029] = {.count = 1, .reusable = false}, SHIFT(1008), + [3031] = {.count = 1, .reusable = true}, SHIFT(1008), + [3033] = {.count = 1, .reusable = false}, SHIFT(1080), + [3035] = {.count = 1, .reusable = true}, SHIFT(1080), + [3037] = {.count = 1, .reusable = true}, SHIFT(995), + [3039] = {.count = 1, .reusable = true}, SHIFT(999), + [3041] = {.count = 1, .reusable = false}, SHIFT(1082), + [3043] = {.count = 1, .reusable = true}, SHIFT(1082), + [3045] = {.count = 1, .reusable = true}, SHIFT(1002), + [3047] = {.count = 1, .reusable = true}, SHIFT(1010), + [3049] = {.count = 1, .reusable = true}, SHIFT(1011), + [3051] = {.count = 1, .reusable = true}, SHIFT(1017), + [3053] = {.count = 1, .reusable = false}, SHIFT(1030), + [3055] = {.count = 1, .reusable = false}, SHIFT(1036), + [3057] = {.count = 1, .reusable = false}, SHIFT(1094), + [3059] = {.count = 1, .reusable = true}, SHIFT(1094), + [3061] = {.count = 1, .reusable = true}, SHIFT(1037), + [3063] = {.count = 1, .reusable = true}, SHIFT(1039), + [3065] = {.count = 1, .reusable = false}, SHIFT(1048), + [3067] = {.count = 1, .reusable = false}, SHIFT(1053), + [3069] = {.count = 1, .reusable = false}, SHIFT(1105), + [3071] = {.count = 1, .reusable = true}, SHIFT(1105), + [3073] = {.count = 1, .reusable = true}, SHIFT(1054), + [3075] = {.count = 1, .reusable = true}, SHIFT(1056), + [3077] = {.count = 1, .reusable = false}, SHIFT(1065), + [3079] = {.count = 1, .reusable = false}, SHIFT(1068), + [3081] = {.count = 1, .reusable = false}, SHIFT(1110), + [3083] = {.count = 1, .reusable = true}, SHIFT(1110), + [3085] = {.count = 1, .reusable = true}, SHIFT(1069), + [3087] = {.count = 1, .reusable = true}, SHIFT(1071), + [3089] = {.count = 1, .reusable = false}, SHIFT(1113), + [3091] = {.count = 1, .reusable = true}, SHIFT(1113), + [3093] = {.count = 1, .reusable = true}, SHIFT(1079), + [3095] = {.count = 1, .reusable = true}, SHIFT(1081), + [3097] = {.count = 1, .reusable = true}, SHIFT(1091), + [3099] = {.count = 1, .reusable = true}, SHIFT(1095), + [3101] = {.count = 1, .reusable = false}, SHIFT(1120), + [3103] = {.count = 1, .reusable = true}, SHIFT(1120), + [3105] = {.count = 1, .reusable = true}, SHIFT(1096), + [3107] = {.count = 1, .reusable = true}, SHIFT(1097), + [3109] = {.count = 1, .reusable = false}, SHIFT(1123), + [3111] = {.count = 1, .reusable = true}, SHIFT(1123), + [3113] = {.count = 1, .reusable = true}, SHIFT(1098), + [3115] = {.count = 1, .reusable = false}, SHIFT(1126), + [3117] = {.count = 1, .reusable = true}, SHIFT(1126), + [3119] = {.count = 1, .reusable = true}, SHIFT(1099), + [3121] = {.count = 1, .reusable = true}, SHIFT(1100), + [3123] = {.count = 1, .reusable = true}, SHIFT(1104), + [3125] = {.count = 1, .reusable = true}, SHIFT(1109), + [3127] = {.count = 1, .reusable = true}, SHIFT(1112), + [3129] = {.count = 1, .reusable = false}, SHIFT(1132), + [3131] = {.count = 1, .reusable = true}, SHIFT(1132), + [3133] = {.count = 1, .reusable = true}, SHIFT(1119), + [3135] = {.count = 1, .reusable = true}, SHIFT(1121), + [3137] = {.count = 1, .reusable = false}, SHIFT(1134), + [3139] = {.count = 1, .reusable = true}, SHIFT(1134), + [3141] = {.count = 1, .reusable = true}, SHIFT(1124), + [3143] = {.count = 1, .reusable = false}, SHIFT(1136), + [3145] = {.count = 1, .reusable = true}, SHIFT(1136), + [3147] = {.count = 1, .reusable = true}, SHIFT(1131), + [3149] = {.count = 1, .reusable = true}, SHIFT(1133), + [3151] = {.count = 1, .reusable = true}, SHIFT(1135), }; #ifdef _WIN32