aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/util/rust-hir-map.h
diff options
context:
space:
mode:
authorArthur Cohen <arthur.cohen@embecosm.com>2024-12-26 23:00:08 +0000
committerArthur Cohen <arthur.cohen@embecosm.com>2025-03-21 12:57:49 +0100
commit4d0cfd5b6f179081ab5fa412a8dd1d7762e9403c (patch)
tree9478749955cd15e2a2de788187d56370beac5145 /gcc/rust/util/rust-hir-map.h
parent5702b0a24e64082bcfd19372a67ef7699d033d22 (diff)
downloadgcc-4d0cfd5b6f179081ab5fa412a8dd1d7762e9403c.zip
gcc-4d0cfd5b6f179081ab5fa412a8dd1d7762e9403c.tar.gz
gcc-4d0cfd5b6f179081ab5fa412a8dd1d7762e9403c.tar.bz2
gccrs: mappings: Add get_lang_item_node
This method errors out if the lang item has not been declared yet. gcc/rust/ChangeLog: * util/rust-hir-map.cc (Mappings::get_lang_item_node): New. * util/rust-hir-map.h: New function.
Diffstat (limited to 'gcc/rust/util/rust-hir-map.h')
-rw-r--r--gcc/rust/util/rust-hir-map.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/rust/util/rust-hir-map.h b/gcc/rust/util/rust-hir-map.h
index aba51be..21e5328 100644
--- a/gcc/rust/util/rust-hir-map.h
+++ b/gcc/rust/util/rust-hir-map.h
@@ -261,6 +261,7 @@ public:
void insert_lang_item_node (LangItem::Kind item_type, NodeId node_id);
tl::optional<NodeId &> lookup_lang_item_node (LangItem::Kind item_type);
+ NodeId get_lang_item_node (LangItem::Kind item_type);
// This will fatal_error when this lang item does not exist
DefId get_lang_item (LangItem::Kind item_type, location_t locus);