summaryrefslogtreecommitdiff
path: root/plugins/warp
diff options
context:
space:
mode:
authorRusty Wagner <rusty.wagner@gmail.com>2025-12-23 13:12:02 -0700
committerRusty Wagner <rusty.wagner@gmail.com>2026-05-22 16:30:56 -0400
commit8d621c51b2797fda7b1dc22243dde611cfc04f68 (patch)
treeba5e6a90e644d21d13e75dabcbd0cc747444443a /plugins/warp
parent08e34ac325743085911f96b62c81d9a1f2127806 (diff)
Refactor calling conventions to support correct representation of structures
Diffstat (limited to 'plugins/warp')
-rw-r--r--plugins/warp/src/convert.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/warp/src/convert.rs b/plugins/warp/src/convert.rs
index bacf0024..85a06314 100644
--- a/plugins/warp/src/convert.rs
+++ b/plugins/warp/src/convert.rs
@@ -27,6 +27,8 @@ pub fn bn_var_to_location(bn_variable: BNVariable) -> Option<Location> {
Some(Location::Register(reg_loc))
}
VariableSourceType::FlagVariableSourceType => None,
+ VariableSourceType::CompositeReturnValueSourceType => None,
+ VariableSourceType::CompositeParameterSourceType => None,
}
}