diff options
| author | Graydon Hoare <[email protected]> | 2011-03-02 16:42:09 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-02 16:42:19 -0800 |
| commit | dddeba19d33a1aa2e7681ae84424dbe4d7b510b7 (patch) | |
| tree | 6ed714ac6d70933f14143eff4ee8d56c01195a86 /src/comp/back | |
| parent | rustc: Teach iter_structural_ty about dynamically-sized tuples and records (diff) | |
| download | rust-dddeba19d33a1aa2e7681ae84424dbe4d7b510b7.tar.xz rust-dddeba19d33a1aa2e7681ae84424dbe4d7b510b7.zip | |
Sketch out some more pieces of vec-append.
Diffstat (limited to 'src/comp/back')
| -rw-r--r-- | src/comp/back/abi.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/comp/back/abi.rs b/src/comp/back/abi.rs index f41f6e20..89d6b487 100644 --- a/src/comp/back/abi.rs +++ b/src/comp/back/abi.rs @@ -71,6 +71,10 @@ fn bzero_glue_name() -> str { ret "rust_bzero_glue"; } +fn vec_grow_glue_name() -> str { + ret "rust_vec_grow_glue"; +} + fn upcall_glue_name(int n) -> str { ret "rust_upcall_" + util.common.istr(n); } |