mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
rustc: Long lines
This commit is contained in:
parent
d6ceef95ba
commit
3c7cc9a1b8
@ -186,8 +186,11 @@ fn trans_static_method_callee(bcx: block,
|
||||
bcx, mth_id, impl_did, callee_id, rcvr_origins);
|
||||
|
||||
let FnData {llfn: lval} =
|
||||
trans_fn_ref_with_vtables(bcx, mth_id, callee_id,
|
||||
callee_substs, Some(callee_origins));
|
||||
trans_fn_ref_with_vtables(bcx,
|
||||
mth_id,
|
||||
callee_id,
|
||||
callee_substs,
|
||||
Some(callee_origins));
|
||||
|
||||
let callee_ty = node_id_type(bcx, callee_id);
|
||||
let llty = T_ptr(type_of_fn_from_ty(ccx, callee_ty));
|
||||
|
@ -400,7 +400,8 @@ fn connect_trait_tps(fcx: @fn_ctxt, expr: @ast::expr, impl_tys: ~[ty::t],
|
||||
}
|
||||
}
|
||||
|
||||
fn insert_vtables(ccx: @crate_ctxt, callee_id: ast::node_id, vtables: vtable_res) {
|
||||
fn insert_vtables(ccx: @crate_ctxt, callee_id: ast::node_id,
|
||||
vtables: vtable_res) {
|
||||
debug!("insert_vtables(callee_id=%d, vtables=%?)",
|
||||
callee_id, vtables.map(|v| v.to_str(ccx.tcx)));
|
||||
ccx.vtable_map.insert(callee_id, vtables);
|
||||
|
Loading…
Reference in New Issue
Block a user