commit | a4af0c2e8409696667695f3781a22cba2eafbd2c | [log] [tgz] |
---|---|---|
author | danh-arm <dan.handley@arm.com> | Wed Dec 14 15:59:18 2016 +0000 |
committer | GitHub <noreply@github.com> | Wed Dec 14 15:59:18 2016 +0000 |
tree | 69eea6d91e6d1065d22d0b6c04bcecb760c6707c | |
parent | 86450fe690b6056c5d444b11d79efb2a0660b855 [diff] | |
parent | ea926532c3cc9ecc6c2379b7505ce3a840d909a1 [diff] |
Merge pull request #780 from douglas-raillard-arm/dr/fix_asm_signed_comparison Fix integer comparison in memcpy16
diff --git a/lib/aarch64/misc_helpers.S b/lib/aarch64/misc_helpers.S index e7c246e..574146f 100644 --- a/lib/aarch64/misc_helpers.S +++ b/lib/aarch64/misc_helpers.S
@@ -123,7 +123,7 @@ /* copy 16 bytes at a time */ m_loop16: cmp x2, #16 - b.lt m_loop1 + b.lo m_loop1 ldp x3, x4, [x1], #16 stp x3, x4, [x0], #16 sub x2, x2, #16