@@ -1156,7 +1156,7 @@ pub unsafe fn vcvtx_high_f32_f64(a: float32x2_t, b: float64x2_t) -> float32x4_t
1156
1156
/// Floating-point convert to signed fixed-point, rounding toward zero
1157
1157
#[ inline]
1158
1158
#[ target_feature( enable = "neon" ) ]
1159
- #[ cfg_attr( test, assert_instr( fcvtzs) ) ]
1159
+ #[ cfg_attr( test, assert_instr( " fcvtzs.f32" ) ) ]
1160
1160
pub unsafe fn vcvt_s32_f32 ( a : float32x2_t ) -> int32x2_t {
1161
1161
#[ allow( improper_ctypes) ]
1162
1162
extern "C" {
@@ -1169,7 +1169,7 @@ pub unsafe fn vcvt_s32_f32(a: float32x2_t) -> int32x2_t {
1169
1169
/// Floating-point convert to signed fixed-point, rounding toward zero
1170
1170
#[ inline]
1171
1171
#[ target_feature( enable = "neon" ) ]
1172
- #[ cfg_attr( test, assert_instr( fcvtzs) ) ]
1172
+ #[ cfg_attr( test, assert_instr( " fcvtzs.f32" ) ) ]
1173
1173
pub unsafe fn vcvtq_s32_f32 ( a : float32x4_t ) -> int32x4_t {
1174
1174
#[ allow( improper_ctypes) ]
1175
1175
extern "C" {
@@ -1182,7 +1182,7 @@ pub unsafe fn vcvtq_s32_f32(a: float32x4_t) -> int32x4_t {
1182
1182
/// Floating-point convert to signed fixed-point, rounding toward zero
1183
1183
#[ inline]
1184
1184
#[ target_feature( enable = "neon" ) ]
1185
- #[ cfg_attr( test, assert_instr( fcvtzs) ) ]
1185
+ #[ cfg_attr( test, assert_instr( " fcvtzs.f64" ) ) ]
1186
1186
pub unsafe fn vcvt_s64_f64 ( a : float64x1_t ) -> int64x1_t {
1187
1187
#[ allow( improper_ctypes) ]
1188
1188
extern "C" {
@@ -1195,7 +1195,7 @@ pub unsafe fn vcvt_s64_f64(a: float64x1_t) -> int64x1_t {
1195
1195
/// Floating-point convert to signed fixed-point, rounding toward zero
1196
1196
#[ inline]
1197
1197
#[ target_feature( enable = "neon" ) ]
1198
- #[ cfg_attr( test, assert_instr( fcvtzs) ) ]
1198
+ #[ cfg_attr( test, assert_instr( " fcvtzs.f64" ) ) ]
1199
1199
pub unsafe fn vcvtq_s64_f64 ( a : float64x2_t ) -> int64x2_t {
1200
1200
#[ allow( improper_ctypes) ]
1201
1201
extern "C" {
@@ -1416,7 +1416,7 @@ pub unsafe fn vcvtpq_s64_f64(a: float64x2_t) -> int64x2_t {
1416
1416
/// Floating-point convert to unsigned fixed-point, rounding toward zero
1417
1417
#[ inline]
1418
1418
#[ target_feature( enable = "neon" ) ]
1419
- #[ cfg_attr( test, assert_instr( fcvtzu) ) ]
1419
+ #[ cfg_attr( test, assert_instr( " fcvtzu.f32" ) ) ]
1420
1420
pub unsafe fn vcvt_u32_f32 ( a : float32x2_t ) -> uint32x2_t {
1421
1421
#[ allow( improper_ctypes) ]
1422
1422
extern "C" {
@@ -1429,7 +1429,7 @@ pub unsafe fn vcvt_u32_f32(a: float32x2_t) -> uint32x2_t {
1429
1429
/// Floating-point convert to unsigned fixed-point, rounding toward zero
1430
1430
#[ inline]
1431
1431
#[ target_feature( enable = "neon" ) ]
1432
- #[ cfg_attr( test, assert_instr( fcvtzu) ) ]
1432
+ #[ cfg_attr( test, assert_instr( " fcvtzu.f32" ) ) ]
1433
1433
pub unsafe fn vcvtq_u32_f32 ( a : float32x4_t ) -> uint32x4_t {
1434
1434
#[ allow( improper_ctypes) ]
1435
1435
extern "C" {
@@ -1442,7 +1442,7 @@ pub unsafe fn vcvtq_u32_f32(a: float32x4_t) -> uint32x4_t {
1442
1442
/// Floating-point convert to unsigned fixed-point, rounding toward zero
1443
1443
#[ inline]
1444
1444
#[ target_feature( enable = "neon" ) ]
1445
- #[ cfg_attr( test, assert_instr( fcvtzu) ) ]
1445
+ #[ cfg_attr( test, assert_instr( " fcvtzu.f64" ) ) ]
1446
1446
pub unsafe fn vcvt_u64_f64 ( a : float64x1_t ) -> uint64x1_t {
1447
1447
#[ allow( improper_ctypes) ]
1448
1448
extern "C" {
@@ -1455,7 +1455,7 @@ pub unsafe fn vcvt_u64_f64(a: float64x1_t) -> uint64x1_t {
1455
1455
/// Floating-point convert to unsigned fixed-point, rounding toward zero
1456
1456
#[ inline]
1457
1457
#[ target_feature( enable = "neon" ) ]
1458
- #[ cfg_attr( test, assert_instr( fcvtzu) ) ]
1458
+ #[ cfg_attr( test, assert_instr( " fcvtzu.f64" ) ) ]
1459
1459
pub unsafe fn vcvtq_u64_f64 ( a : float64x2_t ) -> uint64x2_t {
1460
1460
#[ allow( improper_ctypes) ]
1461
1461
extern "C" {
0 commit comments