From 7ea41f4feee4091a1cf808828c04b61bccf24d11 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 19 Oct 2025 11:49:14 +0200 Subject: [PATCH] Remove no longer necessary lint allow --- src/arch/x86_64/interrupt/syscall.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/arch/x86_64/interrupt/syscall.rs b/src/arch/x86_64/interrupt/syscall.rs index de8b5e9785..aa13bb75f7 100644 --- a/src/arch/x86_64/interrupt/syscall.rs +++ b/src/arch/x86_64/interrupt/syscall.rs @@ -93,7 +93,6 @@ pub unsafe extern "C" fn __inner_syscall_instruction(stack: *mut InterruptStack) } #[unsafe(naked)] -#[allow(named_asm_labels)] pub unsafe extern "C" fn syscall_instruction() { core::arch::naked_asm!(concat!( // Yes, this is magic. No, you don't need to understand