Skip to content

Commit 00769f1

Browse files
committed
Auto merge of #3768 - rust-lang:rustup-2024-07-27, r=RalfJung
Automatic Rustup
2 parents 43ab65e + f63f3f1 commit 00769f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
72d73cec61aa8f85901358cd5d386d5dd066fe52
1+
a526d7ce45fd2284e0e7c7556ccba2425b9d25e5

src/shims/x86/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@ fn pclmulqdq<'tcx>(
11781178
// if the i-th bit in right is set
11791179
if (right & (1 << i)) != 0 {
11801180
// xor result with `left` shifted to the left by i positions
1181-
result ^= (left as u128) << i;
1181+
result ^= u128::from(left) << i;
11821182
}
11831183
}
11841184

0 commit comments

Comments
 (0)