-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #93202 - matthiaskrgr:rollup-rki39xg, r=matthiaskrgr
Rollup of 9 pull requests Successful merges: - #85967 (add support for the l4-bender linker on the x86_64-unknown-l4re-uclibc tier 3 target) - #92828 (Print a helpful message if unwinding aborts when it reaches a nounwind function) - #93012 (Update pulldown-cmark version to fix markdown list issue) - #93116 (Simplify use of `map_or`) - #93132 (Increase the format version of rustdoc-json-types) - #93147 (Interner cleanups) - #93153 (Reject unsupported naked functions) - #93170 (Add missing GUI test explanations) - #93172 (rustdoc: remove dashed underline under main heading) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
49 changed files
with
560 additions
and
387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
An unsupported naked function definition. | ||
|
||
Erroneous code example: | ||
|
||
```compile_fail,E0787 | ||
#![feature(naked_functions)] | ||
#[naked] | ||
pub extern "C" fn f() -> u32 { | ||
42 | ||
} | ||
``` | ||
|
||
The naked functions must be defined using a single inline assembly | ||
block. | ||
|
||
The execution must never fall through past the end of the assembly | ||
code so the block must use `noreturn` option. The asm block can also | ||
use `att_syntax` and `raw` options, but others options are not allowed. | ||
|
||
The asm block must not contain any operands other than `const` and | ||
`sym`. | ||
|
||
### Additional information | ||
|
||
For more information, please see [RFC 2972]. | ||
|
||
[RFC 2972]: https://github.com/rust-lang/rfcs/blob/master/text/2972-constrained-naked.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.