summaryrefslogtreecommitdiff
path: root/arch/arm/src/__aeabi_memcpy.c
AgeCommit message (Collapse)AuthorLines
2016-01-22move arm-specific translation units out of arch/arm/src, to src/*/armRich Felker-9/+0
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.
2015-08-31implement arm eabi mem* functionsTimo Teräs-0/+9
these functions are part of the ARM EABI, meaning compilers may generate references to them. known versions of gcc do not use them, but llvm does. they are not provided by libgcc, and the de facto standard seems to be that libc provides them.