[Bug tree-optimization/19049] not vectorizing a fortran loop

2015-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=19049 --- Comment #11 from Richard Biener --- Author: rguenth Date: Thu Oct 22 13:33:17 2015 New Revision: 229172 URL: https://gcc.gnu.org/viewcvs?rev=229172=gcc=rev Log: 2015-10-22 Richard Biener PR

[Bug tree-optimization/19049] not vectorizing a fortran loop

2015-10-22 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=19049 Richard Biener changed: What|Removed |Added Status|NEW |RESOLVED Known to work|

[Bug tree-optimization/19049] not vectorizing a fortran loop

2014-11-30 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=19049 --- Comment #10 from Andrew Pinski pinskia at gcc dot gnu.org --- We now get (at least on aarch64): t.f90:11:0: note: === vect_pattern_recog === t.f90:11:0: note: === vect_analyze_data_ref_accesses === t.f90:11:0: note: Detected single element

[Bug tree-optimization/19049] not vectorizing a fortran loop

2010-11-09 Thread tkoenig at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19049 Thomas Koenig tkoenig at gcc dot gnu.org changed: What|Removed |Added Last reconfirmed|2007-07-09 07:42:10 |2010-11-09

[Bug tree-optimization/19049] not vectorizing a fortran loop

2010-11-09 Thread irar at il dot ibm.com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19049 Ira Rosen irar at il dot ibm.com changed: What|Removed |Added Status|ASSIGNED|NEW

[Bug tree-optimization/19049] not vectorizing a fortran loop

2006-09-19 Thread irar at il dot ibm dot com
--- Comment #7 from irar at il dot ibm dot com 2006-09-19 07:29 --- Even though vectorization of strided accesses is already implemented in the autovect branch (and will be committed to the mainline 4.3), this case contains a store with a gap (store to a[i] without a store to a[i-1]),

[Bug tree-optimization/19049] not vectorizing a fortran loop

2005-07-26 Thread irar at il dot ibm dot com
--- Additional Comments From irar at il dot ibm dot com 2005-07-26 07:07 --- The data dependence issue was solved by this patch http://gcc.gnu.org/ml/gcc- patches/2005-07/msg01195.html (committed). However, this loop is still not vectorizable because of noncontinuous access. --

[Bug tree-optimization/19049] not vectorizing a fortran loop

2005-04-25 Thread irar at il dot ibm dot com
--- Additional Comments From irar at il dot ibm dot com 2005-04-25 09:58 --- The vectorizer fails to determine dependence between: (*a_38)[D.719_49] and (*a_38)[D.718_51], since it fails to determine that both of the data-refs have the same base, *a_38. This is already fixed in

[Bug tree-optimization/19049] not vectorizing a fortran loop

2005-04-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-04-02 00:16 --- pr19049.f:10: note: not vectorized: can't determine dependence between: (*a_38)[D.722_49] and (*a_38)[D.721_51] pr19049.f:10: note: bad data dependence. -- What|Removed