mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
hypervisor: Fix issues with nightly compilers
cargo fuzz build complaints about some un-used function in the instruction emultator. Silence the warning by allowing dead code generation. Signed-off-by: Jinank Jain <jinankjain@microsoft.com>
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
#![allow(non_camel_case_types, clippy::upper_case_acronyms)]
|
||||
#![allow(non_camel_case_types, dead_code, clippy::upper_case_acronyms)]
|
||||
|
||||
//
|
||||
// CMP-Compare Two Operands
|
||||
|
||||
Reference in New Issue
Block a user