Skip to content

Commit d066ae1

Browse files
committed
---
yaml --- r: 167242 b: refs/heads/try c: 975a57c h: refs/heads/master v: v3
1 parent e0e86fe commit d066ae1

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 023dfb0c898d851dee6ace2f8339b73b5287136b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 023dfb0c898d851dee6ace2f8339b73b5287136b
5-
refs/heads/try: 5e5cc6749eb16f2820fe291582ded0b035667612
5+
refs/heads/try: 975a57ce431456a2877af455d6316c1531192dcf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/librustc_driver/driver.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ use serialize::{json, Encodable};
3232
use std::io;
3333
use std::io::fs;
3434
use std::os;
35-
use save;
3635
use syntax::ast;
3736
use syntax::ast_map;
3837
use syntax::attr;

branches/try/src/librustc_trans/trans/callee.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ pub fn trans_fn_pointer_shim<'a, 'tcx>(
272272
bare_fn_ty.repr(tcx));
273273

274274
// This is an impl of `Fn` trait, so receiver is `&self`.
275-
let bare_fn_ty_ref = ty::mk_imm_rptr(tcx, ty::ReStatic, bare_fn_ty);
275+
let bare_fn_ty_ref = ty::mk_imm_rptr(tcx, tcx.mk_region(ty::ReStatic), bare_fn_ty);
276276

277277
// Construct the "tuply" version of `bare_fn_ty`. It takes two arguments: `self`,
278278
// which is the fn pointer, and `args`, which is the arguments tuple.

branches/try/src/librustdoc/core.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ pub fn run_core(libs: Vec<Path>, cfgs: Vec<String>, externs: Externs,
122122

123123
let arenas = ty::CtxtArenas::new();
124124
let ty::CrateAnalysis {
125-
let driver::CrateAnalysis {
126125
exported_items, public_items, ty_cx, ..
127126
} = driver::phase_3_run_analysis_passes(sess, ast_map, &arenas, name);
128127

0 commit comments

Comments
 (0)