diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2021-05-10 18:23:32 +0200 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2021-05-30 19:54:04 +0200 |
| commit | 10fb4b2fe538df29ee9729f060db0ca74f6c28fb (patch) | |
| tree | ef42f89da0c06fceabdce688e1da49e23899ac44 /compiler/rustc_query_impl | |
| parent | 5d9f96ab275af964b6c618f6a3bc3cd163b34d23 (diff) | |
| download | rust-10fb4b2fe538df29ee9729f060db0ca74f6c28fb.tar.gz rust-10fb4b2fe538df29ee9729f060db0ca74f6c28fb.zip | |
Restrict access to crate_name.
Also remove original_crate_name, which had the exact same implementation
Diffstat (limited to 'compiler/rustc_query_impl')
| -rw-r--r-- | compiler/rustc_query_impl/src/profiling_support.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_impl/src/profiling_support.rs b/compiler/rustc_query_impl/src/profiling_support.rs index 2517793ecea..95edc1e93a5 100644 --- a/compiler/rustc_query_impl/src/profiling_support.rs +++ b/compiler/rustc_query_impl/src/profiling_support.rs @@ -61,7 +61,7 @@ impl<'p, 'c, 'tcx> QueryKeyStringBuilder<'p, 'c, 'tcx> { match def_key.disambiguated_data.data { DefPathData::CrateRoot => { - crate_name = self.tcx.original_crate_name(def_id.krate).as_str(); + crate_name = self.tcx.crate_name(def_id.krate).as_str(); name = &*crate_name; dis = ""; end_index = 3; |
