diff options
| author | Folkert de Vries <folkert@folkertdev.nl> | 2024-09-10 14:42:17 +0200 |
|---|---|---|
| committer | Folkert de Vries <folkert@folkertdev.nl> | 2024-09-10 15:19:14 +0200 |
| commit | 6ca5ec7b4ef0466a1cdf3fbce9212cabc171d21a (patch) | |
| tree | 75f7f4133a2be928216e01818005068d8daa25f8 /compiler/rustc_passes/src/errors.rs | |
| parent | 26b2b8d162ff6cc399c7e8005230beea7eb12037 (diff) | |
| download | rust-6ca5ec7b4ef0466a1cdf3fbce9212cabc171d21a.tar.gz rust-6ca5ec7b4ef0466a1cdf3fbce9212cabc171d21a.zip | |
disallow `naked_asm!` outside of `#[naked]` functions
Diffstat (limited to 'compiler/rustc_passes/src/errors.rs')
| -rw-r--r-- | compiler/rustc_passes/src/errors.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/compiler/rustc_passes/src/errors.rs b/compiler/rustc_passes/src/errors.rs index f5d982e1a5c..a985ecb019a 100644 --- a/compiler/rustc_passes/src/errors.rs +++ b/compiler/rustc_passes/src/errors.rs @@ -1222,6 +1222,13 @@ pub(crate) struct NakedFunctionIncompatibleAttribute { } #[derive(Diagnostic)] +#[diag(passes_naked_asm_outside_naked_fn)] +pub(crate) struct NakedAsmOutsideNakedFn { + #[primary_span] + pub span: Span, +} + +#[derive(Diagnostic)] #[diag(passes_attr_only_in_functions)] pub(crate) struct AttrOnlyInFunctions { #[primary_span] |
