about summary refs log tree commit diff
path: root/src/comp/back
diff options
context:
space:
mode:
Diffstat (limited to 'src/comp/back')
-rw-r--r--src/comp/back/abi.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/comp/back/abi.rs b/src/comp/back/abi.rs
index 8cef343984c..0c940d2b5cb 100644
--- a/src/comp/back/abi.rs
+++ b/src/comp/back/abi.rs
@@ -59,6 +59,10 @@ const int worst_case_glue_call_args = 7;
 
 const int n_upcall_glues = 7;
 
+fn memcpy_glue_name() -> str {
+    ret "rust_memcpy_glue";
+}
+
 fn upcall_glue_name(int n) -> str {
     ret "rust_upcall_" + util.common.istr(n);
 }
@@ -75,6 +79,10 @@ fn exit_task_glue_name() -> str {
     ret "rust_exit_task_glue";
 }
 
+fn no_op_type_glue_name() -> str {
+    ret "rust_no_op_type_glue";
+}
+
 //
 // Local Variables:
 // mode: rust