diff options
| author | Graydon Hoare <[email protected]> | 2010-12-03 12:15:32 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-12-03 12:15:32 -0800 |
| commit | a98b2ebb4ad090d3d7eaa9ab3b1d98be0867e990 (patch) | |
| tree | 2d9036d432ea83e08f03720854ad10d2477e513c /src/comp/middle | |
| parent | rustc: Translate nullary tag constructors (diff) | |
| download | rust-a98b2ebb4ad090d3d7eaa9ab3b1d98be0867e990.tar.xz rust-a98b2ebb4ad090d3d7eaa9ab3b1d98be0867e990.zip | |
Change 'stratum' to the friendlier term 'layer'.
Diffstat (limited to 'src/comp/middle')
| -rw-r--r-- | src/comp/middle/trans.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/middle/trans.rs b/src/comp/middle/trans.rs index 27dfa443..ddf71b4c 100644 --- a/src/comp/middle/trans.rs +++ b/src/comp/middle/trans.rs @@ -730,7 +730,7 @@ fn drop_ty(@block_ctxt cx, fn hit_zero(@block_ctxt cx, ValueRef v, @typeck.ty t) -> result { auto res = iter_sequence(cx, v, t, bind drop_ty(_,_,_)); - // FIXME: switch gc/non-gc on stratum of the type. + // FIXME: switch gc/non-gc on layer of the type. ret trans_non_gc_free(res.bcx, v); } ret decr_refcnt_and_if_zero(cx, v, @@ -747,7 +747,7 @@ fn drop_ty(@block_ctxt cx, C_int(abi.box_rc_field_body))); auto res = drop_ty(cx, body, body_ty); - // FIXME: switch gc/non-gc on stratum of the type. + // FIXME: switch gc/non-gc on layer of the type. ret trans_non_gc_free(res.bcx, v); } ret decr_refcnt_and_if_zero(cx, v, |