diff options
| author | Graydon Hoare <[email protected]> | 2010-09-27 15:38:34 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-09-27 15:38:34 -0700 |
| commit | f5787ed80c2a364754415d0ab0ea6668543938ce (patch) | |
| tree | ab9d806e5cc573ffe86937f5d5b04fc04a9393dc /src/comp/back | |
| parent | Fix indexing bug in rustc's indirect-upcall arg-copying loops. (diff) | |
| download | rust-f5787ed80c2a364754415d0ab0ea6668543938ce.tar.xz rust-f5787ed80c2a364754415d0ab0ea6668543938ce.zip | |
Translate exit-task glue such that rustc's output programs exit properly.
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 ad4c066e..5e00ff32 100644 --- a/src/comp/back/abi.rs +++ b/src/comp/back/abi.rs @@ -48,6 +48,10 @@ fn yield_glue_name() -> str { ret "rust_yield_glue"; } +fn exit_task_glue_name() -> str { + ret "rust_exit_task_glue"; +} + // // Local Variables: // mode: rust |