diff options
| author | Graydon Hoare <[email protected]> | 2010-10-10 00:14:26 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-10-10 00:14:26 -0700 |
| commit | caaf8679d8d22d75511fb0fc2adef585990ef397 (patch) | |
| tree | 4d453d134514ffb2393eb7e7331c59b357a2f3e8 /src/boot/be/abi.ml | |
| parent | Subject copying code to inline heuristic, cut 30kb from rustc. (diff) | |
| download | rust-caaf8679d8d22d75511fb0fc2adef585990ef397.tar.xz rust-caaf8679d8d22d75511fb0fc2adef585990ef397.zip | |
Teach bind to actually bind typarams, as it claims to.
Diffstat (limited to 'src/boot/be/abi.ml')
| -rw-r--r-- | src/boot/be/abi.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/be/abi.ml b/src/boot/be/abi.ml index a7b98c2c..9ea085b5 100644 --- a/src/boot/be/abi.ml +++ b/src/boot/be/abi.ml @@ -63,8 +63,8 @@ let fn_field_code = binding_field_dispatch;; let fn_field_box = binding_field_bound_data;; let closure_body_elt_bound_args_tydesc = 0;; -let closure_body_elt_target_tydesc = 1;; -let closure_body_elt_target = 2;; +let closure_body_elt_target = 1;; +let closure_body_elt_bound_ty_params = 2;; let closure_body_elt_bound_args = 3;; let tag_elt_discriminant = 0;; |