rt: Don't do the stack canary check in upcall_vec_push. Too slow

This commit is contained in:
Brian Anderson 2012-02-16 22:06:28 -08:00
parent e0b2fd8417
commit fca8e9e621

@ -464,10 +464,6 @@ upcall_vec_push(rust_vec** vp, type_desc* elt_ty, void* elt) {
copy_elements(task, elt_ty, &v->data[0] + v->fill,
elt, elt_ty->size);
v->fill += elt_ty->size;
// Do the stack check to make sure this op, on the Rust stack, is behaving
task->check_stack_canary();
}
/**********************************************************************