Skip to content

Commit

Permalink
Build fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
toolCHAINZ committed Oct 15, 2024
1 parent 34c4393 commit a9248f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jingle/src/translator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use z3::Context;
#[derive(Debug, Clone)]
pub struct SleighTranslator<'ctx> {
z3_ctx: &'ctx Context,
sleigh: &'ctx LoadedSleighContext,
sleigh: &'ctx LoadedSleighContext<'ctx>,
}

impl<'ctx> SleighTranslator<'ctx> {
Expand Down
2 changes: 1 addition & 1 deletion jingle_sleigh/src/context/loaded.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::context::instruction_iterator::SleighContextInstructionIterator;
use crate::context::{Image, SleighContext};
use crate::context::{SleighContext};
use crate::JingleSleighError::ImageLoadError;
use crate::{Instruction, JingleSleighError, RegisterManager, SpaceInfo, SpaceManager, VarNode};
use std::fmt::{Debug, Formatter};
Expand Down
4 changes: 2 additions & 2 deletions jingle_sleigh/src/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ use crate::error::JingleSleighError::{LanguageSpecRead, SleighInitError};
use crate::ffi::addrspace::bridge::AddrSpaceHandle;
use crate::ffi::context_ffi::bridge::ContextFFI;
use crate::space::{RegisterManager, SpaceInfo, SpaceManager};
#[cfg(feature = "gimli")]
pub use builder::image::gimli::map_gimli_architecture;
//#[cfg(feature = "gimli")]
//pub use builder::image::gimli::map_gimli_architecture;
pub use builder::SleighContextBuilder;

use crate::context::builder::language_def::LanguageDefinition;
Expand Down

0 comments on commit a9248f6

Please sign in to comment.