diff options
| author | Camille Gillot <gillot.camille@gmail.com> | 2021-09-28 20:49:57 +0200 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2021-09-30 19:41:32 +0200 |
| commit | 79d14751a3bd9f27dbf5002ab2ca3c001f83afe3 (patch) | |
| tree | 4fad91cb090157a4eb0e1053988ee23434f71d27 /compiler/rustc_codegen_cranelift/scripts | |
| parent | ea6b7996b570538393bf9e4575553f739fa5af36 (diff) | |
| download | rust-79d14751a3bd9f27dbf5002ab2ca3c001f83afe3.tar.gz rust-79d14751a3bd9f27dbf5002ab2ca3c001f83afe3.zip | |
Update compiler/rustc_codegen_cranelift/scripts/filter_profile.rs
Co-authored-by: bjorn3 <bjorn3@users.noreply.github.com>
Diffstat (limited to 'compiler/rustc_codegen_cranelift/scripts')
| -rwxr-xr-x | compiler/rustc_codegen_cranelift/scripts/filter_profile.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_cranelift/scripts/filter_profile.rs b/compiler/rustc_codegen_cranelift/scripts/filter_profile.rs index 33814727eb1..a0e99267c2b 100755 --- a/compiler/rustc_codegen_cranelift/scripts/filter_profile.rs +++ b/compiler/rustc_codegen_cranelift/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()]; } |
