about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCamille Gillot <gillot.camille@gmail.com>2021-09-28 20:49:57 +0200
committerCamille GILLOT <gillot.camille@gmail.com>2021-09-30 19:41:32 +0200
commit881208f2681dde99e17d6d2facd53d033f36b2fd (patch)
tree14940dcfd4733d327db8a59c10234d4bbad236ad
parent04f383959668394be389cb71f7170807ad2fafe4 (diff)
downloadrust-881208f2681dde99e17d6d2facd53d033f36b2fd.tar.gz
rust-881208f2681dde99e17d6d2facd53d033f36b2fd.zip
Update compiler/rustc_codegen_cranelift/scripts/filter_profile.rs
Co-authored-by: bjorn3 <bjorn3@users.noreply.github.com>
-rwxr-xr-xscripts/filter_profile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/filter_profile.rs b/scripts/filter_profile.rs
index 33814727eb1..a0e99267c2b 100755
--- a/scripts/filter_profile.rs
+++ b/scripts/filter_profile.rs
@@ -96,7 +96,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
             stack = &stack[..index + REPORT_SYMBOL_NAMES.len()];
         }
 
-        const ENCODE_METADATA: &str = "rustc_metadata::encode_metadata";
+        const ENCODE_METADATA: &str = "rustc_metadata::rmeta::encoder::encode_metadata";
         if let Some(index) = stack.find(ENCODE_METADATA) {
             stack = &stack[..index + ENCODE_METADATA.len()];
         }