fix clippy
This commit is contained in:
parent
00e89d3cb6
commit
822286f075
1 changed files with 1 additions and 1 deletions
|
|
@ -1178,7 +1178,7 @@ fn pclmulqdq<'tcx>(
|
|||
// if the i-th bit in right is set
|
||||
if (right & (1 << i)) != 0 {
|
||||
// xor result with `left` shifted to the left by i positions
|
||||
result ^= (left as u128) << i;
|
||||
result ^= u128::from(left) << i;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue