fix typo in ship name
authoradam <adam@megacz.com>
Sun, 7 Sep 2008 03:34:46 +0000 (04:34 +0100)
committeradam <adam@megacz.com>
Sun, 7 Sep 2008 03:34:46 +0000 (04:34 +0100)
src/edu/berkeley/fleet/ir/New.java

index cd77fb5..a975af6 100644 (file)
@@ -12,14 +12,6 @@ import java.io.*;
 import java.util.*;
 import java.net.*;
 
-// ScanRows+Fix: HARD!
-/**
- *  How do we know when a stream is done?  In the case of Equalize?
- */
-
-// Video-Out
-// Loopback (fixpoint of a bundle)
-
 public class New {
 
     public final Fleet fleet;
@@ -122,7 +114,7 @@ public class New {
             this.opcode = opcode;
         }
         public Dock[] _setInputs() {
-            if (alu == null) alu = allocate("alu2");
+            if (alu == null) alu = allocate("Alu");
             return new Dock[] { alu.getDock("out") };
         }
         public void emitPrologue(ArrayList<Instruction> il) {
@@ -168,7 +160,7 @@ public class New {
             this.incr = incr;
         }
         public Dock[] _setInputs() {
-            if (alu == null) alu = allocate("alu2");
+            if (alu == null) alu = allocate("Alu");
             return new Dock[] { alu.getDock("out") };
         }
         public void emitPrologue(ArrayList<Instruction> il) {
@@ -203,7 +195,7 @@ public class New {
             this.max = max;
         }
         public Dock[] _setInputs() {
-            if (alu == null) alu = allocate("alu2");
+            if (alu == null) alu = allocate("Alu");
             return new Dock[] { alu.getDock("out") };
         }
         public void emitPrologue(ArrayList<Instruction> il) {