We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 152c2d0 commit 9eb3150Copy full SHA for 9eb3150
crates/core_arch/src/aarch64/neon/generated.rs
@@ -20129,18 +20129,18 @@ mod test {
20129
20130
#[simd_test(enable = "neon")]
20131
unsafe fn test_vextq_p64() {
20132
- let a: i64x2 = i64x2::new(0, 8);
20133
- let b: i64x2 = i64x2::new(9, 11);
20134
- let e: i64x2 = i64x2::new(8, 9);
+ let a: i64x2 = i64x2::new(1, 1);
+ let b: i64x2 = i64x2::new(2, 2);
+ let e: i64x2 = i64x2::new(1, 2);
20135
let r: i64x2 = transmute(vextq_p64::<1>(transmute(a), transmute(b)));
20136
assert_eq!(r, e);
20137
}
20138
20139
20140
unsafe fn test_vextq_f64() {
20141
- let a: f64x2 = f64x2::new(0., 2.);
20142
- let b: f64x2 = f64x2::new(3., 4.);
20143
- let e: f64x2 = f64x2::new(2., 3.);
+ let a: f64x2 = f64x2::new(1., 1.);
+ let b: f64x2 = f64x2::new(2., 2.);
+ let e: f64x2 = f64x2::new(1., 2.);
20144
let r: f64x2 = transmute(vextq_f64::<1>(transmute(a), transmute(b)));
20145
20146
0 commit comments