good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 3047f294 authored by Anmol Sethi's avatar Anmol Sethi
Browse files

Mention the unrolled loops can be cleaned up in the future

parent 3db4c889
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,9 @@ func fastXOR(key [4]byte, keyPos int, b []byte) int {
}
k := binary.LittleEndian.Uint64(alignedKey[:])
// At some point in the future we can clean these unrolled loops up.
// See https://github.com/golang/go/issues/31586#issuecomment-487436401
// Then we xor until b is less than 128 bytes.
for len(b) >= 128 {
v := binary.LittleEndian.Uint64(b)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment