remove unused tps_fn(); comment out unused var
This commit is contained in:
parent
af8e471908
commit
f7540b165c
2 changed files with 3 additions and 4 deletions
|
|
@ -937,7 +937,7 @@ fn trans_stack_local_derived_tydesc(cx: @block_ctxt, llsz: ValueRef,
|
|||
|
||||
// Objects and closures store their type parameters differently (in the object
|
||||
// or closure itself rather than in the type descriptor).
|
||||
tag ty_param_storage { tps_normal; tps_obj(uint); tps_fn(uint); }
|
||||
tag ty_param_storage { tps_normal; tps_obj(uint); }
|
||||
|
||||
fn get_derived_tydesc(cx: @block_ctxt, t: ty::t, escapes: bool,
|
||||
storage: ty_param_storage,
|
||||
|
|
@ -958,7 +958,7 @@ fn get_derived_tydesc(cx: @block_ctxt, t: ty::t, escapes: bool,
|
|||
let is_obj_body;
|
||||
alt storage {
|
||||
tps_normal. { is_obj_body = false; }
|
||||
tps_obj(_) | tps_fn(_) { is_obj_body = true; }
|
||||
tps_obj(_) { is_obj_body = true; }
|
||||
}
|
||||
|
||||
bcx_ccx(cx).stats.n_derived_tydescs += 1u;
|
||||
|
|
@ -1006,7 +1006,6 @@ fn get_derived_tydesc(cx: @block_ctxt, t: ty::t, escapes: bool,
|
|||
alt storage {
|
||||
tps_normal. { obj_params = 0u; }
|
||||
tps_obj(np) { obj_params = np; }
|
||||
tps_fn(np) { obj_params = 0x80000000u | np; }
|
||||
}
|
||||
|
||||
let v;
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ fn build_environment(bcx: @block_ctxt, lltydescs: [ValueRef],
|
|||
};
|
||||
}
|
||||
|
||||
let ccx = bcx_ccx(bcx);
|
||||
//let ccx = bcx_ccx(bcx);
|
||||
let tcx = bcx_tcx(bcx);
|
||||
|
||||
// First, synthesize a tuple type containing the types of all the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue