diff options
| author | Wesley Wiser <wwiser@gmail.com> | 2020-05-20 07:40:42 -0400 |
|---|---|---|
| committer | Wesley Wiser <wwiser@gmail.com> | 2020-05-20 07:40:42 -0400 |
| commit | 8ac1699ea15bf8d6d9bcecec4c340c88cf20c0da (patch) | |
| tree | 7088ebf2567c626a805dce7170722c63244dd1f1 | |
| parent | 0862458dad90a0d80827e22e3f86e33add6d847c (diff) | |
| download | rust-8ac1699ea15bf8d6d9bcecec4c340c88cf20c0da.tar.gz rust-8ac1699ea15bf8d6d9bcecec4c340c88cf20c0da.zip | |
[self-profling] Record the cgu name when doing codegen for a module
| -rw-r--r-- | src/librustc_codegen_llvm/base.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/base.rs b/src/librustc_codegen_llvm/base.rs index e5f73473b72..3e17a51528e 100644 --- a/src/librustc_codegen_llvm/base.rs +++ b/src/librustc_codegen_llvm/base.rs @@ -100,7 +100,7 @@ pub fn compile_codegen_unit( tcx: TyCtxt<'tcx>, cgu_name: Symbol, ) -> (ModuleCodegen<ModuleLlvm>, u64) { - let prof_timer = tcx.prof.generic_activity("codegen_module"); + let prof_timer = tcx.prof.generic_activity_with_arg("codegen_module", cgu_name.to_string()); let start_time = Instant::now(); let dep_node = tcx.codegen_unit(cgu_name).codegen_dep_node(tcx); |
