about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/test/bench/shootout-threadring.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/bench/shootout-threadring.rs b/src/test/bench/shootout-threadring.rs
index dce7336cd87..4b73413ae56 100644
--- a/src/test/bench/shootout-threadring.rs
+++ b/src/test/bench/shootout-threadring.rs
@@ -9,8 +9,6 @@ fn start(+token: int) {
     let p = comm::port();
     let ch = iter::foldl(bind int::range(2, n_threads + 1, _),
                          comm::chan(p)) { |ch, i|
-        // FIXME: Some twiddling because we don't have a standard
-        // reverse range function yet
         let id = n_threads + 2 - i;
         let {to_child, _} = task::spawn_connected::<int, int> {|p, _ch|
             roundtrip(id, p, ch)