| Commit message (Expand) | Author | Age | Files | Lines |
| * | Give a warning instead of crashing; in this way we can call the next | Armin Rigo | 2015-11-06 | 1 | -4/+6 |
| * | Complain more readily about opaque enums, by refusing to guess which | Armin Rigo | 2015-11-05 | 1 | -2/+5 |
| * | Propagate "volatile" in addition to "const" and "restrict" | Armin Rigo | 2015-11-02 | 1 | -0/+3 |
| * | Support directly __stdcall or WINAPI (or __cdecl, ignored) inside | Armin Rigo | 2015-10-06 | 1 | -16/+7 |
| * | in-progress, but found a problem | Armin Rigo | 2015-10-06 | 1 | -3/+4 |
| * | forgot pdb | Armin Rigo | 2015-10-05 | 1 | -1/+0 |
| * | non-windows fixes | Armin Rigo | 2015-10-05 | 1 | -4/+6 |
| * | Starting, with exactly two function types: no-abi (i.e. cdecl on windows), or... | Armin Rigo | 2015-10-05 | 1 | -5/+22 |
| * | A note | Armin Rigo | 2015-09-30 | 1 | -0/+3 |
| * | Seems that "__restrict" is recognized in all gcc modes I could try, | Armin Rigo | 2015-09-30 | 1 | -1/+1 |
| * | Tests and fixes for "const" fields | Armin Rigo | 2015-09-30 | 1 | -1/+2 |
| * | in-progress: add qualifiers through model.py, cparser.py, and recompiler.py | Armin Rigo | 2015-09-30 | 1 | -18/+33 |
| * | Test the various cases, fix issues with rounding, etc. | Armin Rigo | 2015-08-28 | 1 | -7/+1 |
| * | Add support for `typedef float... foo_t`. | Max Belanger | 2015-08-27 | 1 | -0/+17 |
| * | Refactor the way global variables are accessed. Now, every access to | Armin Rigo | 2015-07-03 | 1 | -20/+1 |
| * | Issues 69, 73: add the syntax "typedef int... foo_t;". | Armin Rigo | 2015-05-30 | 1 | -5/+25 |
| * | Issue #193: if we use a struct between the first cdef() where it is | Armin Rigo | 2015-05-20 | 1 | -4/+5 |
| * | hg merge default | Armin Rigo | 2015-04-27 | 1 | -2/+35 |
| |\ |
|
| | * | Check sizeof(global variables) when possible | Armin Rigo | 2015-04-27 | 1 | -0/+21 |
| | * | oups | Armin Rigo | 2015-04-25 | 1 | -0/+2 |
| | * | fixes for anonymous nested structs | Armin Rigo | 2015-04-25 | 1 | -0/+6 |
| | * | hg merge default | Armin Rigo | 2015-04-24 | 1 | -10/+0 |
| | |\ |
|
| | * \ | hg merge default | Armin Rigo | 2015-04-24 | 1 | -2/+6 |
| | |\ \ |
|
| | | * | | in-progress | Armin Rigo | 2015-04-24 | 1 | -1/+1 |
| | | * | | fixes | Armin Rigo | 2015-04-18 | 1 | -0/+1 |
| | | * | | the '[...]' syntax | Armin Rigo | 2015-04-18 | 1 | -1/+1 |
| | | * | | Starting working on the "recompiler" | Armin Rigo | 2015-04-15 | 1 | -0/+3 |
| * | | | | Test and fix: the new types like "int_least8_t" were actually not | Armin Rigo | 2015-04-27 | 1 | -0/+18 |
| | |_|/
|/| | |
|
| * | | | Reimplement vengine_gen returning incomplete structs. | Armin Rigo | 2015-04-24 | 1 | -10/+0 |
| |/ / |
|
| * | | Skip an existing test after figuring out that it is indeed likely to | Armin Rigo | 2015-04-24 | 1 | -0/+10 |
| |/ |
|
| * | improve error message a bit | Armin Rigo | 2015-01-02 | 1 | -1/+1 |
| * | Fight a lot the CPython buffer/memoryview interface until we get a | Armin Rigo | 2014-12-28 | 1 | -0/+2 |
| * | Handle the case where someone has made `import weakref` return a weird proxy.alex_gaynor/handle-the-case-where-someone-has-made-i-1391634819444 | Alex Gaynor | 2014-02-05 | 1 | -2/+3 |
| * | Issue 131: support ffi.cdef("...", packed=True) | Armin Rigo | 2014-01-14 | 1 | -1/+6 |
| * | Kill is_{signed,unsigned}_type() | Armin Rigo | 2013-12-15 | 1 | -17/+13 |
| * | Due to a CPython bug, we cannot use setdefault() here | Armin Rigo | 2013-11-10 | 1 | -3/+10 |
| * | Bah, setdefault() is not atomic on WeakValueDictionary. | Armin Rigo | 2013-11-10 | 1 | -2/+9 |
| * | Small tweaks | Armin Rigo | 2013-11-10 | 1 | -3/+7 |
| * | Fix some tests | Armin Rigo | 2013-11-08 | 1 | -1/+0 |
| * | Add a test, now passing. Fixes in the front-end. | Armin Rigo | 2013-11-08 | 1 | -7/+11 |
| * | in-progress | Armin Rigo | 2013-11-08 | 1 | -10/+14 |
| * | Issue #113: Test and fix: Values of anonymous enums are not exposed | Armin Rigo | 2013-10-26 | 1 | -0/+6 |
| * | Support partial unions in a way very similar to partial structs. | Armin Rigo | 2013-10-17 | 1 | -12/+7 |
| * | Two tests from the mailing list, and fixes: bogus "const" detection, | Armin Rigo | 2013-09-14 | 1 | -4/+0 |
| * | Finish the fix for issue #91. | Armin Rigo | 2013-06-19 | 1 | -3/+9 |
| * | Fix the front-end to work (but still show $ signs) | Armin Rigo | 2013-06-19 | 1 | -2/+4 |
| * | Refactor get_c_name() in model.py to use the same logic as with the | Armin Rigo | 2013-03-03 | 1 | -40/+58 |
| * | Generate correct type name for pointers to arrays. | Tom Nixon | 2013-03-02 | 1 | -1/+1 |
| * | Moving the determination of the base integer type of an enum | Armin Rigo | 2013-02-16 | 1 | -2/+35 |
| * | Add all standard Windows types (as per a list from some official-looking | Armin Rigo | 2013-02-10 | 1 | -0/+2 |