File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/tools/miri/src/shims/x86 Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1140,15 +1140,15 @@ fn pmulhrsw<'tcx>(
1140
1140
Ok ( ( ) )
1141
1141
}
1142
1142
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` .
1145
1145
///
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.
1148
1148
///
1149
1149
/// <https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_clmulepi64_si128>
1150
1150
fn pclmulqdq < ' tcx > (
1151
- this : & mut crate :: MiriInterpCx < ' tcx > ,
1151
+ this : & mut MiriInterpCx < ' tcx > ,
1152
1152
left : & OpTy < ' tcx > ,
1153
1153
right : & OpTy < ' tcx > ,
1154
1154
imm8 : & OpTy < ' tcx > ,
You can’t perform that action at this time.
0 commit comments