about summary refs log tree commit diff
path: root/src/rt/rust_task.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-02-01 19:59:48 -0800
committerBrian Anderson <banderson@mozilla.com>2013-02-01 21:22:49 -0800
commita50d1fdbda6623433eee46e46487ca898776cf97 (patch)
tree3fbc8f21f7254acc7220f5b54abd8ddb3f7d0bc9 /src/rt/rust_task.cpp
parent02fbd5a164268c13f6215ab3d06ce1e5612ecd55 (diff)
downloadrust-a50d1fdbda6623433eee46e46487ca898776cf97.tar.gz
rust-a50d1fdbda6623433eee46e46487ca898776cf97.zip
rt: Remove get_frame_glue_fns. Unused
Diffstat (limited to 'src/rt/rust_task.cpp')
-rw-r--r--src/rt/rust_task.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index e370181a2d4..a9246963ca4 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -342,12 +342,6 @@ void rust_task::fail_sched_loop() {
     sched_loop->fail();
 }
 
-frame_glue_fns*
-rust_task::get_frame_glue_fns(uintptr_t fp) {
-    fp -= sizeof(uintptr_t);
-    return *((frame_glue_fns**) fp);
-}
-
 void rust_task::assert_is_running()
 {
     scoped_lock with(lifecycle_lock);