summaryrefslogtreecommitdiff
path: root/py/nlrthumb.c
AgeCommit message (Collapse)Author
2016-07-21py: Fix nlrthumb.c when DEBUG=1 is definedDave Hylands
2016-07-11qemu-arm: Enable gcc LTO option for nlrthumb.cDaniel Tralamazza
LTO can't "see" inside naked functions, but we can mark `nlr_push_tail` as used.
2016-06-28py/nlrthumb: Convert NLR thumb funcs from asm to C with inline-asm.Damien George
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.