12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #include <features.h>
- #include <bits/arm_asm.h>
- .text
- .global memmove
- .type memmove,%function
- .align 4
- #if defined(__thumb__) && !defined(__thumb2__)
- .thumb_func
- memmove:
- push {r2, lr}
- bl _memcpy
- POP_RET
- #else
- memmove:
- b _memcpy
- #endif
- .size memmove,.-memmove
- libc_hidden_def(memmove)
|