This is the mail archive of the gcc-help@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] | |
Hi,
I might be missing something simple and obvious, but I can't find out what :
I picked up gcc4.0 in the autovect-branch, compiled it successfully but can t make it vectorize anything.
int a[256], b[256], c[256];
foo () { int i; for (i=0; i<256; i++){ a[i] = b[i] + c[i]; } }
compiled with : "gcc -O2 -msse2 -ftree-vectorize -fdump-tree-vect-stats vecto.c".
I expect to see a "LOOP VECTORIZED." (or at least "not vectorized:"), but I have nothing...
- Devang
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |