diff options
| author | bors <bors@rust-lang.org> | 2022-10-06 19:55:48 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-10-06 19:55:48 +0000 |
| commit | 0ca356586fed56002b10920fd21ddf6fb12de797 (patch) | |
| tree | a4f5d6f9698df459b090574a55c03ce6fc6b003d /compiler/rustc_codegen_llvm/src | |
| parent | 2d46584fae1acc74566bf49fce976fe509a38f5f (diff) | |
| parent | 48964bdb872d08ed80f669afeaed52d9ac01e132 (diff) | |
| download | rust-0ca356586fed56002b10920fd21ddf6fb12de797.tar.gz rust-0ca356586fed56002b10920fd21ddf6fb12de797.zip | |
Auto merge of #102741 - matthiaskrgr:rollup-63no5tz, r=matthiaskrgr
Rollup of 5 pull requests Successful merges: - #98496 (make `compare_const_impl` a query and use it in `instance.rs`) - #102680 (Fix overconstrained Send impls in btree internals) - #102718 (Fix `opaque_hidden_inferred_bound` lint ICE) - #102725 (Remove `-Ztime`) - #102736 (Migrate search input color to CSS variable) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
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 2049422b79a..cef7bf1e803 100644 --- a/compiler/rustc_codegen_llvm/src/back/lto.rs +++ b/compiler/rustc_codegen_llvm/src/back/lto.rs @@ -573,7 +573,7 @@ pub(crate) fn run_pass_manager( module: &mut ModuleCodegen<ModuleLlvm>, thin: bool, ) -> Result<(), FatalError> { - let _timer = cgcx.prof.extra_verbose_generic_activity("LLVM_lto_optimize", &*module.name); + let _timer = cgcx.prof.verbose_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 |
