Skip to content

Commit

Permalink
bsim args fix
Browse files Browse the repository at this point in the history
  • Loading branch information
clearbluejar committed Jan 4, 2024
1 parent 064dc0f commit 011a7c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ghidriff/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ def main():
engine_log_level=args.log_level,
engine_file_log_level=args.file_log_level,
min_func_len=args.min_func_len,
use_calling_counts=args.use_calling_counts
use_calling_counts=args.use_calling_counts,
bsim=args.bsim,
bsim_full=args.bsim_full
)

d.setup_project(binary_paths, project_path, project_name, symbols_path)
Expand Down
2 changes: 1 addition & 1 deletion ghidriff/version_tracking_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def find_matches(
('ExactInstructionsFunctionHasher', ExactInstructionsFunctionHasher.INSTANCE, True, False),
(StructuralGraphExactHasher.MATCH_TYPE, StructuralGraphExactHasher(), True, False),
('ExactMnemonicsFunctionHasher', ExactMnemonicsFunctionHasher.INSTANCE, True, False),
('BSIM', None, True, True), # not a true function hasher
('BSIM', None, True, False), # not a true function hasher
(BulkInstructionsHasher.MATCH_TYPE, BulkInstructionsHasher(), True, False),
(SigCallingCalledHasher.MATCH_TYPE, SigCallingCalledHasher(), True, False),
(StringsRefsHasher.MATCH_TYPE, StringsRefsHasher(), True, False),
Expand Down

0 comments on commit 011a7c9

Please sign in to comment.