[Bug middle-end/38012] vectorizer ignores 'restrict'

2009-06-25 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2009-06-25 11:19 --- double* __restrict__ va; const double* __restrict__ vb; for(unsigned i=0; ia.size(); i++) { va = a[i]; vb = b[i]; (*va) = (*vb) *coef; } this only says that a[i] and b[i] do not alias in one

[Bug middle-end/38012] vectorizer ignores 'restrict'

2008-11-04 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2008-11-04 16:10 --- restrict support is only roughly implemented. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added