Removes a register copy from x86 codegen.
This commit is contained in:
committed by
Matthew Parkinson
parent
de8ef3efc7
commit
c58b0a5f4d
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user