Skip to content

Commit

Permalink
feat(compiler) Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Sep 16, 2021
1 parent 2e5dae0 commit c7544dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/compiler-singlepass/src/machine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use smallvec::SmallVec;
use std::cmp;
use std::collections::HashSet;
use wasmer_compiler::wasmparser::Type as WpType;
use wasmer_compiler::{CallingConvention, Target};
use wasmer_compiler::CallingConvention;

const NATIVE_PAGE_SIZE: usize = 4096;

Expand Down
2 changes: 1 addition & 1 deletion lib/compiler-singlepass/src/x64_decl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use crate::common_decl::{MachineState, MachineValue, RegisterIndex};
use std::collections::BTreeMap;
use wasmer_compiler::{CallingConvention, Target};
use wasmer_compiler::CallingConvention;
use wasmer_types::Type;

/// General-purpose registers.
Expand Down

0 comments on commit c7544dc

Please sign in to comment.