Rollup merge of #65643 - varkor:remove-free-regions-from-const-placeholder, r=eddyb
Correct handling of type flags with `ConstValue::Placeholder` This fixes a mistake, but not https://github.com/rust-lang/rust/issues/65623. r? @eddyb
This commit is contained in:
commit
216e50d904
1 changed files with 9 additions and 7 deletions
|
|
@ -114,6 +114,7 @@ impl FlagComputation {
|
|||
}
|
||||
|
||||
&ty::Placeholder(..) => {
|
||||
self.add_flags(TypeFlags::HAS_FREE_LOCAL_NAMES);
|
||||
self.add_flags(TypeFlags::HAS_TY_PLACEHOLDER);
|
||||
}
|
||||
|
||||
|
|
@ -123,8 +124,7 @@ impl FlagComputation {
|
|||
match infer {
|
||||
ty::FreshTy(_) |
|
||||
ty::FreshIntTy(_) |
|
||||
ty::FreshFloatTy(_) => {
|
||||
}
|
||||
ty::FreshFloatTy(_) => {}
|
||||
|
||||
ty::TyVar(_) |
|
||||
ty::IntVar(_) |
|
||||
|
|
@ -245,14 +245,16 @@ impl FlagComputation {
|
|||
}
|
||||
ConstValue::Bound(debruijn, _) => self.add_binder(debruijn),
|
||||
ConstValue::Param(_) => {
|
||||
self.add_flags(TypeFlags::HAS_FREE_LOCAL_NAMES | TypeFlags::HAS_PARAMS);
|
||||
self.add_flags(TypeFlags::HAS_FREE_LOCAL_NAMES);
|
||||
self.add_flags(TypeFlags::HAS_PARAMS);
|
||||
}
|
||||
ConstValue::Placeholder(_) => {
|
||||
self.add_flags(TypeFlags::HAS_FREE_REGIONS | TypeFlags::HAS_CT_PLACEHOLDER);
|
||||
self.add_flags(TypeFlags::HAS_FREE_LOCAL_NAMES);
|
||||
self.add_flags(TypeFlags::HAS_CT_PLACEHOLDER);
|
||||
}
|
||||
ConstValue::Scalar(_) => { }
|
||||
ConstValue::Slice { data: _, start: _, end: _ } => { }
|
||||
ConstValue::ByRef { alloc: _, offset: _ } => { }
|
||||
ConstValue::Scalar(_) => {}
|
||||
ConstValue::Slice { .. } => {}
|
||||
ConstValue::ByRef { .. } => {}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue