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.
2 parents 43ab65e + f63f3f1 commit 00769f1Copy full SHA for 00769f1
rust-version
@@ -1 +1 @@
1
-72d73cec61aa8f85901358cd5d386d5dd066fe52
+a526d7ce45fd2284e0e7c7556ccba2425b9d25e5
src/shims/x86/mod.rs
@@ -1178,7 +1178,7 @@ fn pclmulqdq<'tcx>(
1178
// if the i-th bit in right is set
1179
if (right & (1 << i)) != 0 {
1180
// xor result with `left` shifted to the left by i positions
1181
- result ^= (left as u128) << i;
+ result ^= u128::from(left) << i;
1182
}
1183
1184
0 commit comments