From 3bc4d1a1206ad5f4bb31475e17fc18ecf855ed8e Mon Sep 17 00:00:00 2001 From: James Miller Date: Thu, 20 Jun 2013 17:15:50 +1200 Subject: Remove all #[cfg(stage0)]-protected code New snapshot means this can all go. Also removes places that have comments that say they are workarounds for stage0 errors. --- src/rt/rust_builtin.cpp | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/rt/rust_builtin.cpp') diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp index 3bd5e09e007..e476fa0ad5e 100644 --- a/src/rt/rust_builtin.cpp +++ b/src/rt/rust_builtin.cpp @@ -732,17 +732,10 @@ rust_task_deref(rust_task *task) { // Must call on rust stack. extern "C" CDECL void rust_call_tydesc_glue(void *root, size_t *tydesc, size_t glue_index) { -#ifdef _RUST_STAGE0 - void (*glue_fn)(void *, void *, void *, void *) = - (void (*)(void *, void *, void *, void *))tydesc[glue_index]; - if (glue_fn) - glue_fn(0, 0, 0, root); -#else void (*glue_fn)(void *, void *, void *) = (void (*)(void *, void *, void *))tydesc[glue_index]; if (glue_fn) glue_fn(0, 0, root); -#endif } // Don't run on the Rust stack! @@ -762,11 +755,7 @@ public: virtual void run() { record_sp_limit(0); -#ifdef _RUST_STAGE0 - fn.f(NULL, fn.env, NULL); -#else fn.f(fn.env, NULL); -#endif } }; -- cgit 1.4.1-3-g733a5