am 289c460c: am ac6bc319: Remove new aligned memcpy path for cortex-a15.

* commit '289c460c55fdf50c03e8711de077d2db67346d9b':
  Remove new aligned memcpy path for cortex-a15.
This commit is contained in:
Christopher Ferris 2013-10-15 17:29:28 -07:00 committed by Android Git Automerger
commit a3ae4f31ab

View File

@ -74,8 +74,10 @@ ENTRY_PRIVATE(MEMCPY_BASE)
cmp r2, #16
blo .L_copy_less_than_16_unknown_align
cmp r2, #832
bge .L_check_alignment
// TODO: The aligned copy code is extremely slow copying some large
// buffers so always go through the unaligned path for now.
//cmp r2, #832
//bge .L_check_alignment
.L_copy_unknown_alignment:
// Unknown alignment of src and dst.