File tree 2 files changed +5
-5
lines changed
crates/intrinsic-test/src
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -173,8 +173,8 @@ impl ArgumentList {
173
173
. join ( "\n " )
174
174
}
175
175
176
- /// Creates a line for each argument that initalizes the argument from an array [arg]_vals at
177
- /// an offset i using a load intrinsic, in C.
176
+ /// Creates a line for each argument that initializes the argument from an array ` [arg]_vals` at
177
+ /// an offset `i` using a load intrinsic, in C.
178
178
/// e.g `uint8x8_t a = vld1_u8(&a_vals[i]);`
179
179
pub fn load_values_c ( & self , p64_armv7_workaround : bool ) -> String {
180
180
self . iter ( )
@@ -214,8 +214,8 @@ impl ArgumentList {
214
214
. join ( "\n " )
215
215
}
216
216
217
- /// Creates a line for each argument that initalizes the argument from array [ARG]_VALS at
218
- /// an offset i using a load intrinsic, in Rust.
217
+ /// Creates a line for each argument that initializes the argument from array ` [ARG]_VALS` at
218
+ /// an offset `i` using a load intrinsic, in Rust.
219
219
/// e.g `let a = vld1_u8(A_VALS.as_ptr().offset(i));`
220
220
pub fn load_values_rust ( & self ) -> String {
221
221
self . iter ( )
Original file line number Diff line number Diff line change @@ -851,7 +851,7 @@ fn check_patterndead4(pos: &Pos, sd: Side) -> i32 {
851
851
n
852
852
}
853
853
854
- /// Check <b>-OOO-, -OO-O-, -O-OO-</br >
854
+ /// Check <b>-OOO-, -OO-O-, -O-OO-</b >
855
855
fn check_patternlive3 ( pos : & Pos , sd : Side ) -> i32 {
856
856
let mut n: i32 = 0 ;
857
857
You can’t perform that action at this time.
0 commit comments