Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix arm run-time abi string functions | Szabolcs Nagy | 2017-06-22 | 1 | -9/+0 |
| | | | | | | | | | in arm rtabi these __aeabi_* functions have special abi (they are only allowed to clobber r0,r1,r2,r3,ip,lr,cpsr), so they cannot be simple wrappers around normal string functions (which may clobber other registers), the safest solution is to write them in asm, a minimalistic implementation works because these are not supposed to be emitted by compilers or used in general. | ||||
* | move arm-specific translation units out of arch/arm/src, to src/*/arm | Rich Felker | 2016-01-22 | 1 | -0/+9 |
this is possible with the new build system that allows src/*/$(ARCH)/* files which do not shadow a file in the parent directory, and yields a more logical organization. eventually it will be possible to remove arch/*/src from the build system. |