This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / IR / Flat / FlatTagDeclaration.java
diff --git a/Robust/src/IR/Flat/FlatTagDeclaration.java b/Robust/src/IR/Flat/FlatTagDeclaration.java
deleted file mode 100644 (file)
index 78ada70..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-package IR.Flat;
-import IR.TagDescriptor;
-
-public class FlatTagDeclaration extends FlatNode {
-    TempDescriptor dst;
-    TagDescriptor type;
-    
-    public FlatTagDeclaration(TagDescriptor type, TempDescriptor dst) {
-       this.type=type;
-       this.dst=dst;
-    }
-
-    public String toString() {
-       return dst.toString()+"= new Tag("+type.toString()+")";
-    }
-
-    public int kind() {
-       return FKind.FlatTagDeclaration;
-    }
-
-    public TempDescriptor [] writesTemps() {
-       return new TempDescriptor[] {dst};
-    }
-
-    public TempDescriptor [] readsTemps() {
-       return new TempDescriptor[0];
-    }
-
-    public TempDescriptor getDst() {
-       return dst;
-    }
-
-    public TagDescriptor getType() {
-       return type;
-    }
-}