<div dir="ltr"><div>Use unified syntax for builtins/arm/aeabi_mem*.S.</div><div><br></div><div>This makes these files consistent with the others.</div><div><br></div><div>Without this change, __aeabi_memcpy (for thumb) is assembled like this:</div><div><br></div><div>00000000 <__aeabi_memcpy>:</div><div>   0:   e7fe            b.n     0 <memcpy></div><div><br></div><div>This can cause trouble for the linker, which can fail with the message</div><div>"relocation truncated to fit: R_ARM_THM_JUMP11 against symbol"</div><div><br></div><div>With this change, the assembler generates this:</div><div><br></div><div>00000000 <__aeabi_memcpy>:</div><div>   0:   f7ff bffe       b.w     0 <memcpy></div><div><br></div></div>