about summary refs log tree commit diff
path: root/src/rustc/back
diff options
context:
space:
mode:
authorMarijn Haverbeke <marijnh@gmail.com>2012-03-15 17:42:33 +0100
committerMarijn Haverbeke <marijnh@gmail.com>2012-03-16 15:38:42 +0100
commit22bef74b550b2b08338ebb43363f3d09df6413b9 (patch)
tree1a96fdf8b865c54e4d0a64391451bb913d97ea50 /src/rustc/back
parent140d194007bbb427ab694807782b3a41bb43b27d (diff)
downloadrust-22bef74b550b2b08338ebb43363f3d09df6413b9.tar.gz
rust-22bef74b550b2b08338ebb43363f3d09df6413b9.zip
Remove shared tydescs
All tydescs are static now, there's no need to worry about
marshalling them between threads anymore.
Diffstat (limited to 'src/rustc/back')
-rw-r--r--src/rustc/back/upcall.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/rustc/back/upcall.rs b/src/rustc/back/upcall.rs
index 4a2f6bc2379..a0bb2c5937d 100644
--- a/src/rustc/back/upcall.rs
+++ b/src/rustc/back/upcall.rs
@@ -16,8 +16,6 @@ type upcalls =
      shared_free: ValueRef,
      shared_realloc: ValueRef,
      mark: ValueRef,
-     create_shared_type_desc: ValueRef,
-     free_shared_type_desc: ValueRef,
      vec_grow: ValueRef,
      vec_push: ValueRef,
      cmp_type: ValueRef,
@@ -65,11 +63,6 @@ fn declare_upcalls(targ_cfg: @session::config,
               d("shared_realloc", [T_ptr(T_i8()), size_t], T_ptr(T_i8())),
           mark:
               d("mark", [T_ptr(T_i8())], int_t),
-          create_shared_type_desc:
-              d("create_shared_type_desc", [T_ptr(tydesc_type)],
-                T_ptr(tydesc_type)),
-          free_shared_type_desc:
-              dv("free_shared_type_desc", [T_ptr(tydesc_type)]),
           vec_grow:
               dv("vec_grow", [T_ptr(T_ptr(opaque_vec_t)), int_t]),
           vec_push: