@@ -186,11 +186,7 @@ impl<'tcx> TyCtxt<'tcx> {
186
186
/// Should only be called if `ty` has no inference variables and does not
187
187
/// need its lifetimes preserved (e.g. as part of codegen); otherwise
188
188
/// normalization attempt may cause compiler bugs.
189
- pub fn struct_tail_erasing_lifetimes (
190
- self ,
191
- ty : Ty < ' tcx > ,
192
- param_env : ty:: ParamEnv < ' tcx > ,
193
- ) -> Ty < ' tcx > {
189
+ pub fn struct_tail_for_codegen ( self , ty : Ty < ' tcx > , param_env : ty:: ParamEnv < ' tcx > ) -> Ty < ' tcx > {
194
190
let tcx = self ;
195
191
tcx. struct_tail_with_normalize ( ty, |ty| tcx. normalize_erasing_regions ( param_env, ty) , || { } )
196
192
}
@@ -203,7 +199,7 @@ impl<'tcx> TyCtxt<'tcx> {
203
199
/// handle `<T as Trait>::Assoc` and `impl Trait`); pass the identity
204
200
/// function to indicate no normalization should take place.
205
201
///
206
- /// See also `struct_tail_erasing_lifetimes `, which is suitable for use
202
+ /// See also `struct_tail_for_codegen `, which is suitable for use
207
203
/// during codegen.
208
204
pub fn struct_tail_with_normalize (
209
205
self ,
@@ -278,7 +274,7 @@ impl<'tcx> TyCtxt<'tcx> {
278
274
/// Should only be called if the types have no inference variables and do
279
275
/// not need their lifetimes preserved (e.g., as part of codegen); otherwise,
280
276
/// normalization attempt may cause compiler bugs.
281
- pub fn struct_lockstep_tails_erasing_lifetimes (
277
+ pub fn struct_lockstep_tails_for_codegen (
282
278
self ,
283
279
source : Ty < ' tcx > ,
284
280
target : Ty < ' tcx > ,
@@ -296,7 +292,7 @@ impl<'tcx> TyCtxt<'tcx> {
296
292
/// For `(Foo<Foo<T>>, Foo<dyn Trait>)`, the result will be `(Foo<T>, Trait)`,
297
293
/// whereas struct_tail produces `T`, and `Trait`, respectively.
298
294
///
299
- /// See also `struct_lockstep_tails_erasing_lifetimes `, which is suitable for use
295
+ /// See also `struct_lockstep_tails_for_codegen `, which is suitable for use
300
296
/// during codegen.
301
297
pub fn struct_lockstep_tails_with_normalize (
302
298
self ,
0 commit comments