Removes a register copy from x86 codegen.

This commit is contained in:
Matthew Parkinson
2021-07-14 12:03:07 +01:00
committed by Matthew Parkinson
parent de8ef3efc7
commit c58b0a5f4d

View File

@@ -56,7 +56,7 @@ namespace snmalloc
{
uint64_t bottom_bit = bit_source & 1;
bit_source = (bottom_bit << 63) | (bit_source >> 1);
return bottom_bit & 1;
return bit_source & 1;
}
/**