This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
What happens with __attribute__((vector_size(8))) short a = {1,-1};?
- From: Kazu Hirata <kazu at cs dot umass dot edu>
- To: gcc at gcc dot gnu dot org
- Date: Wed, 18 Jun 2003 13:39:55 -0400 (EDT)
- Subject: What happens with __attribute__((vector_size(8))) short a = {1,-1};?
Hi,
When the vector size and the amount of initialization do not match like
__attribute__((vector_size(8))) short a = {1, -1};
what is supposed to happen? Is the initialization assumed to be like so?
{1, -1, 0, 0}
Or left uninitialized? Or syntax error?
Thanks,
Kazu Hirata