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
always generates a call to memchr, even though it could just check the two chars. I can't really see a case where calling memchr is faster than just checking the two chars. For larger N it would also be interesting to use vector comparisons for this instead of calling a function.
The text was updated successfully, but these errors were encountered:
always generates a call to
memchr
, even though it could just check the two chars. I can't really see a case where callingmemchr
is faster than just checking the two chars. For larger N it would also be interesting to use vector comparisons for this instead of calling a function.The text was updated successfully, but these errors were encountered: