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
runtime (gc): work around IR generation bug with right shifts
Right shifting more than the size of a type is considered legal by the Go spec, but not by LLVM.
As a result, alignMask was returning poison values on 16-bit and 32-bit systems.
This is a temporary workaround that assumes that the input size is small.
0 commit comments