Skip to content

Commit ea73f00

Browse files
authored
comment nits
1 parent 3fa1d47 commit ea73f00

File tree

1 file changed

+5
-5
lines changed
  • src/tools/miri/src/shims/x86

1 file changed

+5
-5
lines changed

src/tools/miri/src/shims/x86/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,15 +1140,15 @@ fn pmulhrsw<'tcx>(
11401140
Ok(())
11411141
}
11421142

1143-
/// Perform a carry-less multiplication of two 64-bit integers, selected from left and right according to imm8,
1144-
/// and store the results in dst.
1143+
/// Perform a carry-less multiplication of two 64-bit integers, selected from `left` and `right` according to `imm8`,
1144+
/// and store the results in `dst`.
11451145
///
1146-
/// Left and right are both vectors of type 2 x i64. Only bits 0 and 4 of imm8 matter;
1147-
/// they select the element of left and right, respectively.
1146+
/// `left` and `right` are both vectors of type 2 x i64. Only bits 0 and 4 of `imm8` matter;
1147+
/// they select the element of `left` and `right`, respectively.
11481148
///
11491149
/// <https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_clmulepi64_si128>
11501150
fn pclmulqdq<'tcx>(
1151-
this: &mut crate::MiriInterpCx<'tcx>,
1151+
this: &mut MiriInterpCx<'tcx>,
11521152
left: &OpTy<'tcx>,
11531153
right: &OpTy<'tcx>,
11541154
imm8: &OpTy<'tcx>,

0 commit comments

Comments
 (0)