diff options
| author | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2023-09-10 13:15:46 +0200 |
|---|---|---|
| committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2023-09-10 17:47:16 +0200 |
| commit | f742d8832601080df1ae56c6469da18a917e1f60 (patch) | |
| tree | cb70e15c8efcc9a39abfd7b5df2c5e9d0bbce09a /compiler/rustc_codegen_llvm/src | |
| parent | 01ce2d0ea18bb48d4eb03d7b4b13ed7fd394b1e5 (diff) | |
| download | rust-f742d8832601080df1ae56c6469da18a917e1f60.tar.gz rust-f742d8832601080df1ae56c6469da18a917e1f60.zip | |
Remove `verbose_generic_activity_with_arg`
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/back/lto.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/back/lto.rs b/compiler/rustc_codegen_llvm/src/back/lto.rs index 5cf83b1accb..ba263296bb4 100644 --- a/compiler/rustc_codegen_llvm/src/back/lto.rs +++ b/compiler/rustc_codegen_llvm/src/back/lto.rs @@ -605,7 +605,7 @@ pub(crate) fn run_pass_manager( module: &mut ModuleCodegen<ModuleLlvm>, thin: bool, ) -> Result<(), FatalError> { - let _timer = cgcx.prof.verbose_generic_activity_with_arg("LLVM_lto_optimize", &*module.name); + let _timer = cgcx.prof.generic_activity_with_arg("LLVM_lto_optimize", &*module.name); let config = cgcx.config(module.kind); // Now we have one massive module inside of llmod. Time to run the |
