about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2023-09-25 15:46:38 +0200
committerlcnr <rust@lcnr.de>2023-09-26 09:37:55 +0200
commit159293cdbf9aaa32754af395dbb9833fe236a8a6 (patch)
treef9cdfed84f12bb9d55a2974abdec3a698ea63e3a /scripts
parent1351de36eebd2304b8905b0e29138f04ed49bb41 (diff)
downloadrust-159293cdbf9aaa32754af395dbb9833fe236a8a6.tar.gz
rust-159293cdbf9aaa32754af395dbb9833fe236a8a6.zip
subst -> instantiate
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/filter_profile.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/filter_profile.rs b/scripts/filter_profile.rs
index f782671fe36..03912b18ea5 100755
--- a/scripts/filter_profile.rs
+++ b/scripts/filter_profile.rs
@@ -100,9 +100,9 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
             stack = &stack[..index + ENCODE_METADATA.len()];
         }
 
-        const SUBST_AND_NORMALIZE_ERASING_REGIONS: &str = "rustc_middle::ty::normalize_erasing_regions::<impl rustc_middle::ty::context::TyCtxt>::subst_and_normalize_erasing_regions";
-        if let Some(index) = stack.find(SUBST_AND_NORMALIZE_ERASING_REGIONS) {
-            stack = &stack[..index + SUBST_AND_NORMALIZE_ERASING_REGIONS.len()];
+        const INSTANTIATE_AND_NORMALIZE_ERASING_REGIONS: &str = "rustc_middle::ty::normalize_erasing_regions::<impl rustc_middle::ty::context::TyCtxt>::instantiate_and_normalize_erasing_regions";
+        if let Some(index) = stack.find(INSTANTIATE_AND_NORMALIZE_ERASING_REGIONS) {
+            stack = &stack[..index + INSTANTIATE_AND_NORMALIZE_ERASING_REGIONS.len()];
         }
 
         const NORMALIZE_ERASING_LATE_BOUND_REGIONS: &str = "rustc_middle::ty::normalize_erasing_regions::<impl rustc_middle::ty::context::TyCtxt>::normalize_erasing_late_bound_regions";