Skip to content

Commit

Permalink
Merge #1100
Browse files Browse the repository at this point in the history
1100: Fix unused import warning, deny more warnings. r=syrusakbary a=nlewycky



Co-authored-by: Nick Lewycky <[email protected]>
  • Loading branch information
bors[bot] and nlewycky authored Dec 22, 2019
2 parents 7390372 + 1cffb90 commit f2f1a08
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions lib/llvm-backend-tests/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#![deny(
dead_code,
nonstandard_style,
unused_imports,
unused_mut,
unused_variables,
unused_unsafe,
unreachable_patterns
)]

pub use wabt::wat2wasm;
use wasmer_llvm_backend::LLVMCompiler;
use wasmer_runtime_core::backend::Compiler;
Expand Down
2 changes: 1 addition & 1 deletion lib/llvm-backend-tests/tests/compile.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use wasmer_llvm_backend::{InkwellMemoryBuffer, InkwellModule, LLVMBackendConfig, LLVMCallbacks};
use wasmer_llvm_backend::{InkwellModule, LLVMBackendConfig, LLVMCallbacks};
use wasmer_llvm_backend_tests::{get_compiler, wat2wasm};
use wasmer_runtime::{imports, CompilerConfig};
use wasmer_runtime_core::{backend::BackendCompilerConfig, compile_with, compile_with_config};
Expand Down

0 comments on commit f2f1a08

Please sign in to comment.