summaryrefslogtreecommitdiff
path: root/cparser
Commit message (Expand)AuthorAge
* Support C99 compound literals (by expansion in Unblock pass).Gravatar xleroy2014-08-21
* Improve error reporting for unsupported compound literals.Gravatar xleroy2014-08-20
* Improve error detection and error messages for enums.Gravatar xleroy2014-08-17
* Spurious error on a local static function declarationGravatar xleroy2014-08-13
* Make Alphabet.v compatible with an environnment where Containers is installedGravatar jjourdan2014-07-04
* Empty declarationsGravatar jjourdan2014-05-23
* In enter_or_refine_ident: revised handling of "extern" decls.Gravatar xleroy2014-05-18
* Another corner case for string literal initializers: char * x[] = { "lit" }Gravatar xleroy2014-05-18
* Typo in struct_declaration_list causing conflicts.Gravatar xleroy2014-05-18
* - Re-added support for "__func__" identifier as per ISO C99.Gravatar xleroy2014-05-15
* Assorted fixes to fix parsing issues and be more GCC-like:Gravatar xleroy2014-05-12
* Incorrect conversion of K&R functions. Example of problem:Gravatar xleroy2014-05-12
* Fix string litteral parsingGravatar jjourdan2014-05-11
* Fixed regression on initializers of the form T x[N] = "literal";Gravatar xleroy2014-05-08
* - Added alternate keywords __inline, __restrict, etc, for GCC compatibilityGravatar xleroy2014-05-08
* Stern warning on non-prototype function definitions.Gravatar xleroy2014-05-05
* Do not allow typedef_name in identifier lists of K&R style definitionsGravatar jjourdan2014-05-05
* Support for old-style K&R function definitions.Gravatar xleroy2014-05-05
* Treat all identifiers as VAR_NAME by default (i.e. if not bound by a typedef)...Gravatar xleroy2014-05-05
* Be less picky in the way we parse '#' linesGravatar xleroy2014-05-02
* Integration of Jacques-Henri Jourdan's verified parser.Gravatar xleroy2014-04-29
* Clean-up pass on C types:Gravatar xleroy2014-04-23
* Merge of branch linear-typing:Gravatar xleroy2014-04-06
* "->" can also be applied to array types, not just pointer types.Gravatar xleroy2014-03-30
* C: Support array initializers that are too short + default init for remainder.Gravatar xleroy2014-03-28
* Do not transform __builtin_va_arg for a struct or union type, this causesGravatar xleroy2014-02-24
* Wrong type used for transforming lval = f(...)Gravatar xleroy2014-02-21
* Add option -Os to optimize for code size rather than for execution speed.Gravatar xleroy2014-02-19
* - Back to origins: suppress Mfloat64al32 chunk and align Mfloat64 to 4.Gravatar xleroy2014-01-12
* Experimental support for <stdarg.h>, the GCC way. Works on IA32. To be test...Gravatar xleroy2014-01-01
* Catch and report Env errors arising out of some Cutil functionsGravatar xleroy2013-12-30
* Elab.ml: more warnings.Gravatar xleroy2013-12-30
* Improved detection of variables with incomplete types.Gravatar xleroy2013-12-30
* Check in C2C that packed structs were properly emulated.Gravatar xleroy2013-12-28
* Simpler, more robust emulation of calls to variadic functions:Gravatar xleroy2013-12-28
* Hack StructReturn to better adhere to PowerPC and ARM calling conventions.Gravatar xleroy2013-12-20
* Bring sizeof and alignof in sync with cfrontend/Ctypes.Gravatar xleroy2013-12-11
* Revised treatment of _Alignas, for better compatibility with GCC and Clang, a...Gravatar xleroy2013-11-06
* Make it possible to use the "__packed__" keyword as an attribute nameGravatar xleroy2013-11-05
* Eliminate unreferenced inline functionsGravatar xleroy2013-10-28
* Revise parsing of character constants for conformance with ISO C 99.Gravatar xleroy2013-10-25
* Typing of integer literals: follow C99 rules exactly.Gravatar xleroy2013-10-21
* PackedStructs.ml: cleanups and bug-fixesGravatar xleroy2013-10-13
* Merge of the "alignas" branch.Gravatar xleroy2013-10-05
* Follow-up to commit 2339:Gravatar xleroy2013-10-05
* Elab:Gravatar xleroy2013-10-04
* Bad printing of alignment on 'comm' symbols.Gravatar xleroy2013-07-07
* Recognize attribute((packed)) after a "struct {...}" and not just between "st...Gravatar xleroy2013-06-21
* Support __attribute__(ident) where ident is not bound. Useful for GCC compat...Gravatar xleroy2013-05-13
* Revert suppression of __builtin_{read,write}_reversed for x86 and ARM,Gravatar xleroy2013-04-29