From 85a61322f295edb66fadc6bdf36b2ceb0021e1d4 Mon Sep 17 00:00:00 2001 From: adam Date: Sun, 7 Sep 2008 04:34:46 +0100 Subject: [PATCH] fix typo in ship name --- src/edu/berkeley/fleet/ir/New.java | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) 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) { -- 1.7.10.4