File tree Expand file tree Collapse file tree 3 files changed +84
-84
lines changed
stdarch-gen-arm/spec/neon Expand file tree Collapse file tree 3 files changed +84
-84
lines changed Original file line number Diff line number Diff line change @@ -425,7 +425,7 @@ pub fn vmovq_n_f64(value: f64) -> float64x2_t {
425
425
#[ cfg_attr( test, assert_instr( nop) ) ]
426
426
#[ stable( feature = "neon_intrinsics" , since = "1.59.0" ) ]
427
427
pub fn vget_high_f64 ( a : float64x2_t ) -> float64x1_t {
428
- unsafe { float64x1_t ( [ simd_extract ! ( a, 1 ) ] ) }
428
+ unsafe { float64x1_t:: from_array ( [ simd_extract ! ( a, 1 ) ] ) }
429
429
}
430
430
431
431
/// Duplicate vector element to vector or scalar
@@ -443,7 +443,7 @@ pub fn vget_high_p64(a: poly64x2_t) -> poly64x1_t {
443
443
#[ cfg_attr( test, assert_instr( nop) ) ]
444
444
#[ stable( feature = "neon_intrinsics" , since = "1.59.0" ) ]
445
445
pub fn vget_low_f64 ( a : float64x2_t ) -> float64x1_t {
446
- unsafe { float64x1_t ( [ simd_extract ! ( a, 0 ) ] ) }
446
+ unsafe { float64x1_t:: from_array ( [ simd_extract ! ( a, 0 ) ] ) }
447
447
}
448
448
449
449
/// Duplicate vector element to vector or scalar
You can’t perform that action at this time.
0 commit comments