summaryrefslogtreecommitdiffstatshomepage
path: root/py/nlrthumb.c
Commit message (Collapse)AuthorAge
* py: Fix nlrthumb.c when DEBUG=1 is definedDave Hylands2016-07-21
|
* qemu-arm: Enable gcc LTO option for nlrthumb.cDaniel Tralamazza2016-07-11
| | | | LTO can't "see" inside naked functions, but we can mark `nlr_push_tail` as used.
* py/nlrthumb: Convert NLR thumb funcs from asm to C with inline-asm.Damien George2016-06-28
Now only the bits that really need to be written in assembler are written in it, otherwise C is used. This means that the assembler code no longer needs to know about the global state structure which makes it much easier to maintain.