[mod.computers.vax] VMS Fortran V4.2-102 Bug

dean@A.PSY.CMU.EDU (randall w. dean) (03/06/86)

The following piece of code will cause the fortran compiler under VMS
to abort abnormally.

	subroutine foo
	do i=1,10,sign(1,j)
	enddo
	return
	end

This works though

	subroutine foo
	k=sign(i,j)
	do i=1,10,k
	enddo
	return
	end

Nice Huh?

Randall W. Dean
Dean@a.psy.cmu.edu