aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2006-01-04 09:07:09 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2006-01-04 09:07:09 +0100
commitee8960e55808aeeb4183ea07b3bad7f67fa6b640 (patch)
tree3cac5cc0fee67f928ce2528c8de83b7102ca5f10 /gcc/c-common.c
parent434eba35c00fe13a817a4f799e8b6b1fcb1f8065 (diff)
downloadgcc-ee8960e55808aeeb4183ea07b3bad7f67fa6b640.zip
gcc-ee8960e55808aeeb4183ea07b3bad7f67fa6b640.tar.gz
gcc-ee8960e55808aeeb4183ea07b3bad7f67fa6b640.tar.bz2
re PR c/25559 (Internal compiler error when specifying vector_size(2) of int)
PR c/25559 * c-common.c (handle_vector_size_attribute): Reject zero vector size as well as sizes not multiple of component size. * gcc.dg/pr25559.c: New test. From-SVN: r109316
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index b252345..76e9096 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -5199,6 +5199,18 @@ handle_vector_size_attribute (tree *node, tree name, tree args,
return NULL_TREE;
}
+ if (vecsize % tree_low_cst (TYPE_SIZE_UNIT (type), 1))
+ {
+ error ("vector size not an integral multiple of component size");
+ return NULL;
+ }
+
+ if (vecsize == 0)
+ {
+ error ("zero vector size");
+ return NULL;
+ }
+
/* Calculate how many units fit in the vector. */
nunits = vecsize / tree_low_cst (TYPE_SIZE_UNIT (type), 1);
if (nunits & (nunits - 1))