From e6a0cb470745e09721f28ba2ad62f5ea71d63599 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Mon, 4 Nov 2024 01:36:55 -0500 Subject: WARP: Increase trivial LLIL threshold to 20 bytes --- plugins/warp/src/matcher.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins/warp/src') diff --git a/plugins/warp/src/matcher.rs b/plugins/warp/src/matcher.rs index bd4e0df6..59a26fcf 100644 --- a/plugins/warp/src/matcher.rs +++ b/plugins/warp/src/matcher.rs @@ -22,7 +22,8 @@ use crate::cache::{cached_call_site_constraints, cached_function_match, try_cach use crate::convert::to_bn_type; use crate::plugin::on_matched_function; -pub const TRIVIAL_FUNCTION_DELTA_THRESHOLD: u64 = 8; +// TODO: Make this configurable. +pub const TRIVIAL_FUNCTION_DELTA_THRESHOLD: u64 = 20; pub static PLAT_MATCHER_CACHE: OnceLock> = OnceLock::new(); -- cgit v1.3.1