Ignore:
Timestamp:
Jul 19, 2024, 4:15:44 PM (13 months ago)
Author:
abarral
Message:

Commit linked to correcting relevant warnings during gfortran compilation

[minor]
Correct remnants of fixed-form "+" in massbarxy.F90
Correct COMMON alignment in clesphys.h, flux_arp.h, cv*param.h, YOECUMF.h, alpale.h
Correct obsolete logical operators
Restrict use of iso_fortran_env in nf95_abort.f90
Remove redundant save in module declarations
Remove <continue> without labels
Fix nonstandard kind selectors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/misc/cray.F

    r1907 r5081  
    1515      iy=1
    1616      ix=1
    17       do 10 i=1,n
     17      DO i=1,n
    1818         sy(iy)=sx(ix)
    1919         ix=ix+incx
    2020         iy=iy+incy
    21 10    continue
     21      END DO
    2222c
    2323      return
     
    3333      ssum=0.
    3434      ix=1
    35       do 10 i=1,n
     35      do i=1,n
    3636         ssum=ssum+sx(ix)
    3737         ix=ix+incx
    38 10    continue
     38      end do
    3939c
    4040      return
Note: See TracChangeset for help on using the changeset viewer.