@@ -1225,7 +1225,7 @@ pub unsafe fn vgetq_lane_u32(v: uint32x4_t, imm5: i32) -> u32 {
1225
1225
#[ target_feature( enable = "neon" ) ]
1226
1226
#[ cfg_attr( target_arch = "arm" , target_feature( enable = "v7" ) ) ]
1227
1227
#[ rustc_args_required_const( 1 ) ]
1228
- #[ cfg_attr( all( test, target_arch = "arm" ) , assert_instr( "vmov.32 " , imm5 = 2 ) ) ]
1228
+ #[ cfg_attr( all( test, target_arch = "arm" ) , assert_instr( "vmov.u8 " , imm5 = 2 ) ) ]
1229
1229
#[ cfg_attr( all( test, target_arch = "aarch64" ) , assert_instr( umov, imm5 = 2 ) ) ]
1230
1230
pub unsafe fn vget_lane_u8 ( v : uint8x8_t , imm5 : i32 ) -> u8 {
1231
1231
if ( imm5) < 0 || ( imm5) > 7 {
@@ -1329,7 +1329,7 @@ pub unsafe fn vreinterpretq_u8_s8(a: int8x16_t) -> uint8x16_t {
1329
1329
#[ inline]
1330
1330
#[ target_feature( enable = "neon" ) ]
1331
1331
#[ cfg_attr( target_arch = "arm" , target_feature( enable = "v7" ) ) ]
1332
- #[ cfg_attr( all( test, target_arch = "arm" ) , assert_instr( "vshr.s8 " , imm3 = 1 ) ) ]
1332
+ #[ cfg_attr( all( test, target_arch = "arm" ) , assert_instr( "vshr.u8 " , imm3 = 1 ) ) ]
1333
1333
#[ cfg_attr( all( test, target_arch = "aarch64" ) , assert_instr( "ushr" , imm3 = 1 ) ) ]
1334
1334
#[ rustc_args_required_const( 1 ) ]
1335
1335
pub unsafe fn vshrq_n_u8 ( a : uint8x16_t , imm3 : i32 ) -> uint8x16_t {
0 commit comments