From 634aaf0fdcfe9be139ccb6ea80f1147edf17de78 Mon Sep 17 00:00:00 2001 From: Pierre Avital Date: Wed, 31 Jul 2024 14:30:42 +0200 Subject: [PATCH] fix lints --- stabby-abi/src/stable_impls/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/stabby-abi/src/stable_impls/mod.rs b/stabby-abi/src/stable_impls/mod.rs index a60dbcf..a46d1b4 100644 --- a/stabby-abi/src/stable_impls/mod.rs +++ b/stabby-abi/src/stable_impls/mod.rs @@ -106,8 +106,6 @@ const _ARCH: &[u8] = b"wasm64"; const _ARCH: &[u8] = b"x86"; #[cfg(target_arch = "x86_64")] const _ARCH: &[u8] = b"x86_64"; -#[cfg(target_arch = "xtensa")] -const _ARCH: &[u8] = b"xtensa"; #[cfg(not(any( target_arch = "aarch64", target_arch = "arm", @@ -135,7 +133,6 @@ const _ARCH: &[u8] = b"xtensa"; target_arch = "wasm64", target_arch = "x86", target_arch = "x86_64", - target_arch = "xtensa" )))] const _ARCH: &[u8] = b"unknown_arch";