This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / IR / Flat / TempDescriptor.java
diff --git a/Robust/src/IR/Flat/TempDescriptor.java b/Robust/src/IR/Flat/TempDescriptor.java
deleted file mode 100644 (file)
index a287cf4..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-package IR.Flat;
-import IR.*;
-
-public class TempDescriptor extends Descriptor {
-    static int currentid=0;
-    int id;
-    //    String safename;
-    TypeDescriptor type;
-
-    public TempDescriptor(String name) {
-       super(name);
-       id=currentid++;
-    }
-
-    public TempDescriptor(String name, TypeDescriptor td) {
-       this(name);
-       type=td;
-    }
-    
-    public static TempDescriptor tempFactory() {
-       return new TempDescriptor("temp_"+currentid);
-    }
-
-    public static TempDescriptor tempFactory(String name) {
-       return new TempDescriptor(name+currentid);
-    }
-
-    public static TempDescriptor tempFactory(String name, TypeDescriptor td) {
-       return new TempDescriptor(name+currentid,td);
-    }
-
-
-    public String toString() {
-       return safename;
-    }
-
-    public void setType(TypeDescriptor td) {
-       type=td;
-    }
-
-    public TypeDescriptor getType() {
-       return type;
-    }
-}