File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/core_arch/src/arm/neon Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1157,7 +1157,7 @@ pub unsafe fn vabsq_s32(a: int32x4_t) -> int32x4_t {
1157
1157
#[ inline]
1158
1158
#[ target_feature( enable = "neon" ) ]
1159
1159
#[ cfg_attr( target_arch = "arm" , target_feature( enable = "v7" ) ) ]
1160
- #[ cfg_attr( all( test, target_arch = "arm" ) , assert_instr( fabs ) ) ]
1160
+ #[ cfg_attr( all( test, target_arch = "arm" ) , assert_instr( vabs ) ) ]
1161
1161
#[ cfg_attr( all( test, target_arch = "aarch64" ) , assert_instr( fabs) ) ]
1162
1162
pub unsafe fn vabs_f32 ( a : float32x2_t ) -> float32x2_t {
1163
1163
vabs_f32_ ( a)
@@ -1166,7 +1166,7 @@ pub unsafe fn vabs_f32(a: float32x2_t) -> float32x2_t {
1166
1166
#[ inline]
1167
1167
#[ target_feature( enable = "neon" ) ]
1168
1168
#[ cfg_attr( target_arch = "arm" , target_feature( enable = "v7" ) ) ]
1169
- #[ cfg_attr( all( test, target_arch = "arm" ) , assert_instr( fabs ) ) ]
1169
+ #[ cfg_attr( all( test, target_arch = "arm" ) , assert_instr( vabs ) ) ]
1170
1170
#[ cfg_attr( all( test, target_arch = "aarch64" ) , assert_instr( fabs) ) ]
1171
1171
pub unsafe fn vabsq_f32 ( a : float32x4_t ) -> float32x4_t {
1172
1172
vabsq_f32_ ( a)
You can’t perform that action at this time.
0 commit comments