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_ast/src/visit.rs | |
| parent | 26b2b8d162ff6cc399c7e8005230beea7eb12037 (diff) | |
| download | rust-6ca5ec7b4ef0466a1cdf3fbce9212cabc171d21a.tar.gz rust-6ca5ec7b4ef0466a1cdf3fbce9212cabc171d21a.zip | |
disallow `naked_asm!` outside of `#[naked]` functions
Diffstat (limited to 'compiler/rustc_ast/src/visit.rs')
| -rw-r--r-- | compiler/rustc_ast/src/visit.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_ast/src/visit.rs b/compiler/rustc_ast/src/visit.rs index 7b041768983..bae7ad93f90 100644 --- a/compiler/rustc_ast/src/visit.rs +++ b/compiler/rustc_ast/src/visit.rs @@ -976,6 +976,7 @@ pub fn walk_anon_const<'a, V: Visitor<'a>>(visitor: &mut V, constant: &'a AnonCo pub fn walk_inline_asm<'a, V: Visitor<'a>>(visitor: &mut V, asm: &'a InlineAsm) -> V::Result { let InlineAsm { + asm_macro: _, template: _, template_strs: _, operands, |
