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:
parent
6f56ef9a36
commit
3f8186f627
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue