On 11/13/23 14:36, Cupertino Miranda wrote:
> gcc/ChangeLog:
>       * config/bpf/core-builtins.cc (core_mark_as_access_index):
>       Corrected check.

OK, thanks.

> ---
>  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);
>  }
>  

Reply via email to