@@ -2011,7 +2011,7 @@ rustc_queries! {
2011
2011
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, NormalizationResult <' tcx>>>,
2012
2012
NoSolution ,
2013
2013
> {
2014
- desc { "normalizing `{}`" , goal. value. value }
2014
+ desc { "normalizing `{}`" , goal. canonical . value. value }
2015
2015
}
2016
2016
2017
2017
/// <div class="warning">
@@ -2025,7 +2025,7 @@ rustc_queries! {
2025
2025
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, NormalizationResult <' tcx>>>,
2026
2026
NoSolution ,
2027
2027
> {
2028
- desc { "normalizing `{}`" , goal. value. value }
2028
+ desc { "normalizing `{}`" , goal. canonical . value. value }
2029
2029
}
2030
2030
2031
2031
/// <div class="warning">
@@ -2039,7 +2039,7 @@ rustc_queries! {
2039
2039
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, NormalizationResult <' tcx>>>,
2040
2040
NoSolution ,
2041
2041
> {
2042
- desc { "normalizing `{}`" , goal. value. value }
2042
+ desc { "normalizing `{}`" , goal. canonical . value. value }
2043
2043
}
2044
2044
2045
2045
/// Do not call this query directly: invoke `try_normalize_erasing_regions` instead.
@@ -2055,7 +2055,7 @@ rustc_queries! {
2055
2055
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, Vec <OutlivesBound <' tcx>>>>,
2056
2056
NoSolution ,
2057
2057
> {
2058
- desc { "computing implied outlives bounds for `{}`" , goal. value. value. ty }
2058
+ desc { "computing implied outlives bounds for `{}`" , goal. canonical . value. value. ty }
2059
2059
}
2060
2060
2061
2061
query implied_outlives_bounds(
@@ -2064,7 +2064,7 @@ rustc_queries! {
2064
2064
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, Vec <OutlivesBound <' tcx>>>>,
2065
2065
NoSolution ,
2066
2066
> {
2067
- desc { "computing implied outlives bounds v2 for `{}`" , goal. value. value. ty }
2067
+ desc { "computing implied outlives bounds v2 for `{}`" , goal. canonical . value. value. ty }
2068
2068
}
2069
2069
2070
2070
/// Do not call this query directly:
@@ -2075,15 +2075,15 @@ rustc_queries! {
2075
2075
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, DropckOutlivesResult <' tcx>>>,
2076
2076
NoSolution ,
2077
2077
> {
2078
- desc { "computing dropck types for `{}`" , goal. value. value. dropped_ty }
2078
+ desc { "computing dropck types for `{}`" , goal. canonical . value. value. dropped_ty }
2079
2079
}
2080
2080
2081
2081
/// Do not call this query directly: invoke `infcx.predicate_may_hold()` or
2082
2082
/// `infcx.predicate_must_hold()` instead.
2083
2083
query evaluate_obligation(
2084
2084
goal: CanonicalPredicateGoal <' tcx>
2085
2085
) -> Result <EvaluationResult , OverflowError > {
2086
- desc { "evaluating trait selection obligation `{}`" , goal. value. value }
2086
+ desc { "evaluating trait selection obligation `{}`" , goal. canonical . value. value }
2087
2087
}
2088
2088
2089
2089
/// Do not call this query directly: part of the `Eq` type-op
@@ -2093,7 +2093,7 @@ rustc_queries! {
2093
2093
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, ( ) >>,
2094
2094
NoSolution ,
2095
2095
> {
2096
- desc { "evaluating `type_op_ascribe_user_type` `{:?}`" , goal. value. value }
2096
+ desc { "evaluating `type_op_ascribe_user_type` `{:?}`" , goal. canonical . value. value }
2097
2097
}
2098
2098
2099
2099
/// Do not call this query directly: part of the `ProvePredicate` type-op
@@ -2103,7 +2103,7 @@ rustc_queries! {
2103
2103
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, ( ) >>,
2104
2104
NoSolution ,
2105
2105
> {
2106
- desc { "evaluating `type_op_prove_predicate` `{:?}`" , goal. value. value }
2106
+ desc { "evaluating `type_op_prove_predicate` `{:?}`" , goal. canonical . value. value }
2107
2107
}
2108
2108
2109
2109
/// Do not call this query directly: part of the `Normalize` type-op
@@ -2113,7 +2113,7 @@ rustc_queries! {
2113
2113
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, Ty <' tcx>>>,
2114
2114
NoSolution ,
2115
2115
> {
2116
- desc { "normalizing `{}`" , goal. value. value. value }
2116
+ desc { "normalizing `{}`" , goal. canonical . value. value. value }
2117
2117
}
2118
2118
2119
2119
/// Do not call this query directly: part of the `Normalize` type-op
@@ -2123,7 +2123,7 @@ rustc_queries! {
2123
2123
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, ty:: Clause <' tcx>>>,
2124
2124
NoSolution ,
2125
2125
> {
2126
- desc { "normalizing `{:?}`" , goal. value. value. value }
2126
+ desc { "normalizing `{:?}`" , goal. canonical . value. value. value }
2127
2127
}
2128
2128
2129
2129
/// Do not call this query directly: part of the `Normalize` type-op
@@ -2133,7 +2133,7 @@ rustc_queries! {
2133
2133
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, ty:: PolyFnSig <' tcx>>>,
2134
2134
NoSolution ,
2135
2135
> {
2136
- desc { "normalizing `{:?}`" , goal. value. value. value }
2136
+ desc { "normalizing `{:?}`" , goal. canonical . value. value. value }
2137
2137
}
2138
2138
2139
2139
/// Do not call this query directly: part of the `Normalize` type-op
@@ -2143,7 +2143,7 @@ rustc_queries! {
2143
2143
& ' tcx Canonical <' tcx, canonical:: QueryResponse <' tcx, ty:: FnSig <' tcx>>>,
2144
2144
NoSolution ,
2145
2145
> {
2146
- desc { "normalizing `{:?}`" , goal. value. value. value }
2146
+ desc { "normalizing `{:?}`" , goal. canonical . value. value. value }
2147
2147
}
2148
2148
2149
2149
query instantiate_and_check_impossible_predicates( key: ( DefId , GenericArgsRef <' tcx>) ) -> bool {
@@ -2164,7 +2164,7 @@ rustc_queries! {
2164
2164
query method_autoderef_steps(
2165
2165
goal: CanonicalTyGoal <' tcx>
2166
2166
) -> MethodAutoderefStepsResult <' tcx> {
2167
- desc { "computing autoderef types for `{}`" , goal. value. value }
2167
+ desc { "computing autoderef types for `{}`" , goal. canonical . value. value }
2168
2168
}
2169
2169
2170
2170
query supported_target_features( _: CrateNum ) -> & ' tcx UnordMap <String , Option <Symbol >> {
0 commit comments