You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This patch does not shorten the form *p - *q as memcmp uses. I am looking for a way to do this.
The text was updated successfully, but these errors were encountered:
zu2
changed the title
be-codegen-6800.c Optimizes addition and subtraction with signed char.
be-codegen-6800.c Optimizes addition and subtraction with signed/unsigned char.
Nov 18, 2024
Currently, addition with signed/unsigned char pushes the augend onto the stack, sign-extends the addend, and then calls a helper function.
This patch provides shorter code.
the patch pass this test program.
before
after.
This patch does not shorten the form *p - *q as memcmp uses. I am looking for a way to do this.
The text was updated successfully, but these errors were encountered: