about summary refs log tree commit diff
path: root/compiler/rustc_middle
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2021-01-13 03:20:13 +0100
committerGitHub <noreply@github.com>2021-01-13 03:20:13 +0100
commitac7267a5e78716f08650a513f91c5d901b4a1f28 (patch)
tree51a0fbe9c8a23be8de58904c385531583e969274 /compiler/rustc_middle
parent11bca6b07fc7b21e1c0ac9a011988b43468e9fe6 (diff)
parenta189cb2b6d30a5c3af268c11683d3e2b430e8e89 (diff)
downloadrust-ac7267a5e78716f08650a513f91c5d901b4a1f28.tar.gz
rust-ac7267a5e78716f08650a513f91c5d901b4a1f28.zip
Rollup merge of #80232 - bugadani:roundtrip, r=estebank
Remove redundant def_id lookups

Simplify `DefId -> LocalDefId -> HirId -> LocalDefId -> DefId` chains.
Diffstat (limited to 'compiler/rustc_middle')
-rw-r--r--compiler/rustc_middle/src/ty/consts.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/rustc_middle/src/ty/consts.rs b/compiler/rustc_middle/src/ty/consts.rs
index 0af884a286d..041c040f0b7 100644
--- a/compiler/rustc_middle/src/ty/consts.rs
+++ b/compiler/rustc_middle/src/ty/consts.rs
@@ -92,8 +92,7 @@ impl<'tcx> Const<'tcx> {
                 let item_id = tcx.hir().get_parent_node(hir_id);
                 let item_def_id = tcx.hir().local_def_id(item_id);
                 let generics = tcx.generics_of(item_def_id.to_def_id());
-                let index =
-                    generics.param_def_id_to_index[&tcx.hir().local_def_id(hir_id).to_def_id()];
+                let index = generics.param_def_id_to_index[&def_id];
                 let name = tcx.hir().name(hir_id);
                 ty::ConstKind::Param(ty::ParamConst::new(index, name))
             }