@@ -39,7 +39,7 @@ impl<T> SveInto<T> for T {
3939macro_rules! impl_sve_type {
4040 ( $( ( $v: vis, $elem_type: ty, $name: ident, $elt: literal) ) * ) => ( $(
4141 #[ doc = concat!( "Scalable vector of type " , stringify!( $elem_type) ) ]
42- #[ derive( Clone , Copy , Debug ) ]
42+ #[ derive( Clone , Copy ) ]
4343 #[ rustc_scalable_vector( $elt) ]
4444 #[ unstable( feature = "stdarch_aarch64_sve" , issue = "145052" ) ]
4545 $v struct $name( $elem_type) ;
@@ -52,21 +52,21 @@ macro_rules! impl_sve_tuple_type {
5252 ) * ) ;
5353 ( @ ( $v: vis, $vec_type: ty, 2 , $name: ident) ) => (
5454 #[ doc = concat!( "Two-element tuple of scalable vectors of type " , stringify!( $vec_type) ) ]
55- #[ derive( Clone , Copy , Debug ) ]
55+ #[ derive( Clone , Copy ) ]
5656 #[ rustc_scalable_vector]
5757 #[ unstable( feature = "stdarch_aarch64_sve" , issue = "145052" ) ]
5858 $v struct $name( $vec_type, $vec_type) ;
5959 ) ;
6060 ( @ ( $v: vis, $vec_type: ty, 3 , $name: ident) ) => (
6161 #[ doc = concat!( "Three-element tuple of scalable vectors of type " , stringify!( $vec_type) ) ]
62- #[ derive( Clone , Copy , Debug ) ]
62+ #[ derive( Clone , Copy ) ]
6363 #[ rustc_scalable_vector]
6464 #[ unstable( feature = "stdarch_aarch64_sve" , issue = "145052" ) ]
6565 $v struct $name( $vec_type, $vec_type, $vec_type) ;
6666 ) ;
6767 ( @ ( $v: vis, $vec_type: ty, 4 , $name: ident) ) => (
6868 #[ doc = concat!( "Four-element tuple of scalable vectors of type " , stringify!( $vec_type) ) ]
69- #[ derive( Clone , Copy , Debug ) ]
69+ #[ derive( Clone , Copy ) ]
7070 #[ rustc_scalable_vector]
7171 #[ unstable( feature = "stdarch_aarch64_sve" , issue = "145052" ) ]
7272 $v struct $name( $vec_type, $vec_type, $vec_type, $vec_type) ;
0 commit comments