Skip to content

Commit 60aa390

Browse files
committed
---
yaml --- r: 119175 b: refs/heads/dist-snap c: 167c29f h: refs/heads/master i: 119173: a8892e1 119171: 1750129 119167: 429ea0e v: v3
1 parent e2b78e4 commit 60aa390

File tree

2 files changed

+1
-29
lines changed
  • branches/dist-snap/src/librustc/middle/typeck/infer

2 files changed

+1
-29
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 1813e5aa1a03b0596b8de7abd1af31edf5d6098f
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: ce47c91bfc27d41d8e674c4aed0e431c1eab75f6
9+
refs/heads/dist-snap: 167c29ff3f204c7ef5f02c55adf7adfa448d2e61
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/librustc/middle/typeck/infer/mod.rs

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -421,19 +421,6 @@ pub fn mk_coercety(cx: &InferCtxt,
421421
})
422422
}
423423

424-
pub fn can_mk_coercety(cx: &InferCtxt, a: ty::t, b: ty::t) -> ures {
425-
debug!("can_mk_coercety({} -> {})", a.inf_str(cx), b.inf_str(cx));
426-
indent(|| {
427-
cx.probe(|| {
428-
let trace = TypeTrace {
429-
origin: Misc(codemap::DUMMY_SP),
430-
values: Types(expected_found(true, a, b))
431-
};
432-
Coerce(cx.combine_fields(true, trace)).tys(a, b)
433-
})
434-
}).to_ures()
435-
}
436-
437424
// See comment on the type `resolve_state` below
438425
pub fn resolve_type(cx: &InferCtxt,
439426
a: ty::t,
@@ -631,10 +618,6 @@ impl<'a> InferCtxt<'a> {
631618
result
632619
}
633620

634-
pub fn next_int_var(&self) -> ty::t {
635-
ty::mk_int_var(self.tcx, self.next_int_var_id())
636-
}
637-
638621
pub fn next_float_var_id(&self) -> FloatVid {
639622
let mut float_var_counter = self.float_var_counter.get();
640623
let mut float_var_bindings = self.float_var_bindings.borrow_mut();
@@ -644,21 +627,10 @@ impl<'a> InferCtxt<'a> {
644627
result
645628
}
646629

647-
pub fn next_float_var(&self) -> ty::t {
648-
ty::mk_float_var(self.tcx, self.next_float_var_id())
649-
}
650-
651630
pub fn next_region_var(&self, origin: RegionVariableOrigin) -> ty::Region {
652631
ty::ReInfer(ty::ReVar(self.region_vars.new_region_var(origin)))
653632
}
654633

655-
pub fn next_region_vars(&self,
656-
origin: RegionVariableOrigin,
657-
count: uint)
658-
-> Vec<ty::Region> {
659-
Vec::from_fn(count, |_| self.next_region_var(origin))
660-
}
661-
662634
pub fn region_vars_for_defs(&self,
663635
span: Span,
664636
defs: &[ty::RegionParameterDef])

0 commit comments

Comments
 (0)