diff options
| author | Graydon Hoare <[email protected]> | 2010-11-09 14:15:07 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-11-09 14:15:07 -0800 |
| commit | 89946609f2de815ea87df3b001fff0caf9efa0d5 (patch) | |
| tree | 0945861dddd480b822827d77205f90584d0c2586 /src/boot/be | |
| parent | Add a check for binding an alias. Good thing, as we had two instances in our ... (diff) | |
| download | rust-89946609f2de815ea87df3b001fff0caf9efa0d5.tar.xz rust-89946609f2de815ea87df3b001fff0caf9efa0d5.zip | |
Support a special const-value refcount, use it for const strings.
Diffstat (limited to 'src/boot/be')
| -rw-r--r-- | src/boot/be/abi.ml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/boot/be/abi.ml b/src/boot/be/abi.ml index 13df33cd..9f2e819c 100644 --- a/src/boot/be/abi.ml +++ b/src/boot/be/abi.ml @@ -12,6 +12,9 @@ let rc_base_field_refcnt = 0;; +(* FIXME: this needs updating if you ever want to work on 64 bit. *) +let const_refcount = 0x7badfaceL;; + let task_field_refcnt = rc_base_field_refcnt;; let task_field_stk = task_field_refcnt + 2;; let task_field_runtime_sp = task_field_stk + 1;; |