We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d4466e commit a1a7086Copy full SHA for a1a7086
absl/container/internal/raw_hash_set.h
@@ -702,10 +702,8 @@ struct GroupSse2Impl {
702
// Returns a bitmask representing the positions of slots that match hash.
703
BitMask<uint16_t, kWidth> Match(h2_t hash) const {
704
auto match = _mm_set1_epi8(static_cast<char>(hash));
705
- BitMask<uint16_t, kWidth> result = BitMask<uint16_t, kWidth>(0);
706
- result = BitMask<uint16_t, kWidth>(
+ return BitMask<uint16_t, kWidth>(
707
static_cast<uint16_t>(_mm_movemask_epi8(_mm_cmpeq_epi8(match, ctrl))));
708
- return result;
709
}
710
711
// Returns a bitmask representing the positions of empty slots.
0 commit comments