Skip to content

xtensa/memcpy.S: Fix invalid asm code #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: esp_based_on_4_1_0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion newlib/libc/machine/xtensa/memcpy.S
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ memcpy:
unaligned src. */
ssa8 a3 // set shift amount from byte offset
#if UNALIGNED_ADDRESSES_CHECKED
srli a11, a8, 30 // save unalignment offset for below
extui a11, a8, 30, 2 // save unalignment offset for below
sub a3, a3, a11 // align a3
#endif
l32i a6, a3, 0 // load first word
Expand Down