fix silly off-by-one bug
[IRC.git] / Robust / src / Analysis / Disjoint / Alloc.java
1 package Analysis.Disjoint;
2 import IR.TypeDescriptor;
3 import IR.Flat.FlatNew;
4
5 public interface Alloc {
6   public FlatNew getFlatNew();
7   public String toStringBrief();
8   public int getUniqueAllocSiteID();
9   public TypeDescriptor getType();
10 }