Unverified Commit 0c38cac5 by Melvin Klimke Committed by GitHub

Add fall through branch to cbranch (#108)

parent 57b92dba
...@@ -40,6 +40,14 @@ public final class PcodeBlockData { ...@@ -40,6 +40,14 @@ public final class PcodeBlockData {
*/ */
public static int instructionIndex; public static int instructionIndex;
/** /**
* contains the current processed pcodeOp of the current assembly instruction.
*/
public static PcodeOp pcodeOp;
/**
* Contains the index of the current pcodeOp of the current assembly instruction.
*/
public static int pcodeIndex;
/**
* Contains the number of assembly instructions in the current Ghidra block * Contains the number of assembly instructions in the current Ghidra block
*/ */
public static long numberOfInstructionsInBlock; public static long numberOfInstructionsInBlock;
......
...@@ -48,5 +48,9 @@ public class Blk { ...@@ -48,5 +48,9 @@ public class Blk {
this.defs.addAll(defs); this.defs.addAll(defs);
} }
public void addMultipleJumps(ArrayList<Term<Jmp>> jmps) {
this.jmps.addAll(jmps);
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment