Skip to content

Commit

Permalink
asm: remove wildcard use stmt
Browse files Browse the repository at this point in the history
  • Loading branch information
johannst committed Dec 13, 2024
1 parent e6095b0 commit b93d3db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/asm.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
//! The `x64` jit assembler.
use crate::*;
use imm::Imm;
use mem::{AddrMode, Mem};
use reg::Reg;
use crate::imm::Imm;
use crate::mem::{AddrMode, Mem, Mem16, Mem32, Mem64, Mem8};
use crate::reg::{Reg, Reg16, Reg32, Reg64, Reg8};
use crate::Label;

/// Encode the `REX` byte.
const fn rex(w: bool, r: u8, x: u8, b: u8) -> u8 {
Expand Down

0 comments on commit b93d3db

Please sign in to comment.