public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] bpf: Corrected condition in core_mark_as_access_index.
@ 2023-11-13 22:36 Cupertino Miranda
  2023-11-14 16:06 ` David Faust
  0 siblings, 1 reply; 3+ messages in thread
From: Cupertino Miranda @ 2023-11-13 22:36 UTC (permalink / raw)
  To: gcc-patches; +Cc: jose.marchesi, elena.zannoni, david.faust, Cupertino Miranda

gcc/ChangeLog:
	* config/bpf/core-builtins.cc (core_mark_as_access_index):
	Corrected check.
---
 gcc/config/bpf/core-builtins.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/bpf/core-builtins.cc b/gcc/config/bpf/core-builtins.cc
index 2ba78d7aed2e..1376c9309035 100644
--- a/gcc/config/bpf/core-builtins.cc
+++ b/gcc/config/bpf/core-builtins.cc
@@ -1611,7 +1611,7 @@ core_mark_as_access_index (tree expr)
       || TREE_CODE (expr) == INDIRECT_REF)
     expr = TREE_OPERAND (expr, 0);
 
-  if (bpf_enum_mappings->get (expr) == NULL)
+  if (core_access_index_map->get (expr) == NULL)
     core_access_index_map->put (expr, NULL_TREE);
 }
 
-- 
2.30.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-11-28 12:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-13 22:36 [PATCH] bpf: Corrected condition in core_mark_as_access_index Cupertino Miranda
2023-11-14 16:06 ` David Faust
2023-11-28 12:43   ` Cupertino Miranda

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).