Fix small fallout of earlier change
authorEric Botcazou <ebotcazou@gcc.gnu.org>
Mon, 25 May 2020 08:32:21 +0000 (10:32 +0200)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Mon, 25 May 2020 08:32:21 +0000 (10:32 +0200)
gcc/ada/ChangeLog
* gcc-interface/misc.c (get_array_bit_stride): Get to the debug type,
if any, before calling gnat_get_array_descr_info.

gcc/ada/ChangeLog
gcc/ada/gcc-interface/misc.c

index 769728af854260b41f33bdcf9aa6de2420c67f76..d2020b8894c0e6021d443a58056440771b84a34c 100644 (file)
@@ -1,3 +1,8 @@
+2020-05-25  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gcc-interface/misc.c (get_array_bit_stride): Get to the debug type,
+       if any, before calling gnat_get_array_descr_info.
+
 2020-05-25  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gcc-interface/decl.c (gnat_to_gnu_entity) <E_Record_Type>: Tidy up.
index 5a5850a85e043829a4abd66d50f7d65e3e9eacec..f8fa856316168e6cea0213d4b05e37831036cecc 100644 (file)
@@ -1003,6 +1003,9 @@ get_array_bit_stride (tree comp_type)
   if (INTEGRAL_TYPE_P (comp_type))
     return TYPE_RM_SIZE (comp_type);
 
+  /* The gnat_get_array_descr_info debug hook expects a debug tyoe.  */
+  comp_type = maybe_debug_type (comp_type);
+
   /* Otherwise, see if this is an array we can analyze; if it's not, punt.  */
   memset (&info, 0, sizeof (info));
   if (!gnat_get_array_descr_info (comp_type, &info) || !info.stride)