Skip to content

Commit 557b5bc

Browse files
committed
---
yaml --- r: 65073 b: refs/heads/master c: 99c7750 h: refs/heads/master i: 65071: dc90a44 v: v3
1 parent 81ff91e commit 557b5bc

File tree

13 files changed

+5
-16
lines changed

13 files changed

+5
-16
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: aa827838e1c59248060ec2c2b740d3ba662e6c7a
2+
refs/heads/master: 99c7750ca640e2153892307510d6cce015b766bd
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 18e3db7392d2d0697b7e27d6d986139960144d85
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9

trunk/src/librustc/middle/borrowck/check_loans.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,4 +816,3 @@ fn check_loans_in_block<'a>(blk: &ast::blk,
816816
visit::visit_block(blk, this, vt);
817817
this.check_for_conflicting_loans(blk.node.id);
818818
}
819-

trunk/src/librustc/middle/borrowck/gather_loans/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,4 +634,3 @@ fn add_stmt_to_map(stmt: @ast::stmt,
634634
}
635635
visit::visit_stmt(stmt, this, vt);
636636
}
637-

trunk/src/librustc/middle/borrowck/gather_loans/restrictions.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,4 +246,3 @@ impl RestrictionsContext {
246246
}
247247
}
248248
}
249-

trunk/src/librustc/middle/dataflow.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1062,4 +1062,3 @@ fn reslice<'a>(v: &'a mut [uint]) -> &'a [uint] {
10621062
cast::transmute(v)
10631063
}
10641064
}
1065-

trunk/src/librustc/middle/trans/write_guard.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,3 @@ fn perform_write_guard(datum: &Datum,
198198
line],
199199
expr::Ignore)
200200
}
201-

trunk/src/librustpkg/rustpkg.rc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,4 +676,3 @@ impl PkgSrc {
676676
self.build_crates(maybe_sysroot, dst_dir, &dir, self.benchs, cfgs, Bench);
677677
}
678678
}
679-

trunk/src/libsyntax/fold.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,4 +858,3 @@ impl AstFoldExtensions for @ast_fold {
858858
pub fn make_fold(afp: ast_fold_fns) -> @ast_fold {
859859
afp as @ast_fold
860860
}
861-

trunk/src/test/auxiliary/mod_trait_with_static_methods_lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ pub mod sub_foo {
1919
pub fn foo() -> int { 42 }
2020
}
2121
}
22-

trunk/src/test/compile-fail/regions-infer-borrow-scope-within-loop.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ fn foo(cond: &fn() -> bool, box: &fn() -> @int) {
1515
loop {
1616
let x = box();
1717

18-
// Here we complain because the resulting region
19-
// of this borrow is the fn body as a whole.
18+
// Here we complain because the resulting region
19+
// of this borrow is the fn body as a whole.
2020
y = borrow(x); //~ ERROR cannot root
2121

2222
assert!(*x == *y);

trunk/src/test/run-pass/intrinsic-atomics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mod rusti {
1717

1818
pub fn atomic_load(src: &int) -> int;
1919
pub fn atomic_load_acq(src: &int) -> int;
20-
20+
2121
pub fn atomic_store(dst: &mut int, val: int);
2222
pub fn atomic_store_rel(dst: &mut int, val: int);
2323

@@ -42,7 +42,7 @@ pub fn main() {
4242
assert!(rusti::atomic_load(x) == 1);
4343
*x = 5;
4444
assert!(rusti::atomic_load_acq(x) == 5);
45-
45+
4646
rusti::atomic_store(x,3);
4747
assert!(*x == 3);
4848
rusti::atomic_store_rel(x,1);

trunk/src/test/run-pass/issue-5353.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,3 @@ fn gl_err_str(err: u32) -> ~str
2222
}
2323

2424
fn main() {}
25-
26-

trunk/src/test/run-pass/match-range-static.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ fn main() {
77
_ => (),
88
}
99
}
10-

0 commit comments

Comments
 (0)