I used to coding with Fortran 95, therefore I am not so familiar with Fortran 77. I have a Fortran 77 code which includes the following section:
REAL*8 Xn, Xend
c Skip......
IF (Xn-Xend) 1, 7, 7
7 Xend = Xn
What is the function of IF (Xn-Xend) 1, 7, 7
? How can I rewrite it to Fortran 90/95 form?