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