@@ -672,7 +672,6 @@ pub unsafe fn v128_store64_lane<const L: usize>(v: v128, m: *mut u64) {
672
672
/// If possible this will generate a `v128.const` instruction, otherwise it may
673
673
/// be lowered to a sequence of instructions to materialize the vector value.
674
674
#[ inline]
675
- #[ target_feature( enable = "simd128" ) ]
676
675
#[ cfg_attr(
677
676
test,
678
677
assert_instr(
@@ -727,7 +726,6 @@ pub const fn i8x16(
727
726
/// If possible this will generate a `v128.const` instruction, otherwise it may
728
727
/// be lowered to a sequence of instructions to materialize the vector value.
729
728
#[ inline]
730
- #[ target_feature( enable = "simd128" ) ]
731
729
#[ doc( alias( "v128.const" ) ) ]
732
730
#[ stable( feature = "wasm_simd" , since = "1.54.0" ) ]
733
731
#[ rustc_const_stable( feature = "wasm_simd" , since = "1.54.0" ) ]
@@ -760,7 +758,6 @@ pub const fn u8x16(
760
758
/// If possible this will generate a `v128.const` instruction, otherwise it may
761
759
/// be lowered to a sequence of instructions to materialize the vector value.
762
760
#[ inline]
763
- #[ target_feature( enable = "simd128" ) ]
764
761
#[ cfg_attr(
765
762
test,
766
763
assert_instr(
@@ -787,7 +784,6 @@ pub const fn i16x8(a0: i16, a1: i16, a2: i16, a3: i16, a4: i16, a5: i16, a6: i16
787
784
/// If possible this will generate a `v128.const` instruction, otherwise it may
788
785
/// be lowered to a sequence of instructions to materialize the vector value.
789
786
#[ inline]
790
- #[ target_feature( enable = "simd128" ) ]
791
787
#[ doc( alias( "v128.const" ) ) ]
792
788
#[ stable( feature = "wasm_simd" , since = "1.54.0" ) ]
793
789
#[ rustc_const_stable( feature = "wasm_simd" , since = "1.54.0" ) ]
@@ -800,7 +796,6 @@ pub const fn u16x8(a0: u16, a1: u16, a2: u16, a3: u16, a4: u16, a5: u16, a6: u16
800
796
/// If possible this will generate a `v128.const` instruction, otherwise it may
801
797
/// be lowered to a sequence of instructions to materialize the vector value.
802
798
#[ inline]
803
- #[ target_feature( enable = "simd128" ) ]
804
799
#[ cfg_attr( test, assert_instr( v128. const , a0 = 0 , a1 = 1 , a2 = 2 , a3 = 3 ) ) ]
805
800
#[ doc( alias( "v128.const" ) ) ]
806
801
#[ stable( feature = "wasm_simd" , since = "1.54.0" ) ]
@@ -814,7 +809,6 @@ pub const fn i32x4(a0: i32, a1: i32, a2: i32, a3: i32) -> v128 {
814
809
/// If possible this will generate a `v128.const` instruction, otherwise it may
815
810
/// be lowered to a sequence of instructions to materialize the vector value.
816
811
#[ inline]
817
- #[ target_feature( enable = "simd128" ) ]
818
812
#[ doc( alias( "v128.const" ) ) ]
819
813
#[ stable( feature = "wasm_simd" , since = "1.54.0" ) ]
820
814
#[ rustc_const_stable( feature = "wasm_simd" , since = "1.54.0" ) ]
@@ -827,7 +821,6 @@ pub const fn u32x4(a0: u32, a1: u32, a2: u32, a3: u32) -> v128 {
827
821
/// If possible this will generate a `v128.const` instruction, otherwise it may
828
822
/// be lowered to a sequence of instructions to materialize the vector value.
829
823
#[ inline]
830
- #[ target_feature( enable = "simd128" ) ]
831
824
#[ cfg_attr( test, assert_instr( v128. const , a0 = 1 , a1 = 2 ) ) ]
832
825
#[ doc( alias( "v128.const" ) ) ]
833
826
#[ stable( feature = "wasm_simd" , since = "1.54.0" ) ]
@@ -841,7 +834,6 @@ pub const fn i64x2(a0: i64, a1: i64) -> v128 {
841
834
/// If possible this will generate a `v128.const` instruction, otherwise it may
842
835
/// be lowered to a sequence of instructions to materialize the vector value.
843
836
#[ inline]
844
- #[ target_feature( enable = "simd128" ) ]
845
837
#[ doc( alias( "v128.const" ) ) ]
846
838
#[ stable( feature = "wasm_simd" , since = "1.54.0" ) ]
847
839
#[ rustc_const_stable( feature = "wasm_simd" , since = "1.54.0" ) ]
@@ -854,7 +846,6 @@ pub const fn u64x2(a0: u64, a1: u64) -> v128 {
854
846
/// If possible this will generate a `v128.const` instruction, otherwise it may
855
847
/// be lowered to a sequence of instructions to materialize the vector value.
856
848
#[ inline]
857
- #[ target_feature( enable = "simd128" ) ]
858
849
#[ cfg_attr( test, assert_instr( v128. const , a0 = 0.0 , a1 = 1.0 , a2 = 2.0 , a3 = 3.0 ) ) ]
859
850
#[ doc( alias( "v128.const" ) ) ]
860
851
#[ stable( feature = "wasm_simd" , since = "1.54.0" ) ]
@@ -868,7 +859,6 @@ pub const fn f32x4(a0: f32, a1: f32, a2: f32, a3: f32) -> v128 {
868
859
/// If possible this will generate a `v128.const` instruction, otherwise it may
869
860
/// be lowered to a sequence of instructions to materialize the vector value.
870
861
#[ inline]
871
- #[ target_feature( enable = "simd128" ) ]
872
862
#[ cfg_attr( test, assert_instr( v128. const , a0 = 0.0 , a1 = 1.0 ) ) ]
873
863
#[ doc( alias( "v128.const" ) ) ]
874
864
#[ stable( feature = "wasm_simd" , since = "1.54.0" ) ]
0 commit comments