Skip to content

Commit

Permalink
lib/pcode: remove module
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Obst committed Jul 17, 2024
1 parent 4743320 commit 084f839
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cwe_checker_lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub mod analysis;
pub mod checkers;
pub mod ghidra_pcode;
pub mod intermediate_representation;
pub mod pcode;
mod pcode;
pub mod pipeline;
pub mod utils;

Expand Down
6 changes: 4 additions & 2 deletions src/cwe_checker_lib/src/pcode/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
//! The contents of this module are only used for the initial translation of P-Code into the internally used IR.
//! For everything else the [`intermediate_representation`](crate::intermediate_representation) should be used directly.

#![allow(dead_code)]

mod expressions;
pub use expressions::*;
use expressions::*;
mod term;
pub use term::*;
use term::*;
mod subregister_substitution;

0 comments on commit 084f839

Please sign in to comment.