Skip to content

Commit

Permalink
auto merge of #5339 : catamorphism/rust/less-copy, r=catamorphism
Browse files Browse the repository at this point in the history
  • Loading branch information
bors committed Mar 13, 2013
2 parents 4d8ddff + f9269a1 commit 67b0f3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/librust/rust.rc
Expand Up @@ -9,8 +9,8 @@
// except according to those terms.

// rust - central access to other rust tools
// XXX: Make commands run and test emit proper file endings on winds
// XXX: Make run only accept source that emits an executable
// FIXME #2238 Make commands run and test emit proper file endings on winds
// FIXME #2238 Make run only accept source that emits an executable

#[deny(deprecated_self)];

Expand Down
7 changes: 3 additions & 4 deletions src/librustc/middle/trans/base.rs
Expand Up @@ -867,7 +867,7 @@ pub fn in_lpad_scope_cx(bcx: block, f: &fn(+si: &mut scope_info)) {
let mut bcx = bcx;
loop {
{
// XXX: Borrow check bug workaround.
// FIXME #4280: Borrow check bug workaround.
let kind: &mut block_kind = &mut *bcx.kind;
match *kind {
block_scope(ref mut inf) => {
Expand Down Expand Up @@ -1272,7 +1272,7 @@ pub fn cleanup_and_leave(bcx: block,
}

{
// XXX: Borrow check bug workaround.
// FIXME #4280: Borrow check bug workaround.
let kind: &mut block_kind = &mut *cur.kind;
match *kind {
block_scope(ref mut inf) if !inf.cleanups.is_empty() => {
Expand Down Expand Up @@ -1850,8 +1850,7 @@ pub fn trans_enum_variant(ccx: @CrateContext,
};
let fcx = new_fn_ctxt_w_id(ccx, ~[], llfndecl, variant.node.id, None,
param_substs, None);
// XXX: Bad copy.
let raw_llargs = create_llargs_for_fn_args(fcx, no_self, copy fn_args);
let raw_llargs = create_llargs_for_fn_args(fcx, no_self, fn_args);
let ty_param_substs = match param_substs {
Some(ref substs) => /*bad*/copy substs.tys,
None => ~[]
Expand Down

0 comments on commit 67b0f3d

Please sign in to comment.