Skip to content

Commit 011a7c9

Browse files
committed
bsim args fix
1 parent 064dc0f commit 011a7c9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ghidriff/__main__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ def main():
6464
engine_log_level=args.log_level,
6565
engine_file_log_level=args.file_log_level,
6666
min_func_len=args.min_func_len,
67-
use_calling_counts=args.use_calling_counts
67+
use_calling_counts=args.use_calling_counts,
68+
bsim=args.bsim,
69+
bsim_full=args.bsim_full
6870
)
6971

7072
d.setup_project(binary_paths, project_path, project_name, symbols_path)

ghidriff/version_tracking_diff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def find_matches(
6666
('ExactInstructionsFunctionHasher', ExactInstructionsFunctionHasher.INSTANCE, True, False),
6767
(StructuralGraphExactHasher.MATCH_TYPE, StructuralGraphExactHasher(), True, False),
6868
('ExactMnemonicsFunctionHasher', ExactMnemonicsFunctionHasher.INSTANCE, True, False),
69-
('BSIM', None, True, True), # not a true function hasher
69+
('BSIM', None, True, False), # not a true function hasher
7070
(BulkInstructionsHasher.MATCH_TYPE, BulkInstructionsHasher(), True, False),
7171
(SigCallingCalledHasher.MATCH_TYPE, SigCallingCalledHasher(), True, False),
7272
(StringsRefsHasher.MATCH_TYPE, StringsRefsHasher(), True, False),

0 commit comments

Comments
 (0)