stackMap added

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@316 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 5369b047dc
commit cc250733cd
  1. 7
      jode/jode/flow/Jump.java

@ -58,6 +58,13 @@ public class Jump {
*/
VariableSet gen;
/**
* The stack map. This tells how many objects are on stack at
* begin of the flow block, and to what locals they are maped.
* @see FlowBlock.mapStackToLocal
*/
VariableStack stackMap;
public Jump (int destAddr) {
this.destAddr = destAddr;
kill = new VariableSet();

Loading…
Cancel
Save