about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-06-08 18:31:46 +0200
committerGitHub <noreply@github.com>2024-06-08 18:31:46 +0200
commitea73f0067fa6274a7c845f8ff0a9418cbde243bb (patch)
treea7b210fe85eb5832a35ae15b074b3ee89e3be606 /src
parent3fa1d4726746a5bf35083a47ae9559682252f176 (diff)
downloadrust-ea73f0067fa6274a7c845f8ff0a9418cbde243bb.tar.gz
rust-ea73f0067fa6274a7c845f8ff0a9418cbde243bb.zip
comment nits
Diffstat (limited to 'src')
-rw-r--r--src/tools/miri/src/shims/x86/mod.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/miri/src/shims/x86/mod.rs b/src/tools/miri/src/shims/x86/mod.rs
index 0374cfedc5a..f2d120df21c 100644
--- a/src/tools/miri/src/shims/x86/mod.rs
+++ b/src/tools/miri/src/shims/x86/mod.rs
@@ -1140,15 +1140,15 @@ fn pmulhrsw<'tcx>(
     Ok(())
 }
 
-/// Perform a carry-less multiplication of two 64-bit integers, selected from left and right according to imm8,
-/// and store the results in dst.
+/// Perform a carry-less multiplication of two 64-bit integers, selected from `left` and `right` according to `imm8`,
+/// and store the results in `dst`.
 ///
-/// Left and right are both vectors of type 2 x i64. Only bits 0 and 4 of imm8 matter;
-/// they select the element of left and right, respectively.
+/// `left` and `right` are both vectors of type 2 x i64. Only bits 0 and 4 of `imm8` matter;
+/// they select the element of `left` and `right`, respectively.
 ///
 /// <https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_clmulepi64_si128>
 fn pclmulqdq<'tcx>(
-    this: &mut crate::MiriInterpCx<'tcx>,
+    this: &mut MiriInterpCx<'tcx>,
     left: &OpTy<'tcx>,
     right: &OpTy<'tcx>,
     imm8: &OpTy<'tcx>,