mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
powerpc/memcpy: Don't predict the src and dst will be misaligned
Predicting misalignment will pessimize the expected common case. Don't predict true or false in thise case.
This commit is contained in:
parent
021abafa5c
commit
dcfc676147
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ ENTRY(FN_NAME)
|
|||
andi. %r7, %r4, ALIGN_MASK
|
||||
cmpd %r8, %r7
|
||||
mr %r7, %r5
|
||||
bne+ .Lcopy_remaining_fix_index_byte
|
||||
bne .Lcopy_remaining_fix_index_byte
|
||||
mr %r8, %r3 /* save dst */
|
||||
|
||||
/* align src */
|
||||
|
|
|
|||
Loading…
Reference in a new issue