aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/backend/rust-compile-resolve-path.cc
diff options
context:
space:
mode:
authorPhilip Herron <herron.philip@googlemail.com>2023-04-04 15:37:33 +0100
committerArthur Cohen <arthur.cohen@embecosm.com>2024-01-16 18:28:45 +0100
commit92641136c7e1f8a1aa165963b4371536a3854dc4 (patch)
tree0719a85581825dd61bb437999b3cf9f629f4338e /gcc/rust/backend/rust-compile-resolve-path.cc
parent3a360b9481fe5a09053872e99a5c18de15e3968f (diff)
downloadgcc-92641136c7e1f8a1aa165963b4371536a3854dc4.zip
gcc-92641136c7e1f8a1aa165963b4371536a3854dc4.tar.gz
gcc-92641136c7e1f8a1aa165963b4371536a3854dc4.tar.bz2
gccrs: remove unused code in query_compile
gcc/rust/ChangeLog: * backend/rust-compile-resolve-path.cc (HIRCompileBase::query_compile): remove unused Signed-off-by: Philip Herron <herron.philip@googlemail.com>
Diffstat (limited to 'gcc/rust/backend/rust-compile-resolve-path.cc')
-rw-r--r--gcc/rust/backend/rust-compile-resolve-path.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/rust/backend/rust-compile-resolve-path.cc b/gcc/rust/backend/rust-compile-resolve-path.cc
index f9c509d..6c9f80e 100644
--- a/gcc/rust/backend/rust-compile-resolve-path.cc
+++ b/gcc/rust/backend/rust-compile-resolve-path.cc
@@ -212,17 +212,6 @@ HIRCompileBase::query_compile (HirId ref, TyTy::BaseType *lookup,
bool is_impl_item = resolved_item != nullptr;
if (is_impl_item)
{
- rust_assert (parent_impl_id != UNKNOWN_HIRID);
- HIR::Item *impl_ref
- = ctx->get_mappings ()->lookup_hir_item (parent_impl_id);
- rust_assert (impl_ref != nullptr);
- HIR::ImplBlock *impl = static_cast<HIR::ImplBlock *> (impl_ref);
-
- TyTy::BaseType *self = nullptr;
- bool ok = ctx->get_tyctx ()->lookup_type (
- impl->get_type ()->get_mappings ().get_hirid (), &self);
- rust_assert (ok);
-
if (!lookup->has_subsititions_defined ())
return CompileInherentImplItem::Compile (resolved_item, ctx,
nullptr, true, expr_locus);