summaryrefslogtreecommitdiff
path: root/yjit/src/asm/arm64/inst/branch_cond.rs
diff options
context:
space:
mode:
Diffstat (limited to 'yjit/src/asm/arm64/inst/branch_cond.rs')
-rw-r--r--yjit/src/asm/arm64/inst/branch_cond.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/yjit/src/asm/arm64/inst/branch_cond.rs b/yjit/src/asm/arm64/inst/branch_cond.rs
index 4338cf0f4f..fcc07f69aa 100644
--- a/yjit/src/asm/arm64/inst/branch_cond.rs
+++ b/yjit/src/asm/arm64/inst/branch_cond.rs
@@ -1,4 +1,4 @@
-use super::super::arg::{Condition, InstructionOffset, truncate_imm};
+use super::super::arg::{InstructionOffset, truncate_imm};
/// The struct that represents an A64 conditional branch instruction that can be
/// encoded.
@@ -50,6 +50,7 @@ impl From<BranchCond> for [u8; 4] {
#[cfg(test)]
mod tests {
use super::*;
+ use super::super::super::arg::Condition;
#[test]
fn test_b_eq() {