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 {
425425#[ cfg_attr( test, assert_instr( nop) ) ]
426426#[ stable( feature = "neon_intrinsics" , since = "1.59.0" ) ]
427427pub 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 ) ] ) }
429429}
430430
431431/// Duplicate vector element to vector or scalar
@@ -443,7 +443,7 @@ pub fn vget_high_p64(a: poly64x2_t) -> poly64x1_t {
443443#[ cfg_attr( test, assert_instr( nop) ) ]
444444#[ stable( feature = "neon_intrinsics" , since = "1.59.0" ) ]
445445pub 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 ) ] ) }
447447}
448448
449449/// Duplicate vector element to vector or scalar
You can’t perform that action at this time.
0 commit comments