@@ -734,7 +734,6 @@ pub(crate) mod builtin {
734734 #[ allow_internal_unstable( fmt_internals) ]
735735 #[ rustc_builtin_macro]
736736 #[ macro_export]
737- #[ rustc_macro_transparency = "opaque" ]
738737 macro_rules! format_args {
739738 ( $fmt: expr) => ( { /* compiler built-in */ } ) ;
740739 ( $fmt: expr, $( $args: tt) * ) => ( { /* compiler built-in */ } )
@@ -747,7 +746,6 @@ pub(crate) mod builtin {
747746 #[ allow_internal_unstable( fmt_internals) ]
748747 #[ rustc_builtin_macro]
749748 #[ macro_export]
750- #[ rustc_macro_transparency = "opaque" ]
751749 macro_rules! format_args_nl {
752750 ( $fmt: expr) => ( { /* compiler built-in */ } ) ;
753751 ( $fmt: expr, $( $args: tt) * ) => ( { /* compiler built-in */ } )
@@ -1235,42 +1233,36 @@ pub(crate) mod builtin {
12351233 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
12361234 #[ allow_internal_unstable( test, rustc_attrs) ]
12371235 #[ rustc_builtin_macro]
1238- #[ rustc_macro_transparency = "semitransparent" ]
12391236 pub macro test( $item: item) { /* compiler built-in */ }
12401237
12411238 /// Attribute macro applied to a function to turn it into a benchmark test.
12421239 #[ unstable( feature = "test" , issue = "50297" ,
12431240 reason = "`bench` is a part of custom test frameworks which are unstable" ) ]
12441241 #[ allow_internal_unstable( test, rustc_attrs) ]
12451242 #[ rustc_builtin_macro]
1246- #[ rustc_macro_transparency = "semitransparent" ]
12471243 pub macro bench ( $item: item) { /* compiler built-in */ }
12481244
12491245 /// An implementation detail of the `#[test]` and `#[bench]` macros.
12501246 #[ unstable( feature = "custom_test_frameworks" , issue = "50297" ,
12511247 reason = "custom test frameworks are an unstable feature" ) ]
12521248 #[ allow_internal_unstable( test, rustc_attrs) ]
12531249 #[ rustc_builtin_macro]
1254- #[ rustc_macro_transparency = "semitransparent" ]
12551250 pub macro test_case ( $item: item) { /* compiler built-in */ }
12561251
12571252 /// Attribute macro applied to a static to register it as a global allocator.
12581253 #[ stable( feature = "global_allocator" , since = "1.28.0" ) ]
12591254 #[ allow_internal_unstable( rustc_attrs) ]
12601255 #[ rustc_builtin_macro]
1261- #[ rustc_macro_transparency = "semitransparent" ]
12621256 pub macro global_allocator ( $item: item) { /* compiler built-in */ }
12631257
12641258 /// Unstable implementation detail of the `rustc` compiler, do not use.
12651259 #[ rustc_builtin_macro]
1266- #[ cfg_attr( boostrap_stdarch_ignore_this, rustc_macro_transparency = "semitransparent" ) ]
12671260 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
12681261 #[ allow_internal_unstable( core_intrinsics, libstd_sys_internals) ]
12691262 pub macro RustcDecodable ( $item: item) { /* compiler built-in */ }
12701263
12711264 /// Unstable implementation detail of the `rustc` compiler, do not use.
12721265 #[ rustc_builtin_macro]
1273- #[ cfg_attr( boostrap_stdarch_ignore_this, rustc_macro_transparency = "semitransparent" ) ]
12741266 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
12751267 #[ allow_internal_unstable( core_intrinsics) ]
12761268 pub macro RustcEncodable ( $item: item) { /* compiler built-in */ }
0 commit comments