diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-24 23:00:32 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-24 23:00:32 +0000 |
commit | 8b3aba7564ba4067431cf2051ef3dfd8b1ca3b7c (patch) | |
tree | bbec7fe2a3bcff7f011bc79b747629c448663624 /gcc/varasm.c | |
parent | c9222242ab7d0dbad639e558ec51e69750ae23b9 (diff) | |
download | gcc-8b3aba7564ba4067431cf2051ef3dfd8b1ca3b7c.tar.gz |
* varasm.c (struct rtx_const): Array size 16 for V16QImode.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58509 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index e2d5f3a9a6c..1cce00d102f 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -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]; |