Finish transition from semitransparent to semiopaque for rustc_macro_transparency
This commit is contained in:
parent
6da1048236
commit
0cba97b3b4
2 changed files with 8 additions and 8 deletions
|
|
@ -744,43 +744,43 @@ unsafe extern "C" {
|
||||||
pub struct VaList<'a>(&'a mut VaListImpl);
|
pub struct VaList<'a>(&'a mut VaListImpl);
|
||||||
|
|
||||||
#[rustc_builtin_macro]
|
#[rustc_builtin_macro]
|
||||||
#[rustc_macro_transparency = "semitransparent"]
|
#[rustc_macro_transparency = "semiopaque"]
|
||||||
pub macro stringify($($t:tt)*) {
|
pub macro stringify($($t:tt)*) {
|
||||||
/* compiler built-in */
|
/* compiler built-in */
|
||||||
}
|
}
|
||||||
|
|
||||||
#[rustc_builtin_macro]
|
#[rustc_builtin_macro]
|
||||||
#[rustc_macro_transparency = "semitransparent"]
|
#[rustc_macro_transparency = "semiopaque"]
|
||||||
pub macro file() {
|
pub macro file() {
|
||||||
/* compiler built-in */
|
/* compiler built-in */
|
||||||
}
|
}
|
||||||
|
|
||||||
#[rustc_builtin_macro]
|
#[rustc_builtin_macro]
|
||||||
#[rustc_macro_transparency = "semitransparent"]
|
#[rustc_macro_transparency = "semiopaque"]
|
||||||
pub macro line() {
|
pub macro line() {
|
||||||
/* compiler built-in */
|
/* compiler built-in */
|
||||||
}
|
}
|
||||||
|
|
||||||
#[rustc_builtin_macro]
|
#[rustc_builtin_macro]
|
||||||
#[rustc_macro_transparency = "semitransparent"]
|
#[rustc_macro_transparency = "semiopaque"]
|
||||||
pub macro cfg() {
|
pub macro cfg() {
|
||||||
/* compiler built-in */
|
/* compiler built-in */
|
||||||
}
|
}
|
||||||
|
|
||||||
#[rustc_builtin_macro]
|
#[rustc_builtin_macro]
|
||||||
#[rustc_macro_transparency = "semitransparent"]
|
#[rustc_macro_transparency = "semiopaque"]
|
||||||
pub macro asm() {
|
pub macro asm() {
|
||||||
/* compiler built-in */
|
/* compiler built-in */
|
||||||
}
|
}
|
||||||
|
|
||||||
#[rustc_builtin_macro]
|
#[rustc_builtin_macro]
|
||||||
#[rustc_macro_transparency = "semitransparent"]
|
#[rustc_macro_transparency = "semiopaque"]
|
||||||
pub macro global_asm() {
|
pub macro global_asm() {
|
||||||
/* compiler built-in */
|
/* compiler built-in */
|
||||||
}
|
}
|
||||||
|
|
||||||
#[rustc_builtin_macro]
|
#[rustc_builtin_macro]
|
||||||
#[rustc_macro_transparency = "semitransparent"]
|
#[rustc_macro_transparency = "semiopaque"]
|
||||||
pub macro naked_asm() {
|
pub macro naked_asm() {
|
||||||
/* compiler built-in */
|
/* compiler built-in */
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -233,7 +233,7 @@ pub(crate) fn compile_global_asm(
|
||||||
#![allow(internal_features)]
|
#![allow(internal_features)]
|
||||||
#![no_core]
|
#![no_core]
|
||||||
#[rustc_builtin_macro]
|
#[rustc_builtin_macro]
|
||||||
#[rustc_macro_transparency = "semitransparent"]
|
#[rustc_macro_transparency = "semiopaque"]
|
||||||
macro global_asm() { /* compiler built-in */ }
|
macro global_asm() { /* compiler built-in */ }
|
||||||
global_asm!(r###"
|
global_asm!(r###"
|
||||||
"####,
|
"####,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue