* varasm.c (struct rtx_const): Array size 16 for V16QImode.
authorIgor Shevlyakov <igor@microunity.com>
Thu, 24 Oct 2002 23:00:32 +0000 (23:00 +0000)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 24 Oct 2002 23:00:32 +0000 (16:00 -0700)
From-SVN: r58509

gcc/ChangeLog
gcc/varasm.c

index 72006a2ee5f68384463f5f17ab43b0f4facce0d7..5495ed8917b232bc8ff89dc817aea5dc2f39bd0e 100644 (file)
@@ -1,3 +1,7 @@
+2002-10-24  Igor Shevlyakov <igor@microunity.com>
+
+        * varasm.c (struct rtx_const): Array size 16 for V16QImode.
+
 2002-10-24  Richard Henderson  <rth@redhat.com>
 
        * config/i386/i386.c (x86_output_mi_thunk): Fix x86_64 pic jump.
index e2d5f3a9a6ce7dd8baf8aa34dded06a22d010362..1cce00d102f99de8b7944b37c08863ccb3693f0b 100644 (file)
@@ -2169,12 +2169,12 @@ struct rtx_const GTY(())
       HOST_WIDE_INT low;
     } GTY ((tag ("0"))) di;
 
-    /* The max vector size we have is 8 wide; two variants for
+    /* The max vector size we have is 16 wide; two variants for
        integral and floating point vectors.  */
     struct rtx_const_int_vec {
       HOST_WIDE_INT high;
       HOST_WIDE_INT low;
-    } GTY ((tag ("2"))) int_vec[8];
+    } GTY ((tag ("2"))) int_vec[16];
 
     REAL_VALUE_TYPE GTY ((tag ("3"))) fp_vec[8];