[Bug tree-optimization/19126] Missed IV optimization (redundant instruction in loop)
pinskia at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Sat Apr 9 20:45:00 GMT 2005
------- Additional Comments From pinskia at gcc dot gnu dot org 2005-04-09 20:45 -------
This shows up a lot in fortran code like the following (and yes I copied this from some where and
reduced it):
SUBROUTINE d ( a, b, ndim )
IMPLICIT NONE
INTEGER, INTENT(IN) :: ndim
REAL,DIMENSION(ndim,ndim) :: a
REAL,DIMENSION(ndim,ndim) :: b
b(1,:) = a(2,:)
END SUBROUTINE d
--
What |Removed |Added
----------------------------------------------------------------------------
Last reconfirmed|2004-12-28 23:54:33 |2005-04-09 20:45:06
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19126
More information about the Gcc-bugs
mailing list