re PR c/68162 (Incompatible pointer type using a typedef)
authorRichard Biener <rguenther@suse.de>
Mon, 30 Nov 2015 08:24:06 +0000 (08:24 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Mon, 30 Nov 2015 08:24:06 +0000 (08:24 +0000)
2015-11-30  Richard Biener  <rguenther@suse.de>

PR c/68162
* dwarf2out.c (gen_type_die_with_usage): Keep variant types
of arrays.

From-SVN: r231058

gcc/ChangeLog
gcc/dwarf2out.c

index 3b93648f7867de7b7f4306269c482bbf98ce3757..cbd30008e54a87a08df5dce97dba74435e21c4cd 100644 (file)
@@ -1,3 +1,9 @@
+2015-11-30  Richard Biener  <rguenther@suse.de>
+
+       PR c/68162
+       * dwarf2out.c (gen_type_die_with_usage): Keep variant types
+       of arrays.
+
 2015-11-30  Venkataramanan Kumar  <Venkataramanan.Kumar@amd.com>
 
        * tree-if-conv.c (struct ifc_dr): Add new tree
index add22045377fb1f00eee38e800d35f6ef92ea9cb..357f1148ede648626adf588c9da0b18e40b9f099 100644 (file)
@@ -20798,9 +20798,10 @@ gen_type_die_with_usage (tree type, dw_die_ref context_die,
   /* We are going to output a DIE to represent the unqualified version
      of this type (i.e. without any const or volatile qualifiers) so
      get the main variant (i.e. the unqualified version) of this type
-     now.  (Vectors are special because the debugging info is in the
+     now.  (Vectors and arrays are special because the debugging info is in the
      cloned type itself).  */
-  if (TREE_CODE (type) != VECTOR_TYPE)
+  if (TREE_CODE (type) != VECTOR_TYPE
+      && TREE_CODE (type) != ARRAY_TYPE)
     type = type_main_variant (type);
 
   /* If this is an array type with hidden descriptor, handle it first.  */