aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/pre_parser.mly
Commit message (Expand)AuthorAgeFilesLines
* Added copyright banners to the new files.François Pottier2015-10-231-0/+1
* Added an %on_error_reduce declaration.François Pottier2015-10-231-0/+42
* Changed [asm_flags] to a left-recursive list.François Pottier2015-10-231-1/+1
* Removed the two uses of $syntaxerror in a semantic action.François Pottier2015-10-231-2/+7
* Inlined [constant_expression] to save one state.François Pottier2015-10-231-1/+1
* Reformulated [specifier_qualifier_list_no_typedef_name] as a left-recursive l...François Pottier2015-10-231-4/+4
* Redefined [pointer] as a left-recursive list.François Pottier2015-10-231-7/+24
* Replaced [declaration_specifiers_no_typedef_name] with [declaration_specifier...François Pottier2015-10-231-7/+3
* Factorized [declaration_specifier_no_typedef_name].François Pottier2015-10-231-5/+9
* Reformulated the definitions of [option] and [list] in a slightly more elegan...François Pottier2015-10-231-11/+13
* Introduced [list] and [ilist]. Redefined [declaration_specifiers_no_type] as ...François Pottier2015-10-231-11/+22
* Factorized [declaration_specifier_no_type].François Pottier2015-10-231-3/+7
* Added a phantom parameter to [declaration].François Pottier2015-10-231-13/+18
* Added a phantom parameter to [declaration_specifiers].François Pottier2015-10-231-7/+11
* Added a phantom parameter to [abstract_declarator].François Pottier2015-10-231-4/+8
* Added a phantom parameter to [specifier_qualifier_list].François Pottier2015-10-231-3/+4
* A general comment about phantom parameters.François Pottier2015-10-231-0/+16
* Remove all productions that involve the [error] token.François Pottier2015-10-231-34/+0
* Replaced 4 uses of [ioption(declaration_specifiers_no_type)] with [declaratio...François Pottier2015-10-081-4/+4
* Cosmetic. Removed some spaces. Shared one redundant semantic action {}.François Pottier2015-10-071-7/+6
* One cosmetic change of [option] to [?]. No impact.François Pottier2015-10-071-1/+1
* Factorized the two forms of FOR statement by introducing [for_statement_header].François Pottier2015-10-071-2/+6
* Introduced optional(X, Y), which means X? Y, and used it in array declarators...François Pottier2015-10-071-4/+12
* Factorized the productions for several categories of binary operators.François Pottier2015-10-071-13/+20
* Factorized two productions (and two error productions) in [enum_specifier].François Pottier2015-10-071-5/+2
* Factorized two productions (and two error productions) in [struct_or_union_sp...François Pottier2015-10-071-5/+2
* For clarity, removed several redundant calls to [set_id_type].François Pottier2015-10-071-9/+5
* Introduced [other_identifier] as a more elegant way of calling [set_id_type i...François Pottier2015-10-071-19/+22
* One more replacement of [ioption] with [option].François Pottier2015-10-071-1/+1
* Use [option] as much as possible and [ioption] only where necessary.François Pottier2015-10-071-13/+30
* Add whitespace, for better vertical alignment and better readability.François Pottier2015-10-071-21/+13
* Fixed a few bugs in the pre parser. In particular, the following codeJacques-Henri Jourdan2015-09-301-102/+234
* Experiment: support a subset of GCC's extended asm statements.Xavier Leroy2015-04-171-1/+37
* Support "asm volatile" (closes: PR#5).Xavier Leroy2014-12-291-1/+1
* Empty declarationsjjourdan2014-05-231-0/+2
* Typo in struct_declaration_list causing conflicts.xleroy2014-05-181-1/+1
* - Re-added support for "__func__" identifier as per ISO C99.xleroy2014-05-151-0/+1
* Assorted fixes to fix parsing issues and be more GCC-like:xleroy2014-05-121-2/+3
* Do not allow typedef_name in identifier lists of K&R style definitionsjjourdan2014-05-051-4/+4
* Support for old-style K&R function definitions.xleroy2014-05-051-0/+22
* Treat all identifiers as VAR_NAME by default (i.e. if not bound by a typedef)...xleroy2014-05-051-3/+1
* Integration of Jacques-Henri Jourdan's verified parser.xleroy2014-04-291-0/+658