I wrote:

      SUBROUTINE SUB(A, N)
      DIMENSION A(N)
      DO I = 1, N
         A(I) = I
      ENDDO
      END

Grrrrr .... Little Endian Machines - you got to love to hate them. This should of course be:

      SUBROUTINE SUB(A, N)
      INTEGER*8 I, N
      DIMENSION A(N)
      DO I = 1, N
         A(I) = I
      ENDDO
      END

To maximize the "runes" effect I've written this in all uppercase :-)

--
Toon Moene - e-mail: [EMAIL PROTECTED] - phone: +31 346 214290
Saturnushof 14, 3738 XG  Maartensdijk, The Netherlands
A maintainer of GNU Fortran 95: http://gcc.gnu.org/fortran/
My next laptop will have a crank
_______________________________________________
Beowulf mailing list, Beowulf@beowulf.org
To change your subscription (digest mode or unsubscribe) visit 
http://www.beowulf.org/mailman/listinfo/beowulf

Reply via email to