diff options
| author | Graydon Hoare <[email protected]> | 2010-11-16 13:51:32 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-11-16 13:51:32 -0800 |
| commit | 26ecec4e123781c6e99e92cf42ce585e33a861ef (patch) | |
| tree | 3da15ea6afe073b2b29e657749f9d53534030e4a /src/boot/be/abi.ml | |
| parent | Fix typo in x86 backend glue that was, by luck, only crashing on OSX. (diff) | |
| download | rust-26ecec4e123781c6e99e92cf42ce585e33a861ef.tar.xz rust-26ecec4e123781c6e99e92cf42ce585e33a861ef.zip | |
Update frame logic to be compatible with SysV x86 ABI. Improves diagnostics.
Diffstat (limited to 'src/boot/be/abi.ml')
| -rw-r--r-- | src/boot/be/abi.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/boot/be/abi.ml b/src/boot/be/abi.ml index 9f2e819c..035d1f05 100644 --- a/src/boot/be/abi.ml +++ b/src/boot/be/abi.ml @@ -189,6 +189,7 @@ type abi = abi_tp_cell: Il.cell; abi_implicit_args_sz: int64; abi_frame_base_sz: int64; + abi_callee_saves_sz: int64; abi_frame_info_sz: int64; abi_spill_slot: (Il.spill -> Il.mem); } |