about summary refs log tree commit diff
path: root/src/rt/rust_task.cpp
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2011-11-17 14:40:03 -0800
committerNiko Matsakis <niko@alum.mit.edu>2011-11-17 14:40:03 -0800
commit60e93cd1ecd3855800e0a6e186a413fd9d8ff20c (patch)
tree46107a27863f2b00c8106906e0d59f93f46f2e0b /src/rt/rust_task.cpp
parentf597971441f99e3d0f6673879478566e79f09111 (diff)
downloadrust-60e93cd1ecd3855800e0a6e186a413fd9d8ff20c.tar.gz
rust-60e93cd1ecd3855800e0a6e186a413fd9d8ff20c.zip
Re-enable cycle coll. on x86_64, seems to work better now.
Diffstat (limited to 'src/rt/rust_task.cpp')
-rw-r--r--src/rt/rust_task.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index ae893c93fa0..d03d8b57a5c 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -184,9 +184,7 @@ void task_start_wrapper(spawn_args *a)
         failed = true;
     }
 
-#   ifndef __x86_64__ // FIXME: temp. hack on X86-64 (NDM)
     cc::do_cc(task);
-#   endif
 
     rust_closure_env* env = (rust_closure_env*)a->a3;
     if(env) {
@@ -620,6 +618,5 @@ rust_task::notify(bool success) {
 // indent-tabs-mode: nil
 // c-basic-offset: 4
 // buffer-file-coding-system: utf-8-unix
-// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
 // End:
 //