run ooojava and rcrpointer that print out effects and annotate them with the source...
[IRC.git] / Robust / src / Analysis / Pointer / PPoint.java
1 package Analysis.Pointer;
2 import Analysis.Pointer.BasicBlock.BBlock;
3
4 public class PPoint {
5   BBlock bblock;
6   int index;
7   public PPoint(BBlock bblock) {
8     this.bblock=bblock;
9     this.index=-1;
10   }
11
12   public PPoint(BBlock bblock, int index) {
13     this.bblock=bblock;
14     this.index=index;
15   }
16
17   public BBlock getBBlock() {
18     return bblock;
19   }
20
21   public int getIndex() {
22     return index;
23   }
24 }