This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
#define vector __attribute__((vector_size(16) ))
vector int f(vector int, vector unsigned int);
int g(void) { vector int t; vector int t1; vector unsigned int t2; t2 = f(t,t1); }
t.c:10: error: incompatible type for argument 2 of `f' t.c:10: error: incompatible types in assignment
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |