remove bound_type_of query; make type_of return EarlyBinder; change type_of in metadata
This commit is contained in:
parent
d822b97a27
commit
c183110cc2
164 changed files with 325 additions and 380 deletions
|
@ -57,7 +57,7 @@ impl<'tcx> MirLint<'tcx> for ConstProp {
|
|||
return;
|
||||
}
|
||||
|
||||
let is_generator = tcx.bound_type_of(def_id.to_def_id()).subst_identity().is_generator();
|
||||
let is_generator = tcx.type_of(def_id.to_def_id()).subst_identity().is_generator();
|
||||
// FIXME(welseywiser) const prop doesn't work on generators because of query cycles
|
||||
// computing their layout.
|
||||
if is_generator {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue