]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR c++/55032 (Internal compiler error: in strip_typedefs, at cp/tree.c:1199)
authorJason Merrill <jason@redhat.com>
Fri, 7 Dec 2012 04:58:45 +0000 (23:58 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 7 Dec 2012 04:58:45 +0000 (23:58 -0500)
PR c++/55032
* tree.c (build_array_type_1): Re-layout if we found it in the
hash table.

From-SVN: r194286

gcc/ChangeLog
gcc/testsuite/g++.dg/template/array24.C [new file with mode: 0644]
gcc/tree.c

index 45e613e8ef851a276bf67234d386b19addd45447..80e72a9398849dfe2c23daf9f0d4f00c1a314acb 100644 (file)
@@ -1,3 +1,9 @@
+2012-12-06  Jason Merrill  <jason@redhat.com>
+
+       PR c++/55032
+       * tree.c (build_array_type_1): Re-layout if we found it in the
+       hash table.
+
 2012-12-05  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
 
        Backport for mainline:
diff --git a/gcc/testsuite/g++.dg/template/array24.C b/gcc/testsuite/g++.dg/template/array24.C
new file mode 100644 (file)
index 0000000..07879d2
--- /dev/null
@@ -0,0 +1,22 @@
+// PR c++/55032
+
+template<typename T>
+struct vec3t {
+  T c[3];
+};
+
+typedef vec3t<float> vec3;
+
+class Bounds {
+  public:
+    Bounds(const vec3 bb[2]);
+    void foo(const vec3 & v) { v.c[0]; }
+};
+
+template<typename T>
+void work(T& value);
+
+void foo() {
+  vec3 bb[2];
+  work(bb);
+}
index 83a07117fe8e41db1922d3e34033da8bf2da4c33..7a0ac82a3d10ac15ff9af77607386a73673ddeb2 100644 (file)
@@ -7282,10 +7282,15 @@ build_array_type_1 (tree elt_type, tree index_type, bool shared)
 
   if (shared)
     {
+      tree old_t = t;
       hashval_t hashcode = iterative_hash_object (TYPE_HASH (elt_type), 0);
       if (index_type)
        hashcode = iterative_hash_object (TYPE_HASH (index_type), hashcode);
       t = type_hash_canon (hashcode, t);
+      if (t != old_t)
+       /* Lay it out again in case the element type has been completed since
+          the array was added to the hash table.  */
+       layout_type (t);
     }
 
   if (TYPE_CANONICAL (t) == t)