Skip to content

Commit

Permalink
comment nits
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung authored Jun 8, 2024
1 parent 8d1dca2 commit 6a86688
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/shims/x86/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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>,
Expand Down

0 comments on commit 6a86688

Please sign in to comment.