@@ -734,7 +734,6 @@ pub(crate) mod builtin {
734
734
#[ allow_internal_unstable( fmt_internals) ]
735
735
#[ rustc_builtin_macro]
736
736
#[ macro_export]
737
- #[ rustc_macro_transparency = "opaque" ]
738
737
macro_rules! format_args {
739
738
( $fmt: expr) => ( { /* compiler built-in */ } ) ;
740
739
( $fmt: expr, $( $args: tt) * ) => ( { /* compiler built-in */ } )
@@ -747,7 +746,6 @@ pub(crate) mod builtin {
747
746
#[ allow_internal_unstable( fmt_internals) ]
748
747
#[ rustc_builtin_macro]
749
748
#[ macro_export]
750
- #[ rustc_macro_transparency = "opaque" ]
751
749
macro_rules! format_args_nl {
752
750
( $fmt: expr) => ( { /* compiler built-in */ } ) ;
753
751
( $fmt: expr, $( $args: tt) * ) => ( { /* compiler built-in */ } )
@@ -1235,42 +1233,36 @@ pub(crate) mod builtin {
1235
1233
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1236
1234
#[ allow_internal_unstable( test, rustc_attrs) ]
1237
1235
#[ rustc_builtin_macro]
1238
- #[ rustc_macro_transparency = "semitransparent" ]
1239
1236
pub macro test( $item: item) { /* compiler built-in */ }
1240
1237
1241
1238
/// Attribute macro applied to a function to turn it into a benchmark test.
1242
1239
#[ unstable( feature = "test" , issue = "50297" ,
1243
1240
reason = "`bench` is a part of custom test frameworks which are unstable" ) ]
1244
1241
#[ allow_internal_unstable( test, rustc_attrs) ]
1245
1242
#[ rustc_builtin_macro]
1246
- #[ rustc_macro_transparency = "semitransparent" ]
1247
1243
pub macro bench ( $item: item) { /* compiler built-in */ }
1248
1244
1249
1245
/// An implementation detail of the `#[test]` and `#[bench]` macros.
1250
1246
#[ unstable( feature = "custom_test_frameworks" , issue = "50297" ,
1251
1247
reason = "custom test frameworks are an unstable feature" ) ]
1252
1248
#[ allow_internal_unstable( test, rustc_attrs) ]
1253
1249
#[ rustc_builtin_macro]
1254
- #[ rustc_macro_transparency = "semitransparent" ]
1255
1250
pub macro test_case ( $item: item) { /* compiler built-in */ }
1256
1251
1257
1252
/// Attribute macro applied to a static to register it as a global allocator.
1258
1253
#[ stable( feature = "global_allocator" , since = "1.28.0" ) ]
1259
1254
#[ allow_internal_unstable( rustc_attrs) ]
1260
1255
#[ rustc_builtin_macro]
1261
- #[ rustc_macro_transparency = "semitransparent" ]
1262
1256
pub macro global_allocator ( $item: item) { /* compiler built-in */ }
1263
1257
1264
1258
/// Unstable implementation detail of the `rustc` compiler, do not use.
1265
1259
#[ rustc_builtin_macro]
1266
- #[ cfg_attr( boostrap_stdarch_ignore_this, rustc_macro_transparency = "semitransparent" ) ]
1267
1260
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1268
1261
#[ allow_internal_unstable( core_intrinsics, libstd_sys_internals) ]
1269
1262
pub macro RustcDecodable ( $item: item) { /* compiler built-in */ }
1270
1263
1271
1264
/// Unstable implementation detail of the `rustc` compiler, do not use.
1272
1265
#[ rustc_builtin_macro]
1273
- #[ cfg_attr( boostrap_stdarch_ignore_this, rustc_macro_transparency = "semitransparent" ) ]
1274
1266
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1275
1267
#[ allow_internal_unstable( core_intrinsics) ]
1276
1268
pub macro RustcEncodable ( $item: item) { /* compiler built-in */ }
0 commit comments