mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
Merge remote-tracking branch 'origin/GP-0_Dan_fixTests-2025-09-16-1' into Ghidra_12.0
This commit is contained in:
commit
3dbce7f987
1 changed files with 4 additions and 0 deletions
|
@ -21,6 +21,7 @@ import java.util.Objects;
|
|||
import ghidra.pcode.emu.jit.analysis.JitType.*;
|
||||
import ghidra.pcode.emu.jit.op.JitCopyOp;
|
||||
import ghidra.pcode.emu.jit.op.JitPhiOp;
|
||||
import ghidra.program.model.pcode.Varnode;
|
||||
|
||||
/**
|
||||
* The behavior/requirement for an operand's type.
|
||||
|
@ -177,6 +178,9 @@ public enum JitTypeBehavior {
|
|||
if (cls == void.class) {
|
||||
return null;
|
||||
}
|
||||
if (cls == Varnode.class) {
|
||||
return ANY;
|
||||
}
|
||||
if (cls.isPrimitive()) {
|
||||
throw new AssertionError();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue