aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Elab.ml
Commit message (Expand)AuthorAgeFilesLines
* Check ptr arithmetic for ++ and --Bernhard Schommer2020-09-201-10/+16
* Add comments we missed to sync to GitHubChristoph Cullmann2020-07-301-0/+2
* More checks for __builtin_va_start (#250)Bernhard Schommer2020-07-211-6/+10
* Support _Static_assert from C11Xavier Leroy2020-07-211-1/+29
* Support __builtin_constant_p as in GCC and Clang (#367)Xavier Leroy2020-07-211-0/+10
* Added error for redefined builtin.Bernhard Schommer2020-07-201-0/+2
* Use library function.Bernhard Schommer2020-06-281-4/+1
* Include typedef name in error message (#228)Bernhard Schommer2020-03-041-2/+2
* The type of a wide char constant is wchar_t. (#223)Bernhard Schommer2020-02-241-1/+2
* Cosmetic: in OCaml code, write "open! Module" instead of "open !Module"Xavier Leroy2020-02-211-1/+1
* Added error for unknown builtin functions. (#208)Bernhard Schommer2019-12-211-1/+6
* Remove duplicated ticks.Bernhard Schommer2019-10-011-2/+2
* Various improvements for diagnostics.Bernhard Schommer2019-09-301-10/+26
* Functions that are extern should stay extern (#201)Bernhard Schommer2019-09-251-1/+1
* Make __builtin_sel available from C source codeXavier Leroy2019-07-171-0/+36
* Remove the cparser/Builtins moduleXavier Leroy2019-07-171-1/+1
* New parser based on new version of the Coq backend of Menhir (#276)Jacques-Henri Jourdan2019-07-051-2/+2
* Added new diagnostic for non-linear conditionalsBernhard Schommer2019-07-041-0/+1
* New additional check for void parameters. (#174)Bernhard Schommer2019-06-031-3/+5
* Fix misspellings in messages, man pages, and commentsXavier Leroy2019-05-311-1/+1
* Add a check for the args of unprototyped calls.Bernhard Schommer2019-05-201-3/+8
* Reworked elaboration of declarations/definitions.Bernhard Schommer2019-05-101-140/+138
* Fix various scoping issues (#163)Bernhard Schommer2019-05-101-51/+56
* Improve overflow check for integer literals (#157)Michael Schmidt2019-03-201-2/+4
* Revised attachment of name attributes to structs, unions, enumsXavier Leroy2019-02-251-6/+21
* Reject object-related and struct-related attributes on typedefsXavier Leroy2019-02-251-0/+7
* Distinguish object-related and name-related attributesXavier Leroy2019-02-251-8/+12
* Do not expand type names when floating attributes "up" a declarationXavier Leroy2019-02-251-1/+1
* Catch exception from elab_attr_arg.Bernhard Schommer2018-10-181-1/+4
* Improved diagnostics: spelling, wording, etc (#138)Michael Schmidt2018-09-141-4/+4
* Fatal error instead of error for bit-fields.Bernhard Schommer2018-09-121-1/+1
* Attach _Alignas to names and refactor _Alignas checks (#133)Bernhard Schommer2018-09-101-7/+10
* Move parameter check.Bernhard Schommer2018-09-031-2/+6
* New diagnostic for reduced alignment (#117)Bernhard Schommer2018-08-291-3/+32
* More standard compliant handling of _Alignas.Bernhard Schommer2018-08-241-0/+11
* Preserve attribute(("aligned")) in the AST, don't map it to _AlignasXavier Leroy2018-08-241-2/+1
* Diagnostic for wrong application of restrict (#119)Bernhard Schommer2018-08-211-4/+23
* Improve support and diagnostic for type qualified arrays (#118)Bernhard Schommer2018-08-201-0/+6
* Added warning for incomplete tentative static defs (#114)Bernhard Schommer2018-08-201-4/+5
* Additional checks for flex arrays in structs (#93)Bernhard Schommer2018-08-201-5/+11
* Turn error into fatal error for unnamed parameter.Bernhard Schommer2018-08-201-2/+4
* For "packed" attribute, check that 3rd parameter is 0 or 1Xavier Leroy2018-08-171-1/+1
* Check for bit-fields in __builtin_offsetofXavier Leroy2018-08-171-1/+4
* Issue with packed structs and sizeof, alignof, offsetof in cparser/Xavier Leroy2018-08-171-17/+35
* Added a check for parameters without identifiers. (#128)Bernhard Schommer2018-08-171-5/+7
* Earlier check for invalid asm outputs. (#130)Bernhard Schommer2018-08-171-0/+5
* Various improvements in the wording of diagnostics.Michael Schmidt2018-08-021-74/+73
* Remove the `_Alignas(expr)` construct (#125)Xavier Leroy2018-06-071-9/+1
* Warn for defs and uses of static variables in nonstatic inline functionsXavier Leroy2018-06-041-16/+35
* Parameterize elab_expr by the full elaboration contextXavier Leroy2018-06-041-30/+42