]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ada: Fix wrong access for qualified aggregate with storage model
authorEric Botcazou <ebotcazou@adacore.com>
Wed, 12 Apr 2023 17:18:24 +0000 (19:18 +0200)
committerMarc Poulhiès <poulhies@adacore.com>
Tue, 30 May 2023 07:12:18 +0000 (09:12 +0200)
The previous fix to get_storage_model_access was incomplete and needs to be
extended to the node itself.

gcc/ada/

* gcc-interface/trans.cc (get_storage_model_access): Also strip any
type conversion in the node when unwinding the components.

gcc/ada/gcc-interface/trans.cc

index 2e8d979831f3fda65939e040e468881313c5da82..ddc7b6dde1e90f201aa66350ea209e4d5f3cf6bc 100644 (file)
@@ -4438,12 +4438,15 @@ get_storage_model_access (Node_Id gnat_node, Entity_Id *gnat_smo)
          && Prefix (Parent (gnat_parent)) == gnat_parent))
     return;
 
-  /* Now strip any type conversion from GNAT_NODE.  */
+  /* Find the innermost prefix in GNAT_NODE, stripping any type conversion.  */
   if (node_is_type_conversion (gnat_node))
     gnat_node = Expression (gnat_node);
-
   while (node_is_component (gnat_node))
-    gnat_node = Prefix (gnat_node);
+    {
+      gnat_node = Prefix (gnat_node);
+      if (node_is_type_conversion (gnat_node))
+       gnat_node = Expression (gnat_node);
+    }
 
   *gnat_smo = get_storage_model (gnat_node);
 }