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
From my observation, a lot of << operations are performed on (possibly) negative integers which is undefined behavior in C (apparently this also includes s8 and s16 because of integer promotion).
This kind of UB should be eliminated as long as multiplication also matches the vanilla assembly code.
The text was updated successfully, but these errors were encountered:
From my observation, a lot of
<<
operations are performed on (possibly) negative integers which is undefined behavior in C (apparently this also includess8
ands16
because of integer promotion).This kind of UB should be eliminated as long as multiplication also matches the vanilla assembly code.
The text was updated successfully, but these errors were encountered: