aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/match.h
diff options
context:
space:
mode:
authorJanus Weil <janus@gcc.gnu.org>2009-08-31 21:08:03 +0200
committerJanus Weil <janus@gcc.gnu.org>2009-08-31 21:08:03 +0200
commite74f1cc83c20eff2e1d0f9b3363075a1d7fd6a78 (patch)
treee381e09a17810c8b05f37fdbd76ea44cf8c23cb2 /gcc/fortran/match.h
parente2abde5f35ace69607e6664daa9765f50635ad1d (diff)
downloadgcc-e74f1cc83c20eff2e1d0f9b3363075a1d7fd6a78.zip
gcc-e74f1cc83c20eff2e1d0f9b3363075a1d7fd6a78.tar.gz
gcc-e74f1cc83c20eff2e1d0f9b3363075a1d7fd6a78.tar.bz2
re PR fortran/40940 ([F03] CLASS statement)
2009-08-31 Janus Weil <janus@gcc.gnu.org> Paul Thomas <pault@gcc.gnu.org> PR fortran/40940 * array.c (gfc_match_array_constructor): Rename gfc_match_type_spec. * decl.c (gfc_match_type_spec): Rename to gfc_match_decl_type_spec, and reject CLASS with -std=f95. (gfc_match_implicit, gfc_match_data_decl,gfc_match_prefix, match_procedure_interface): Rename gfc_match_type_spec. * gfortran.h (gfc_type_compatible): Add prototype. * match.h (gfc_match_type_spec): Rename to gfc_match_decl_type_spec. * match.c (match_intrinsic_typespec): Rename to match_type_spec, and add handling of derived types. (gfc_match_allocate): Rename match_intrinsic_typespec and check type compatibility of derived types. * symbol.c (gfc_type_compatible): New function to check if two types are compatible. 2009-08-31 Janus Weil <janus@gcc.gnu.org> PR fortran/40940 * gfortran.dg/allocate_derived_1.f90: New. * gfortran.dg/class_3.f03: New. Co-Authored-By: Paul Thomas <pault@gcc.gnu.org> From-SVN: r151244
Diffstat (limited to 'gcc/fortran/match.h')
-rw-r--r--gcc/fortran/match.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/match.h b/gcc/fortran/match.h
index b6c0924..196115c 100644
--- a/gcc/fortran/match.h
+++ b/gcc/fortran/match.h
@@ -138,7 +138,7 @@ match gfc_match_data (void);
match gfc_match_null (gfc_expr **);
match gfc_match_kind_spec (gfc_typespec *, bool);
match gfc_match_old_kind_spec (gfc_typespec *);
-match gfc_match_type_spec (gfc_typespec *, int);
+match gfc_match_decl_type_spec (gfc_typespec *, int);
match gfc_match_end (gfc_statement *);
match gfc_match_data_decl (void);