re PR fortran/49265 (Double colon in procedure-stmt (generic interface))
authorSteven G. Kargl <kargl@gcc.gnu.org>
Thu, 2 Jun 2011 17:39:11 +0000 (17:39 +0000)
committerSteven G. Kargl <kargl@gcc.gnu.org>
Thu, 2 Jun 2011 17:39:11 +0000 (17:39 +0000)
2011-06-02  Steven G. Kargl  <kargl@gcc.gnu.org>

PR fortran/49265
* decl.c (gfc_match_modproc):  Allow for a double colon in a module
procedure statement.
* parse.c ( decode_statement): Deal with whitespace around :: in
gfc_match_modproc.

2011-06-02  Steven G. Kargl  <kargl@gcc.gnu.org>

PR fortran/49265
* gfortran.dg/module_procedure_double_colon_1.f90: New test.
* gfortran.dg/module_procedure_double_colon_2.f90: New test.

From-SVN: r174569

gcc/fortran/ChangeLog
gcc/fortran/decl.c
gcc/fortran/parse.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/module_procedure_double_colon_1.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/module_procedure_double_colon_2.f90 [new file with mode: 0644]

index c24489bd48a12544064c5fe5ea0b8bfbdf3b74e1..e7b567e6337dabec8e6b1ae986827fa08f3a8e66 100644 (file)
@@ -1,3 +1,11 @@
+2011-06-02  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       PR fortran/49265
+       * decl.c (gfc_match_modproc):  Allow for a double colon in a module
+       procedure statement.
+       * parse.c ( decode_statement): Deal with whitespace around :: in
+       gfc_match_modproc.
 2011-05-31  Tobias Burnus  <burnus@net-b.de>
 
        PR fortran/18918
index e97168fbad2ccec1f156f3ce5404a3d230bad25f..f9141567450bf497d1d18e0dddb0fb254b8b74b3 100644 (file)
@@ -7016,6 +7016,7 @@ gfc_match_modproc (void)
   char name[GFC_MAX_SYMBOL_LEN + 1];
   gfc_symbol *sym;
   match m;
+  locus old_locus;
   gfc_namespace *module_ns;
   gfc_interface *old_interface_head, *interface;
 
@@ -7044,10 +7045,23 @@ gfc_match_modproc (void)
      end up with a syntax error and need to recover.  */
   old_interface_head = gfc_current_interface_head ();
 
+  /* Check if the F2008 optional double colon appears.  */
+  gfc_gobble_whitespace ();
+  old_locus = gfc_current_locus;
+  if (gfc_match ("::") == MATCH_YES)
+    {
+      if (gfc_notify_std (GFC_STD_F2008, "Fortran 2008: double colon in "
+                        "MODULE PROCEDURE statement at %L", &old_locus)
+         == FAILURE)
+       return MATCH_ERROR;
+    }
+  else
+    gfc_current_locus = old_locus;
+      
   for (;;)
     {
-      locus old_locus = gfc_current_locus;
       bool last = false;
+      old_locus = gfc_current_locus;
 
       m = gfc_match_name (name);
       if (m == MATCH_NO)
@@ -7059,6 +7073,7 @@ gfc_match_modproc (void)
         current namespace.  */
       if (gfc_match_eos () == MATCH_YES)
        last = true;
+
       if (!last && gfc_match_char (',') != MATCH_YES)
        goto syntax;
 
index 80fcf0014305501bccfaf7a21f1961e2a6f0069b..a47b4578169b91b3f85471d5c9b71c68a444404c 100644 (file)
@@ -399,7 +399,7 @@ decode_statement (void)
       break;
 
     case 'm':
-      match ("module% procedure", gfc_match_modproc, ST_MODULE_PROC);
+      match ("module% procedure", gfc_match_modproc, ST_MODULE_PROC);
       match ("module", gfc_match_module, ST_MODULE);
       break;
 
index 61d8fde64b8e3e28a033e2548242d20eaa8b84bd..18d03ed1479a42afb7f823ef145055b7b47b46f2 100644 (file)
@@ -1,3 +1,9 @@
+2011-06-02  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       PR fortran/49265
+       * gfortran.dg/module_procedure_double_colon_1.f90: New test.
+       * gfortran.dg/module_procedure_double_colon_2.f90: New test.
+
 2011-06-02  Eric Botcazou  <ebotcazou@adacore.com>
            Hans-Peter Nilsson  <hp@axis.com>
 
diff --git a/gcc/testsuite/gfortran.dg/module_procedure_double_colon_1.f90 b/gcc/testsuite/gfortran.dg/module_procedure_double_colon_1.f90
new file mode 100644 (file)
index 0000000..200f0ff
--- /dev/null
@@ -0,0 +1,23 @@
+! { dg-do compile }
+!
+! PR fortran/49265
+! Contributed by Erik Toussaint
+!
+module m1
+   implicit none
+   interface foo
+      module procedure::bar
+      module procedure ::bar_none
+      module procedure:: none_bar
+   end interface
+contains
+   subroutine bar
+   end subroutine
+   subroutine bar_none(i)
+     integer i
+   end subroutine
+   subroutine none_bar(x)
+     real x
+   end subroutine
+end module
+! { dg-final { cleanup-modules "m1" } }
diff --git a/gcc/testsuite/gfortran.dg/module_procedure_double_colon_2.f90 b/gcc/testsuite/gfortran.dg/module_procedure_double_colon_2.f90
new file mode 100644 (file)
index 0000000..9300215
--- /dev/null
@@ -0,0 +1,24 @@
+! { dg-do compile }
+! { dg-options "-std=f95" }
+!
+! PR fortran/49265
+! Contributed by Erik Toussaint
+!
+module m1
+   implicit none
+   interface foo
+      module procedure::bar       ! { dg-error "double colon" }
+      module procedure ::bar_none ! { dg-error "double colon" }
+      module procedure:: none_bar ! { dg-error "double colon" }
+   end interface
+contains
+   subroutine bar
+   end subroutine
+   subroutine bar_none(i)
+     integer i
+   end subroutine
+   subroutine none_bar(x)
+     real x
+   end subroutine
+end module
+! { dg-final { cleanup-modules "m1" } }