From: adam Date: Sun, 7 Sep 2008 03:34:46 +0000 (+0100) Subject: fix typo in ship name X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=85a61322f295edb66fadc6bdf36b2ceb0021e1d4;p=fleet.git fix typo in ship name --- diff --git a/src/edu/berkeley/fleet/ir/New.java b/src/edu/berkeley/fleet/ir/New.java index cd77fb5..a975af6 100644 --- a/src/edu/berkeley/fleet/ir/New.java +++ b/src/edu/berkeley/fleet/ir/New.java @@ -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 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 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 il) {