cover ParamConst

This commit is contained in:
ouz-a
2023-08-10 19:32:45 +03:00
parent 8f1ea576b7
commit c80281a861
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -1136,7 +1136,9 @@ fn stable(&self, tables: &mut Tables<'tcx>) -> Self::T {
let const_val = tables.tcx.valtree_to_const_val((c.ty(), val));
stable_mir::ty::ConstantKind::Allocated(new_allocation(self, const_val, tables))
}
_ => todo!(),
ty::ParamCt(param) => stable_mir::ty::ConstantKind::ParamCt(opaque(&param)),
ty::ErrorCt(_) => unreachable!(),
_ => unimplemented!(),
},
ConstantKind::Unevaluated(unev_const, ty) => {
stable_mir::ty::ConstantKind::Unevaluated(stable_mir::ty::UnevaluatedConst {
+1
View File
@@ -401,6 +401,7 @@ pub fn allocation_filter<'tcx>(
pub enum ConstantKind {
Allocated(Allocation),
Unevaluated(UnevaluatedConst),
ParamCt(Opaque),
}
#[derive(Clone, Debug)]