roll back commit 1c7a62

This commit is contained in:
Niko Matsakis 2012-01-17 11:20:21 -08:00
parent 6e27b27cf8
commit 7bc2930cfa
4 changed files with 16 additions and 28 deletions

View file

@ -227,15 +227,6 @@ upcall_shared_free(void* ptr) {
UPCALL_SWITCH_STACK(&args, upcall_s_shared_free);
}
/************************************************************************
* Memset that, contrary to the llvm intrinsic, handles dynamic alignment
*/
extern "C" CDECL void
upcall_memset(void* ptr, char val, unsigned size, unsigned align) {
memset(ptr, val, align_to(size, align));
}
/**********************************************************************
* Called to deep copy a type descriptor onto the exchange heap.
* Used when sending closures. It's possible that we should have

View file

@ -74,7 +74,6 @@ upcall_rust_personality
upcall_s_shared_malloc
upcall_shared_malloc
upcall_shared_free
upcall_memset
upcall_vec_grow
upcall_vec_push
upcall_call_shim_on_c_stack