Skip to content

Commit 0414a2e

Browse files
committed
bootstrap naked_asm! for compiler-builtins
in this commit, `naked_asm!` is an alias for `asm!` with one difference: `options(noreturn)` is always enabled by `naked_asm!`. That makes it future-compatible for when `naked_asm!` starts disallowing `options(noreturn)` later.
1 parent cde8145 commit 0414a2e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

core/src/arch.rs

+14
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,20 @@ pub macro asm("assembly template", $(operands,)* $(options($(option),*))?) {
2626
/* compiler built-in */
2727
}
2828

29+
/// Inline assembly used in combination with `#[naked]` functions.
30+
///
31+
/// Refer to [Rust By Example] for a usage guide and the [reference] for
32+
/// detailed information about the syntax and available options.
33+
///
34+
/// [Rust By Example]: https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html
35+
/// [reference]: https://doc.rust-lang.org/nightly/reference/inline-assembly.html
36+
#[unstable(feature = "naked_functions", issue = "90957")]
37+
#[rustc_builtin_macro]
38+
#[cfg(not(bootstrap))]
39+
pub macro naked_asm("assembly template", $(operands,)* $(options($(option),*))?) {
40+
/* compiler built-in */
41+
}
42+
2943
/// Module-level inline assembly.
3044
///
3145
/// Refer to [Rust By Example] for a usage guide and the [reference] for

0 commit comments

Comments
 (0)