Skip to content

Commit 74b8e04

Browse files
committed
Fmt and fix test values
1 parent dccbeab commit 74b8e04

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

crates/core_arch/src/aarch64/neon/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2503,7 +2503,6 @@ mod tests {
25032503
unsafe fn test_vsubq_f64() {
25042504
testq_ari_f64(|i, j| vsubq_f64(i, j), |a: f64, b: f64| -> f64 { a - b });
25052505
}
2506-
25072506
}
25082507

25092508
#[cfg(test)]

crates/core_arch/src/arm/neon/generated.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -3106,8 +3106,8 @@ mod test {
31063106
0x0E, 0x0F,
31073107
);
31083108
let b: u8x16 = u8x16::new(
3109-
0x00, 0x00, 0x02, 0x04, 0x04, 0x00, 0x06, 0x08, 0x08, 0x00, 0x0A, 0x0A, 0x0C, 0xD0,
3110-
0x0E, 0xFF,
3109+
0x00, 0x00, 0x02, 0x04, 0x04, 0x00, 0x06, 0x08, 0x08, 0x00, 0x0A, 0x0A, 0x0C, 0x10,
3110+
0x0E, 0x1F,
31113111
);
31123112
let e: u8x16 = u8x16::new(
31133113
0xFF, 0, 0xFF, 0, 0xFF, 0, 0xFF, 0, 0xFF, 0, 0xFF, 0, 0xFF, 0, 0xFF, 0,
@@ -3215,8 +3215,8 @@ mod test {
32153215
0x0E, 0x0F,
32163216
);
32173217
let b: i8x16 = i8x16::new(
3218-
0x00, 0x00, 0x02, 0x04, 0x04, 0x00, 0x06, 0x08, 0x08, 0x00, 0x0A, 0x0A, 0x0C, 0xD0,
3219-
0x0E, 0xFF,
3218+
0x00, 0x00, 0x02, 0x04, 0x04, 0x00, 0x06, 0x08, 0x08, 0x00, 0x0A, 0x0A, 0x0C, 0x10,
3219+
0x0E, 0x1F,
32203220
);
32213221
let e: u8x16 = u8x16::new(
32223222
0xFF, 0, 0xFF, 0, 0xFF, 0, 0xFF, 0, 0xFF, 0, 0xFF, 0, 0xFF, 0, 0xFF, 0,

crates/core_arch/src/arm/neon/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3940,7 +3940,6 @@ mod tests {
39403940
let e = i8x16::new(-1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16);
39413941
assert_eq!(r, e)
39423942
}
3943-
39443943
}
39453944

39463945
#[cfg(test)]

0 commit comments

Comments
 (0)