diff options
| author | Graydon Hoare <[email protected]> | 2011-01-18 15:38:35 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-01-18 15:38:35 -0800 |
| commit | e92298187bceb0cc1cf423dd37e0f5fe30359a17 (patch) | |
| tree | a8ea621832055d8716821dcda1800b03c35f6eb0 /src/comp/back | |
| parent | Add Benjamin to AUTHORS. (diff) | |
| download | rust-e92298187bceb0cc1cf423dd37e0f5fe30359a17.tar.xz rust-e92298187bceb0cc1cf423dd37e0f5fe30359a17.zip | |
Add bzero glue and preliminary code for dynamic size/align calculations.
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 0c940d2b..db17b942 100644 --- a/src/comp/back/abi.rs +++ b/src/comp/back/abi.rs @@ -63,6 +63,10 @@ fn memcpy_glue_name() -> str { ret "rust_memcpy_glue"; } +fn bzero_glue_name() -> str { + ret "rust_bzero_glue"; +} + fn upcall_glue_name(int n) -> str { ret "rust_upcall_" + util.common.istr(n); } |