re PR fortran/24545 (gfortran bug regarding interface block with named END INTERFACE statements)

PR fortran/24545
* interface.c (gfc_match_end_interface): Fix typo in INTERFACE_USER_OP case.

From-SVN: r105953
This commit is contained in:
Steven G. Kargl 2005-10-28 20:05:56 +00:00
parent dc5e5935a8
commit 9b46f94ffa
4 changed files with 41 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-10-28 Steven Bosscher <stevenb@suse.de>
PR fortran/24545
* interface.c (gfc_match_end_interface): Fix typo in
INTERFACE_USER_OP case.
2005-10-26 Francois-Xavier Coudert <coudert@clipper.ens.fr>
PR fortran/15586

View File

@ -295,7 +295,7 @@ gfc_match_end_interface (void)
/* Comparing the symbol node names is OK because only use-associated
symbols can be renamed. */
if (type != current_interface.type
|| strcmp (current_interface.sym->name, name) != 0)
|| strcmp (current_interface.uop->name, name) != 0)
{
gfc_error ("Expecting 'END INTERFACE OPERATOR (.%s.)' at %C",
current_interface.sym->name);

View File

@ -1,3 +1,8 @@
2005-10-28 Steven G. Kargl <kargls@comcast.net>
PR fortran/24545
* gfortran.dg/interface_2.f90: new test.
2005-10-28 Josh Conner <jconner@apple.com>
PR c++/22153

View File

@ -0,0 +1,29 @@
! { dg-do compile }
! PR fortran/24545
MODULE Compare_Float_Numbers
IMPLICIT NONE
INTERFACE Compare_Float
MODULE PROCEDURE Compare_Float_Single
END INTERFACE Compare_Float
INTERFACE OPERATOR (.EqualTo.)
MODULE PROCEDURE Is_Equal_To_Single
END INTERFACE OPERATOR (.EqualTo.)
CONTAINS
FUNCTION Is_Equal_To_Single(x, y) RESULT(Equal_To)
REAL(4), INTENT(IN) :: x, y
LOGICAL :: Equal_To
Equal_To = .true.
END FUNCTION Is_Equal_To_Single
FUNCTION Compare_Float_Single(x, y) RESULT(Compare)
REAL(4), INTENT(IN) :: x, y
LOGICAL :: Compare
Compare = .true.
END FUNCTION Compare_Float_Single
END MODULE Compare_Float_Numbers