------- Comment #2 from kargl at gcc dot gnu dot org 2006-12-14 03:28 ------- (In reply to comment #1) > Confirmed, reduced testcase: > IMPLICIT NONE > REAL, DIMENSION(2) :: ZXLON > WHERE(ZXLON < 0.0) > ZXLON(:) = 1 > END WHERE > END PROGRAM >
A work around is to not use the array section. That is, change "ZXLON(:) = 1" to "ZXLON = 1" -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30207