Skip to content

Commit 3fdbce0

Browse files
Rollup merge of rust-lang#130146 - folkertdev:bootstrap-naked-asm, r=Amanieu
bootstrap `naked_asm!` for `compiler-builtins` tracking issue: rust-lang#90957 parent PR: rust-lang#128651 in this PR, `naked_asm!` is added as 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. The `naked_asm!` macro must be introduced first so that we can upgrade `compiler-builtins` to use it, and can then change the implementation of `naked_asm!` in rust-lang#128651 I've added some usages for `naked_asm!` in the tests, so we can be confident that it works, but I've left upgrading the whole test suite to the parent PR. r? ``@Amanieu``
2 parents 0bbb25d + 0414a2e commit 3fdbce0

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
@@ -17,6 +17,20 @@ pub macro asm("assembly template", $(operands,)* $(options($(option),*))?) {
1717
/* compiler built-in */
1818
}
1919

20+
/// Inline assembly used in combination with `#[naked]` functions.
21+
///
22+
/// Refer to [Rust By Example] for a usage guide and the [reference] for
23+
/// detailed information about the syntax and available options.
24+
///
25+
/// [Rust By Example]: https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html
26+
/// [reference]: https://doc.rust-lang.org/nightly/reference/inline-assembly.html
27+
#[unstable(feature = "naked_functions", issue = "90957")]
28+
#[rustc_builtin_macro]
29+
#[cfg(not(bootstrap))]
30+
pub macro naked_asm("assembly template", $(operands,)* $(options($(option),*))?) {
31+
/* compiler built-in */
32+
}
33+
2034
/// Module-level inline assembly.
2135
///
2236
/// Refer to [Rust By Example] for a usage guide and the [reference] for

0 commit comments

Comments
 (0)