prog: add a TODO for hints

This commit is contained in:
Dmitry Vyukov 2017-10-20 12:12:21 +02:00
parent 54ae9c6db3
commit 5044885ca2

View File

@ -182,6 +182,8 @@ func shrinkExpand(v uint64, compMap CompMap) uint64Set {
// Replace size least significant bits of v with
// corresponding bits of newV. Leave the rest of v as it was.
replacer := (v &^ mask) | (newV & mask)
// TODO(dvyukov): should we try replacing with arg+/-1?
// This could trigger some off-by-ones.
replacers[replacer] = true
}
}