aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Elab.ml
Commit message (Expand)AuthorAgeFilesLines
...
* 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
|\
| * More precise warnings about function returnsXavier Leroy2017-02-071-6/+18
* | Use Printf.sprintf instead of Format.sprintf when possibleXavier Leroy2017-02-091-4/+4
|/
* Merge branch 'elaboration-of-attributes'Xavier Leroy2017-02-061-24/+46
|\
| * Preliminary support for the "noreturn" attributeXavier Leroy2017-02-061-11/+15
| * Refactor the classification of attributesXavier Leroy2017-02-031-5/+11
| * Regression: type attributes and array modifiersXavier Leroy2017-02-011-2/+4
| * Revised elaboration of attributesXavier Leroy2017-01-311-13/+24
* | Remove all overriding opens in Elab.ml. Bug 19872Bernhard Schommer2017-02-031-2/+2
* | Removed Cabshelper open and avoided shadowing.Bernhard Schommer2017-02-031-7/+6
* | Remove unused opens.Bernhard Schommer2017-02-031-32/+28
* | Removed no longer working check.Bernhard Schommer2017-02-031-14/+4
* | Avoid overflows and report an error.Bernhard Schommer2017-01-311-7/+7
* | Normalize offset to size_t kind.Bernhard Schommer2017-01-311-2/+4
* | Remove superfluous check.Bernhard Schommer2017-01-311-7/+4
* | New version to support designators.Bernhard Schommer2017-01-241-8/+33
* | Simplified version.Bernhard Schommer2017-01-201-10/+8
* | Also support union. Bug 20765Bernhard Schommer2017-01-201-3/+4
* | Implement offsetof via builtin.Bernhard Schommer2017-01-201-0/+16
|/
* Allow multiple nameless bit field fields.Bernhard Schommer2016-12-291-2/+4
* Avoid exception catch-allXavier Leroy2016-12-261-1/+1
* Cosmetic indentation changeXavier Leroy2016-12-261-5/+4
* Added code for initializers. Bug 20003Bernhard Schommer2016-12-121-1/+19
* Moved naming and changed names of aux functionsBernhard Schommer2016-12-121-16/+20
* Next try for support of anonymous structs.Bernhard Schommer2016-12-071-25/+54
* Warning for C11 _Noreturn feature.Bernhard Schommer2016-11-221-4/+10
* Warning for decls without name in composites.Bernhard Schommer2016-11-221-1/+3
* Keep anonymous members of anonymous structs.Bernhard Schommer2016-09-271-2/+4
* Improved error messages for wrong vararg calls.Bernhard Schommer2016-09-231-2/+3
* Renamed pedantic to implicit-int.Bernhard Schommer2016-09-221-1/+1
* Reverted noisy change.Bernhard Schommer2016-09-221-1/+1
* Also warn for empty default declarations. Bug 18004Bernhard Schommer2016-09-211-1/+1
* Make unnamed default + correct empty struct warning. Bug 18004Bernhard Schommer2016-09-211-2/+2
* Allow empty alignment attribute. Bug 18004Bernhard Schommer2016-09-211-0/+1