@@ -202,7 +202,7 @@ pub trait PartialEq<Rhs: ?Sized = Self> {
202
202
203
203
/// Derive macro generating an impl of the trait `PartialEq`.
204
204
#[ rustc_builtin_macro]
205
- #[ rustc_macro_transparency = "semitransparent" ]
205
+ #[ cfg_attr ( boostrap_stdarch_ignore_this , rustc_macro_transparency = "semitransparent" ) ]
206
206
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
207
207
#[ allow_internal_unstable( core_intrinsics) ]
208
208
pub macro PartialEq ( $item: item) { /* compiler built-in */ }
@@ -265,7 +265,7 @@ pub trait Eq: PartialEq<Self> {
265
265
266
266
/// Derive macro generating an impl of the trait `Eq`.
267
267
#[ rustc_builtin_macro]
268
- #[ rustc_macro_transparency = "semitransparent" ]
268
+ #[ cfg_attr ( boostrap_stdarch_ignore_this , rustc_macro_transparency = "semitransparent" ) ]
269
269
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
270
270
#[ allow_internal_unstable( core_intrinsics, derive_eq) ]
271
271
pub macro Eq ( $item: item) { /* compiler built-in */ }
@@ -616,7 +616,7 @@ pub trait Ord: Eq + PartialOrd<Self> {
616
616
617
617
/// Derive macro generating an impl of the trait `Ord`.
618
618
#[ rustc_builtin_macro]
619
- #[ rustc_macro_transparency = "semitransparent" ]
619
+ #[ cfg_attr ( boostrap_stdarch_ignore_this , rustc_macro_transparency = "semitransparent" ) ]
620
620
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
621
621
#[ allow_internal_unstable( core_intrinsics) ]
622
622
pub macro Ord ( $item: item) { /* compiler built-in */ }
@@ -865,7 +865,7 @@ pub trait PartialOrd<Rhs: ?Sized = Self>: PartialEq<Rhs> {
865
865
866
866
/// Derive macro generating an impl of the trait `PartialOrd`.
867
867
#[ rustc_builtin_macro]
868
- #[ rustc_macro_transparency = "semitransparent" ]
868
+ #[ cfg_attr ( boostrap_stdarch_ignore_this , rustc_macro_transparency = "semitransparent" ) ]
869
869
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
870
870
#[ allow_internal_unstable( core_intrinsics) ]
871
871
pub macro PartialOrd ( $item: item) { /* compiler built-in */ }
0 commit comments