OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [namelist_4.f90] - Diff between revs 149 and 154

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
! { dg-do compile }
! { dg-do compile }
! This tests the fix for PR25089 in which it was noted that a
! This tests the fix for PR25089 in which it was noted that a
! NAMELIST member that is an internal(or module) procedure gave
! NAMELIST member that is an internal(or module) procedure gave
! no error if the NAMELIST declaration appeared before the
! no error if the NAMELIST declaration appeared before the
! procedure declaration. Not mentioned in the PR is that any
! procedure declaration. Not mentioned in the PR is that any
! reference to the NAMELIST object would cause a segfault.
! reference to the NAMELIST object would cause a segfault.
!
!
! Based on the contribution from Joost VanderVondele
! Based on the contribution from Joost VanderVondele
!
!
module M1
module M1
CONTAINS
CONTAINS
! This is the original PR
! This is the original PR
  INTEGER FUNCTION G1()
  INTEGER FUNCTION G1()
    NAMELIST /NML1/ G2 ! { dg-error "PROCEDURE attribute conflicts" }
    NAMELIST /NML1/ G2 ! { dg-error "PROCEDURE attribute conflicts" }
    G1=1
    G1=1
  END FUNCTION
  END FUNCTION
  INTEGER FUNCTION G2()
  INTEGER FUNCTION G2()
    G2=1
    G2=1
  END FUNCTION
  END FUNCTION
! This has always been picked up - namelist after function
! This has always been picked up - namelist after function
  INTEGER FUNCTION G3()
  INTEGER FUNCTION G3()
    NAMELIST /NML2/ G1 ! { dg-error "PROCEDURE attribute conflicts" }
    NAMELIST /NML2/ G1 ! { dg-error "PROCEDURE attribute conflicts" }
    G3=1
    G3=1
  END FUNCTION
  END FUNCTION
END module M1
END module M1
program P1
program P1
CONTAINS
CONTAINS
! This has the additional wrinkle of a reference to the object.
! This has the additional wrinkle of a reference to the object.
  INTEGER FUNCTION F1()
  INTEGER FUNCTION F1()
    NAMELIST /NML3/ F2 ! { dg-error "PROCEDURE attribute conflicts" }
    NAMELIST /NML3/ F2 ! { dg-error "PROCEDURE attribute conflicts" }
! Used to ICE here
! Used to ICE here
    f2 = 1             ! { dg-error "is not a VALUE" }
    f2 = 1             ! { dg-error "is not a VALUE" }
    F1=1
    F1=1
  END FUNCTION
  END FUNCTION
  INTEGER FUNCTION F2()
  INTEGER FUNCTION F2()
    F2=1
    F2=1
  END FUNCTION
  END FUNCTION
END
END
! { dg-final { cleanup-modules "M1" } }
! { dg-final { cleanup-modules "M1" } }
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.