aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Elab.ml
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Support redefinition of a typedef in another scope (#122)Xavier Leroy2018-06-041-2/+2
* Warn that _Alignas and _Alignof are C11 extensionsXavier Leroy2018-06-041-1/+3
* Allow align attribute of zero. (#120)Bernhard Schommer2018-05-291-2/+2
* Removed duplicated whitespace. Bug 23660Bernhard Schommer2018-05-291-1/+1
* String literals are l-values and have array types (#116)Bernhard Schommer2018-05-271-12/+1
* Preserve storage class for functions declared within a blockXavier Leroy2018-05-261-7/+10
* Warning for extern declaration after definition.Bernhard Schommer2018-05-261-1/+4
* Revised elaboration of function definitions, part 2Xavier Leroy2018-05-071-65/+143
* Revised elaboration of function definitions, part 1Xavier Leroy2018-05-071-36/+40
* Added a diagnostic for attributes dec after defBernhard Schommer2018-05-071-3/+12
* Warning for comparison of incomplete pointers.Bernhard Schommer2018-05-071-0/+4
* Check that variables declared in 'for' loops are local variables (#104)Bernhard Schommer2018-05-041-11/+11
* Reject empty declarations in K&R functions. (#107)Bernhard Schommer2018-05-041-0/+2
* Reject arrays of incomplete type (#90)Bernhard Schommer2018-05-021-0/+2
* Also check statement of label statement.Bernhard Schommer2018-04-271-1/+2
* Detect duplicate 'case' or 'default' statements within a 'switch'Xavier Leroy2018-04-271-0/+41
* Record value of constant expression in C.Scase constructorXavier Leroy2018-04-271-5/+5
* Detect 'case' and 'default' outside a 'switch' statementXavier Leroy2018-04-271-1/+7
* Additional checks on typedefs (#101)Bernhard Schommer2018-04-261-0/+4
* Earlier, more comprehensive check for constant initializers (#88)Xavier Leroy2018-04-261-3/+6
* Check for enums that have the same tag as composites (#100)Bernhard Schommer2018-04-251-1/+8
* Add diagnostic for illegal use of void (Bug 23342)Michael Schmidt2018-04-251-0/+2
* Improved handling and diagnostics for the `auto` storage class (#99)Xavier Leroy2018-04-251-24/+48
* Accept empty enum declaration after nonempty enum definition (#87)Bernhard Schommer2018-04-221-1/+1
* Better check for incomplete types in pointer subtraction (#92)Bernhard Schommer2018-04-201-0/+1
* Function defintions: keep the attributes from previous declarations (#89)Bernhard Schommer2018-04-191-1/+3
* Check for redefinition of globals and preserve static initialized variables (...Bernhard Schommer2018-04-091-3/+18
* Reject illegal initializations of aggregates at top-level (#79)Xavier Leroy2018-04-061-1/+10
* Allow declaration of composites in bitfield size.Bernhard Schommer2018-04-051-11/+20
* Error for subtraction arithmetic type - pointer type (#73)Bernhard Schommer2018-04-051-3/+0
* Turn delicate case of designated re-initialization into error (#70)Xavier Leroy2018-03-301-37/+56
* Don't overwrite initializer of anonymous union member. (#69)Bernhard Schommer2018-03-291-1/+1
* Sizeof and _Alignof are not allowed on bit-fields (#67)Bernhard Schommer2018-03-271-1/+5
* Arrays should decay to pointers (#65)Bernhard Schommer2018-03-271-2/+3
* Improve error messages for anonymous bit-fields (#64)Bernhard Schommer2018-03-231-7/+10
* Do not allow inline on main and warn for Noreturn (#63)Bernhard Schommer2018-03-231-0/+4
* Refactor the handling of errors and warnings (#44)Bernhard Schommer2018-02-081-2/+2
* Do not pass the env back from for stmt decls. (#42)Bernhard Schommer2017-12-121-7/+7
* Remove unused code. BUg 22642Bernhard Schommer2017-12-081-1/+0
* Store the different inlining cases.Bernhard Schommer2017-12-081-1/+1
* Make redefinition of composite a fatal error.Bernhard Schommer2017-05-091-2/+1
* Added check for large arrays.Bernhard Schommer2017-02-211-0/+1
* Added gcc noinline attribute.Bernhard Schommer2017-02-191-0/+1
* Adopted unused variable and attribtue checkBernhard Schommer2017-02-171-0/+1
* Added a simple check for unused variables.Bernhard Schommer2017-02-171-1/+3
* Do not optimize away the 'return 0' at end of 'main'Xavier Leroy2017-02-171-7/+5
* Merge pull request #162 from AbsInt/return-analysis-2Xavier Leroy2017-02-151-6/+18
|\