public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc/devel/rust/master] Add deref_mut lang_item mappings
@ 2022-06-08 12:01 Thomas Schwinge
  0 siblings, 0 replies; only message in thread
From: Thomas Schwinge @ 2022-06-08 12:01 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:a110fd152f301915f22f491ba403f6d67d90949e

commit a110fd152f301915f22f491ba403f6d67d90949e
Author: Philip Herron <philip.herron@embecosm.com>
Date:   Tue Jan 25 12:33:17 2022 +0000

    Add deref_mut lang_item mappings

Diff:
---
 gcc/rust/util/rust-hir-map.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/gcc/rust/util/rust-hir-map.h b/gcc/rust/util/rust-hir-map.h
index 0026f3b1c0a..8781629f134 100644
--- a/gcc/rust/util/rust-hir-map.h
+++ b/gcc/rust/util/rust-hir-map.h
@@ -62,6 +62,7 @@ public:
     SHR_ASSIGN,
 
     DEREF,
+    DEREF_MUT,
 
     UNKNOWN,
   };
@@ -160,6 +161,10 @@ public:
       {
 	return ItemType::DEREF;
       }
+    else if (item.compare ("deref_mut") == 0)
+      {
+	return ItemType::DEREF_MUT;
+      }
 
     return ItemType::UNKNOWN;
   }
@@ -214,6 +219,8 @@ public:
 	return "shr_assign";
       case DEREF:
 	return "deref";
+      case DEREF_MUT:
+	return "deref_mut";
 
       case UNKNOWN:
 	return "<UNKNOWN>";


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-06-08 12:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-08 12:01 [gcc/devel/rust/master] Add deref_mut lang_item mappings Thomas Schwinge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).