Commit ee8960e5 by Jakub Jelinek Committed by Jakub Jelinek

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
parent 434eba35
2006-01-04 Jakub Jelinek <jakub@redhat.com>
PR c/25559
* c-common.c (handle_vector_size_attribute): Reject zero vector size
as well as sizes not multiple of component size.
PR debug/25562
* function.c (instantiate_expr): New function.
(instantiate_decls_1, instantiate_decls): If DECL_HAS_VALUE_EXPR_P,
......
......@@ -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))
......
2006-01-04 Jakub Jelinek <jakub@redhat.com>
PR c/25559
* gcc.dg/pr25559.c: New test.
2006-01-03 Mark Mitchell <mark@codesourcery.com>
PR c++/25492
/* PR c/25559 */
/* { dg-do compile } */
#define vs(n) __attribute__((vector_size (n)))
int vs (-1) a; /* { dg-warning "attribute ignored" } */
int vs (0) b; /* { dg-error "zero vector size" } */
int vs (1) c; /* { dg-error "multiple of component size" } */
int vs (sizeof (int) / 2) d; /* { dg-error "multiple of component size" } */
int vs (sizeof (int)) e;
int vs (sizeof (int) * 2) f;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment