fix query description

This commit is contained in:
b-naber 2021-11-26 23:41:22 +01:00
parent 0b32cf3a8d
commit 84bcd40927

View File

@ -1662,14 +1662,14 @@ rustc_queries! {
query try_normalize_generic_arg_after_erasing_regions(
goal: ParamEnvAnd<'tcx, GenericArg<'tcx>>
) -> Result<GenericArg<'tcx>, NoSolution> {
desc { "trying to normalize `{}`", goal.value }
desc { "normalizing `{}`", goal.value }
}
/// Do not call this query directly: invoke `try_normalize_erasing_regions` instead.
query try_normalize_mir_const_after_erasing_regions(
goal: ParamEnvAnd<'tcx, mir::ConstantKind<'tcx>>
) -> Result<mir::ConstantKind<'tcx>, NoSolution> {
desc { "trying to normalize `{}`", goal.value }
desc { "normalizing `{}`", goal.value }
}
query implied_outlives_bounds(