blob: e7a2e43973c0a9359b5cb592d69b1c195cf4a291 [file] [log] [blame]
! Check that nested DO loop doesn't affect refactoring
! behavior. Select inner DO loop - DOUBLE data type
! and decrement behavior - explicit step count.
PROGRAM NestedDoDoubleInnerDecrement
DOUBLE PRECISION :: counter, sum, counterin, sumin
sum = 0.0
sumin = 0.0
DO counter = 1.2, 1.8, 0.1
sum = sum + counter
DO counterin = 1.8, 1.2, 0.1 !<<<<< 11, 5, 11, 33, 0, pass
sumin = sumin + counterin
END DO
END DO
PRINT *, sum
END PROGRAM NestedDoDoubleInnerDecrement