]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR fortran/44929 ([OOP] Parsing error of derived type name starting with 'REAL')
authorJanus Weil <janus@gcc.gnu.org>
Fri, 30 Jul 2010 17:50:28 +0000 (19:50 +0200)
committerJanus Weil <janus@gcc.gnu.org>
Fri, 30 Jul 2010 17:50:28 +0000 (19:50 +0200)
2010-07-30  Janus Weil  <janus@gcc.gnu.org>
    Steven G. Kargl  <kargl@gcc.gnu.org>

PR fortran/44929
* match.c (match_type_spec): Try to parse derived types before
intrinsic types.

2010-07-30  Janus Weil  <janus@gcc.gnu.org>

PR fortran/44929
* gfortran.dg/allocate_derived_3.f90: New.

Co-Authored-By: Steven G. Kargl <kargl@gcc.gnu.org>
From-SVN: r162724

gcc/fortran/ChangeLog
gcc/fortran/match.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/allocate_derived_3.f90 [new file with mode: 0644]

index 04676ee38369e6638318cb162521b3da4a50ca28..bf7d4d19463e1c62dc9d6f00c051cf4106a2ac0b 100644 (file)
@@ -1,3 +1,10 @@
+2010-07-30  Janus Weil  <janus@gcc.gnu.org>
+           Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       PR fortran/44929
+       * match.c (match_type_spec): Try to parse derived types before
+       intrinsic types.
+
 2010-07-30  Mikael Morin  <mikael@gcc.gnu.org>
 
        * gfortran.h (gfc_release_symbol): New prototype.
index bd73929b8659d9f845e775acd49a98062ca098a4..a37a6798a8450054bace0879445e0380194e584e 100644 (file)
@@ -2709,7 +2709,7 @@ match_derived_type_spec (gfc_typespec *ts)
    gfc_match_decl_type_spec() from decl.c, with the following exceptions:
    It only includes the intrinsic types from the Fortran 2003 standard
    (thus, neither BYTE nor forms like REAL*4 are allowed). Additionally,
-   the implicit_flag is not needed, so it was removed.  Derived types are
+   the implicit_flag is not needed, so it was removed. Derived types are
    identified by their name alone.  */
 
 static match
@@ -2719,8 +2719,30 @@ match_type_spec (gfc_typespec *ts)
   locus old_locus;
 
   gfc_clear_ts (ts);
+  gfc_gobble_whitespace();
   old_locus = gfc_current_locus;
 
+  m = match_derived_type_spec (ts);
+  if (m == MATCH_YES)
+    {
+      old_locus = gfc_current_locus;
+      if (gfc_match (" :: ") != MATCH_YES)
+       return MATCH_ERROR;
+      gfc_current_locus = old_locus;
+      /* Enfore F03:C401.  */
+      if (ts->u.derived->attr.abstract)
+       {
+         gfc_error ("Derived type '%s' at %L may not be ABSTRACT",
+                    ts->u.derived->name, &old_locus);
+         return MATCH_ERROR;
+       }
+      return MATCH_YES;
+    }
+  else if (m == MATCH_ERROR && gfc_match (" :: ") == MATCH_YES)
+    return MATCH_ERROR;
+
+  gfc_current_locus = old_locus;
+
   if (gfc_match ("integer") == MATCH_YES)
     {
       ts->type = BT_INTEGER;
@@ -2762,25 +2784,6 @@ match_type_spec (gfc_typespec *ts)
       goto kind_selector;
     }
 
-  m = match_derived_type_spec (ts);
-  if (m == MATCH_YES)
-    {
-      old_locus = gfc_current_locus;
-      if (gfc_match (" :: ") != MATCH_YES)
-       return MATCH_ERROR;
-      gfc_current_locus = old_locus;
-      /* Enfore F03:C401.  */
-      if (ts->u.derived->attr.abstract)
-       {
-         gfc_error ("Derived type '%s' at %L may not be ABSTRACT",
-                    ts->u.derived->name, &old_locus);
-         return MATCH_ERROR;
-       }
-      return MATCH_YES;
-    }
-  else if (m == MATCH_ERROR && gfc_match (" :: ") == MATCH_YES)
-    return MATCH_ERROR;
-
   /* If a type is not matched, simply return MATCH_NO.  */
   gfc_current_locus = old_locus;
   return MATCH_NO;
index b410475887804e3fa925ea5ccad200b4178f8ad3..0a181e8d4c9fd17aa23f52f2292221db56dea10d 100644 (file)
@@ -1,3 +1,8 @@
+2010-07-30  Janus Weil  <janus@gcc.gnu.org>
+
+       PR fortran/44929
+       * gfortran.dg/allocate_derived_3.f90: New.
+
 2010-07-30  Xinliang David Li  <davidxl@google.com>
        PR tree-optimization/45121
        * c-c++-common/uninit-17.c: Add -fno-ivops option.
diff --git a/gcc/testsuite/gfortran.dg/allocate_derived_3.f90 b/gcc/testsuite/gfortran.dg/allocate_derived_3.f90
new file mode 100644 (file)
index 0000000..0cd1511
--- /dev/null
@@ -0,0 +1,17 @@
+! { dg-do compile }
+!
+! PR 44929: [OOP] Parsing error of derived type name starting with 'REAL'
+!
+! Contributed by Satish.BD <bdsatish@gmail.com>
+
+ type :: real_type
+ end type
+ class(real_type), allocatable :: obj
+ real(8), allocatable :: r8
+
+ allocate(real_type :: obj)
+
+ allocate( real(kind=8) :: r8)
+ allocate(real(8)  :: r8 )
+
+end