GP-5214: Add support for multi-precision integer operations in the JIT-accelerated emulator.

This commit is contained in:
Dan 2025-09-10 16:32:13 +00:00
parent 13ffa3a4a8
commit df90de2367
87 changed files with 5278 additions and 956 deletions

View file

@ -164,7 +164,7 @@ public class Varnode {
if (spaceID != varnode.spaceID) {
return false;
}
if (isConstant() || isUnique() || isHash()) {
if (isConstant() || isHash()) {
// this is not really a valid use case
return offset == varnode.getOffset();
}