Blame SOURCES/gcc12-fortran-fdec-override-kind.patch

0fe1ac
From 786869fd62813e80da9b6545a295d53c36275c19 Mon Sep 17 00:00:00 2001
0fe1ac
From: Mark Eggleston <markeggleston@gcc.gnu.org>
0fe1ac
Date: Fri, 22 Jan 2021 13:12:14 +0000
0fe1ac
Subject: [PATCH 06/10] Allow string length and kind to be specified on a per
0fe1ac
 variable basis.
0fe1ac
0fe1ac
This allows kind/length to be mixed with array specification in
0fe1ac
declarations.
0fe1ac
0fe1ac
e.g.
0fe1ac
0fe1ac
      INTEGER*4 x*2, y*8
0fe1ac
      CHARACTER names*20(10)
0fe1ac
      REAL v(100)*8, vv*4(50)
0fe1ac
0fe1ac
The per-variable size overrides the kind or length specified for the type.
0fe1ac
0fe1ac
Use -fdec-override-kind to enable. Also enabled by -fdec.
0fe1ac
0fe1ac
Note: this feature is a merger of two previously separate features.
0fe1ac
0fe1ac
Now accepts named constants as kind parameters:
0fe1ac
0fe1ac
      INTEGER A
0fe1ac
      PARAMETER (A=2)
0fe1ac
      INTEGER B*(A)
0fe1ac
0fe1ac
Contributed by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
0fe1ac
Now rejects invalid kind parameters and prints error messages:
0fe1ac
0fe1ac
      INTEGER X*3
0fe1ac
0fe1ac
caused an internal compiler error.
0fe1ac
0fe1ac
Contributed by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
---
0fe1ac
 gcc/fortran/decl.cc                           | 156 ++++++++++++++----
0fe1ac
 gcc/fortran/lang.opt                          |   4 +
0fe1ac
 gcc/fortran/options.cc                        |   1 +
0fe1ac
 .../dec_mixed_char_array_declaration_1.f      |  13 ++
0fe1ac
 .../dec_mixed_char_array_declaration_2.f      |  13 ++
0fe1ac
 .../dec_mixed_char_array_declaration_3.f      |  13 ++
0fe1ac
 .../gfortran.dg/dec_spec_in_variable_1.f      |  31 ++++
0fe1ac
 .../gfortran.dg/dec_spec_in_variable_2.f      |  31 ++++
0fe1ac
 .../gfortran.dg/dec_spec_in_variable_3.f      |  31 ++++
0fe1ac
 .../gfortran.dg/dec_spec_in_variable_4.f      |  14 ++
0fe1ac
 .../gfortran.dg/dec_spec_in_variable_5.f      |  19 +++
0fe1ac
 .../gfortran.dg/dec_spec_in_variable_6.f      |  19 +++
0fe1ac
 .../gfortran.dg/dec_spec_in_variable_7.f      |  15 ++
0fe1ac
 .../gfortran.dg/dec_spec_in_variable_8.f      |  14 ++
0fe1ac
 14 files changed, 340 insertions(+), 34 deletions(-)
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_1.f
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_2.f
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_3.f
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_spec_in_variable_1.f
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_spec_in_variable_2.f
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_spec_in_variable_3.f
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_spec_in_variable_4.f
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_spec_in_variable_5.f
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_spec_in_variable_6.f
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_spec_in_variable_7.f
0fe1ac
 create mode 100644 gcc/testsuite/gfortran.dg/dec_spec_in_variable_8.f
0fe1ac
0fe1ac
diff --git a/gcc/fortran/decl.cc b/gcc/fortran/decl.cc
0fe1ac
index 5c8c1b7981b..f7dc9d8263d 100644
0fe1ac
--- a/gcc/fortran/decl.cc
0fe1ac
+++ b/gcc/fortran/decl.cc
0fe1ac
@@ -1213,6 +1213,54 @@ syntax:
0fe1ac
   return MATCH_ERROR;
0fe1ac
 }
0fe1ac
 
0fe1ac
+/* This matches the nonstandard kind given after a variable name, like:
0fe1ac
+   INTEGER x*2, y*4
0fe1ac
+   The per-variable kind will override any kind given in the type
0fe1ac
+   declaration.
0fe1ac
+*/
0fe1ac
+
0fe1ac
+static match
0fe1ac
+match_per_symbol_kind (int *length)
0fe1ac
+{
0fe1ac
+  match m;
0fe1ac
+  gfc_expr *expr = NULL;
0fe1ac
+
0fe1ac
+  m = gfc_match_char ('*');
0fe1ac
+  if (m != MATCH_YES)
0fe1ac
+    return m;
0fe1ac
+
0fe1ac
+  m = gfc_match_small_literal_int (length, NULL);
0fe1ac
+  if (m == MATCH_YES || m == MATCH_ERROR)
0fe1ac
+    return m;
0fe1ac
+
0fe1ac
+  if (gfc_match_char ('(') == MATCH_NO)
0fe1ac
+    return MATCH_ERROR;
0fe1ac
+
0fe1ac
+  m = gfc_match_expr (&expr;;
0fe1ac
+  if (m == MATCH_YES)
0fe1ac
+    {
0fe1ac
+      m = MATCH_ERROR; // Assume error
0fe1ac
+      if (gfc_expr_check_typed (expr, gfc_current_ns, false))
0fe1ac
+	{
0fe1ac
+	  if ((expr->expr_type == EXPR_CONSTANT)
0fe1ac
+	      && (expr->ts.type == BT_INTEGER))
0fe1ac
+	    {
0fe1ac
+	      *length = mpz_get_si(expr->value.integer);
0fe1ac
+	      m = MATCH_YES;
0fe1ac
+	    }
0fe1ac
+	}
0fe1ac
+
0fe1ac
+	if (m == MATCH_YES)
0fe1ac
+	  {
0fe1ac
+	    if (gfc_match_char (')') == MATCH_NO)
0fe1ac
+	       m = MATCH_ERROR;
0fe1ac
+  }
0fe1ac
+     }
0fe1ac
+
0fe1ac
+  if (expr != NULL)
0fe1ac
+     gfc_free_expr (expr);
0fe1ac
+  return m;
0fe1ac
+}
0fe1ac
 
0fe1ac
 /* Special subroutine for finding a symbol.  Check if the name is found
0fe1ac
    in the current name space.  If not, and we're compiling a function or
0fe1ac
@@ -2443,6 +2491,35 @@ check_function_name (char *name)
0fe1ac
 }
0fe1ac
 
0fe1ac
 
0fe1ac
+static match
0fe1ac
+match_character_length_clause (gfc_charlen **cl, bool *cl_deferred, int elem)
0fe1ac
+{
0fe1ac
+  gfc_expr* char_len;
0fe1ac
+  char_len = NULL;
0fe1ac
+
0fe1ac
+  match m = match_char_length (&char_len, cl_deferred, false);
0fe1ac
+  if (m == MATCH_YES)
0fe1ac
+    {
0fe1ac
+      *cl = gfc_new_charlen (gfc_current_ns, NULL);
0fe1ac
+      (*cl)->length = char_len;
0fe1ac
+    }
0fe1ac
+  else if (m == MATCH_NO)
0fe1ac
+    {
0fe1ac
+      if (elem > 1
0fe1ac
+	  && (current_ts.u.cl->length == NULL
0fe1ac
+	      || current_ts.u.cl->length->expr_type != EXPR_CONSTANT))
0fe1ac
+	{
0fe1ac
+	  *cl = gfc_new_charlen (gfc_current_ns, NULL);
0fe1ac
+	  (*cl)->length = gfc_copy_expr (current_ts.u.cl->length);
0fe1ac
+	}
0fe1ac
+      else
0fe1ac
+      *cl = current_ts.u.cl;
0fe1ac
+
0fe1ac
+      *cl_deferred = current_ts.deferred;
0fe1ac
+    }
0fe1ac
+  return m;
0fe1ac
+}
0fe1ac
+
0fe1ac
 /* Match a variable name with an optional initializer.  When this
0fe1ac
    subroutine is called, a variable is expected to be parsed next.
0fe1ac
    Depending on what is happening at the moment, updates either the
0fe1ac
@@ -2453,7 +2530,7 @@ variable_decl (int elem)
0fe1ac
 {
0fe1ac
   char name[GFC_MAX_SYMBOL_LEN + 1];
0fe1ac
   static unsigned int fill_id = 0;
0fe1ac
-  gfc_expr *initializer, *char_len;
0fe1ac
+  gfc_expr *initializer;
0fe1ac
   gfc_array_spec *as;
0fe1ac
   gfc_array_spec *cp_as; /* Extra copy for Cray Pointees.  */
0fe1ac
   gfc_charlen *cl;
0fe1ac
@@ -2462,11 +2539,15 @@ variable_decl (int elem)
0fe1ac
   match m;
0fe1ac
   bool t;
0fe1ac
   gfc_symbol *sym;
0fe1ac
+  match cl_match;
0fe1ac
+  match kind_match;
0fe1ac
+  int overridden_kind;
0fe1ac
   char c;
0fe1ac
 
0fe1ac
   initializer = NULL;
0fe1ac
   as = NULL;
0fe1ac
   cp_as = NULL;
0fe1ac
+  kind_match = MATCH_NO;
0fe1ac
 
0fe1ac
   /* When we get here, we've just matched a list of attributes and
0fe1ac
      maybe a type and a double colon.  The next thing we expect to see
0fe1ac
@@ -2519,6 +2600,28 @@ variable_decl (int elem)
0fe1ac
 
0fe1ac
   var_locus = gfc_current_locus;
0fe1ac
 
0fe1ac
+
0fe1ac
+  cl = NULL;
0fe1ac
+  cl_deferred = false;
0fe1ac
+  cl_match = MATCH_NO;
0fe1ac
+
0fe1ac
+  /* Check for a character length clause before an array clause */
0fe1ac
+  if (flag_dec_override_kind)
0fe1ac
+    {
0fe1ac
+      if (current_ts.type == BT_CHARACTER)
0fe1ac
+	{
0fe1ac
+	  cl_match = match_character_length_clause (&cl, &cl_deferred, elem);
0fe1ac
+	  if (cl_match == MATCH_ERROR)
0fe1ac
+	    goto cleanup;
0fe1ac
+	}
0fe1ac
+      else
0fe1ac
+	{
0fe1ac
+	  kind_match = match_per_symbol_kind (&overridden_kind);
0fe1ac
+	  if (kind_match == MATCH_ERROR)
0fe1ac
+	    goto cleanup;
0fe1ac
+	}
0fe1ac
+    }
0fe1ac
+
0fe1ac
   /* Now we could see the optional array spec. or character length.  */
0fe1ac
   m = gfc_match_array_spec (&as, true, true);
0fe1ac
   if (m == MATCH_ERROR)
0fe1ac
@@ -2667,40 +2770,12 @@ variable_decl (int elem)
0fe1ac
 	}
0fe1ac
     }
0fe1ac
 
0fe1ac
-  char_len = NULL;
0fe1ac
-  cl = NULL;
0fe1ac
-  cl_deferred = false;
0fe1ac
-
0fe1ac
-  if (current_ts.type == BT_CHARACTER)
0fe1ac
+  /* Second chance for a character length clause */
0fe1ac
+  if (cl_match == MATCH_NO && current_ts.type == BT_CHARACTER)
0fe1ac
     {
0fe1ac
-      switch (match_char_length (&char_len, &cl_deferred, false))
0fe1ac
-	{
0fe1ac
-	case MATCH_YES:
0fe1ac
-	  cl = gfc_new_charlen (gfc_current_ns, NULL);
0fe1ac
-
0fe1ac
-	  cl->length = char_len;
0fe1ac
-	  break;
0fe1ac
-
0fe1ac
-	/* Non-constant lengths need to be copied after the first
0fe1ac
-	   element.  Also copy assumed lengths.  */
0fe1ac
-	case MATCH_NO:
0fe1ac
-	  if (elem > 1
0fe1ac
-	      && (current_ts.u.cl->length == NULL
0fe1ac
-		  || current_ts.u.cl->length->expr_type != EXPR_CONSTANT))
0fe1ac
-	    {
0fe1ac
-	      cl = gfc_new_charlen (gfc_current_ns, NULL);
0fe1ac
-	      cl->length = gfc_copy_expr (current_ts.u.cl->length);
0fe1ac
-	    }
0fe1ac
-	  else
0fe1ac
-	    cl = current_ts.u.cl;
0fe1ac
-
0fe1ac
-	  cl_deferred = current_ts.deferred;
0fe1ac
-
0fe1ac
-	  break;
0fe1ac
-
0fe1ac
-	case MATCH_ERROR:
0fe1ac
-	  goto cleanup;
0fe1ac
-	}
0fe1ac
+      m = match_character_length_clause (&cl, &cl_deferred, elem);
0fe1ac
+      if (m == MATCH_ERROR)
0fe1ac
+	goto cleanup;
0fe1ac
     }
0fe1ac
 
0fe1ac
   /* The dummy arguments and result of the abreviated form of MODULE
0fe1ac
@@ -2802,6 +2877,19 @@ variable_decl (int elem)
0fe1ac
       goto cleanup;
0fe1ac
     }
0fe1ac
 
0fe1ac
+  if (kind_match == MATCH_YES)
0fe1ac
+    {
0fe1ac
+      gfc_find_symbol (name, gfc_current_ns, 1, &sym);
0fe1ac
+      /* sym *must* be found at this point */
0fe1ac
+      sym->ts.kind = overridden_kind;
0fe1ac
+      if (gfc_validate_kind (sym->ts.type, sym->ts.kind, true) < 0)
0fe1ac
+	{
0fe1ac
+	  gfc_error ("Kind %d not supported for type %s at %C",
0fe1ac
+		     sym->ts.kind, gfc_basic_typename (sym->ts.type));
0fe1ac
+	  return MATCH_ERROR;
0fe1ac
+	}
0fe1ac
+    }
0fe1ac
+
0fe1ac
   if (!check_function_name (name))
0fe1ac
     {
0fe1ac
       m = MATCH_ERROR;
0fe1ac
diff --git a/gcc/fortran/lang.opt b/gcc/fortran/lang.opt
0fe1ac
index 25cc948699b..4a269ebb22d 100644
0fe1ac
--- a/gcc/fortran/lang.opt
0fe1ac
+++ b/gcc/fortran/lang.opt
0fe1ac
@@ -502,6 +502,10 @@ fdec-math
0fe1ac
 Fortran Var(flag_dec_math)
0fe1ac
 Enable legacy math intrinsics for compatibility.
0fe1ac
 
0fe1ac
+fdec-override-kind
0fe1ac
+Fortran Var(flag_dec_override_kind)
0fe1ac
+Enable support for per variable kind specification.
0fe1ac
+
0fe1ac
 fdec-structure
0fe1ac
 Fortran Var(flag_dec_structure)
0fe1ac
 Enable support for DEC STRUCTURE/RECORD.
0fe1ac
diff --git a/gcc/fortran/options.cc b/gcc/fortran/options.cc
0fe1ac
index d6bd36c3a8a..edbab483b36 100644
0fe1ac
--- a/gcc/fortran/options.cc
0fe1ac
+++ b/gcc/fortran/options.cc
0fe1ac
@@ -78,6 +78,7 @@ set_dec_flags (int value)
0fe1ac
   SET_BITFLAG (flag_dec_blank_format_item, value, value);
0fe1ac
   SET_BITFLAG (flag_dec_char_conversions, value, value);
0fe1ac
   SET_BITFLAG (flag_dec_duplicates, value, value);
0fe1ac
+  SET_BITFLAG (flag_dec_override_kind, value, value);
0fe1ac
 }
0fe1ac
 
0fe1ac
 /* Finalize DEC flags.  */
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_1.f b/gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_1.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..706ea4112a4
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_1.f
0fe1ac
@@ -0,0 +1,13 @@
0fe1ac
+! { dg-do run }
0fe1ac
+! { dg-options "-fdec" }
0fe1ac
+!
0fe1ac
+! Test character declaration with mixed string length and array specification
0fe1ac
+!
0fe1ac
+! Contributed by Jim MacArthur <jim.macarthur@codethink.co.uk>
0fe1ac
+! Modified by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+       PROGRAM character_declaration
0fe1ac
+          CHARACTER ASPEC_SLENGTH*2 (5) /'01','02','03','04','05'/
0fe1ac
+          CHARACTER SLENGTH_ASPEC(5)*2 /'01','02','03','04','05'/
0fe1ac
+          if (ASPEC_SLENGTH(3).NE.SLENGTH_ASPEC(3)) STOP 1
0fe1ac
+        END
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_2.f b/gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_2.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..26d2acf01de
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_2.f
0fe1ac
@@ -0,0 +1,13 @@
0fe1ac
+! { dg-do run }
0fe1ac
+! { dg-options "-fdec-override-kind" }
0fe1ac
+!
0fe1ac
+! Test character declaration with mixed string length and array specification
0fe1ac
+!
0fe1ac
+! Contributed by Jim MacArthur <jim.macarthur@codethink.co.uk>
0fe1ac
+! Modified by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+        PROGRAM character_declaration
0fe1ac
+          CHARACTER ASPEC_SLENGTH*2 (5) /'01','02','03','04','05'/
0fe1ac
+          CHARACTER SLENGTH_ASPEC(5)*2 /'01','02','03','04','05'/
0fe1ac
+          if (ASPEC_SLENGTH(3).NE.SLENGTH_ASPEC(3)) STOP 1
0fe1ac
+        END
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_3.f b/gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_3.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..76e4f0bdb93
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_mixed_char_array_declaration_3.f
0fe1ac
@@ -0,0 +1,13 @@
0fe1ac
+! { dg-do compile }
0fe1ac
+! { dg-options "-fdec-override-kind -fno-dec-override-kind" }
0fe1ac
+!
0fe1ac
+! Test character declaration with mixed string length and array specification
0fe1ac
+!
0fe1ac
+! Contributed by Jim MacArthur <jim.macarthur@codethink.co.uk>
0fe1ac
+! Modified by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+        PROGRAM character_declaration
0fe1ac
+          CHARACTER ASPEC_SLENGTH*2 (5) /'01','02','03','04','05'/ ! { dg-error "Syntax error" }
0fe1ac
+          CHARACTER SLENGTH_ASPEC(5)*2 /'01','02','03','04','05'/
0fe1ac
+          if (ASPEC_SLENGTH(3).NE.SLENGTH_ASPEC(3)) STOP 1 ! { dg-error " Operands of comparison operator" }
0fe1ac
+        END
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_spec_in_variable_1.f b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_1.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..edd0f5874b7
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_1.f
0fe1ac
@@ -0,0 +1,31 @@
0fe1ac
+! { dg-do run }
0fe1ac
+! { dg-options "-fdec" }
0fe1ac
+!
0fe1ac
+! Test kind specification in variable not in type
0fe1ac
+!
0fe1ac
+! Contributed by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+        program spec_in_var
0fe1ac
+          integer*8  ai*1, bi*4, ci
0fe1ac
+          real*4 ar*4, br*8, cr
0fe1ac
+
0fe1ac
+          ai = 1
0fe1ac
+          ar = 1.0
0fe1ac
+          bi = 2
0fe1ac
+          br = 2.0
0fe1ac
+          ci = 3
0fe1ac
+          cr = 3.0
0fe1ac
+
0fe1ac
+          if (ai .ne. 1) stop 1
0fe1ac
+          if (abs(ar - 1.0) > 1.0D-6) stop 2
0fe1ac
+          if (bi .ne. 2) stop 3
0fe1ac
+          if (abs(br - 2.0) > 1.0D-6) stop 4
0fe1ac
+          if (ci .ne. 3) stop 5
0fe1ac
+          if (abs(cr - 3.0) > 1.0D-6) stop 6
0fe1ac
+          if (kind(ai) .ne. 1) stop 7
0fe1ac
+          if (kind(ar) .ne. 4) stop 8
0fe1ac
+          if (kind(bi) .ne. 4) stop 9
0fe1ac
+          if (kind(br) .ne. 8) stop 10
0fe1ac
+          if (kind(ci) .ne. 8) stop 11
0fe1ac
+          if (kind(cr) .ne. 4) stop 12
0fe1ac
+        end
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_spec_in_variable_2.f b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_2.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..bfaba584dbb
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_2.f
0fe1ac
@@ -0,0 +1,31 @@
0fe1ac
+! { dg-do run }
0fe1ac
+! { dg-options "-fdec-override-kind" }
0fe1ac
+!
0fe1ac
+! Test kind specification in variable not in type
0fe1ac
+!
0fe1ac
+! Contributed by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+        program spec_in_var
0fe1ac
+          integer*8  ai*1, bi*4, ci
0fe1ac
+          real*4 ar*4, br*8, cr
0fe1ac
+
0fe1ac
+          ai = 1
0fe1ac
+          ar = 1.0
0fe1ac
+          bi = 2
0fe1ac
+          br = 2.0
0fe1ac
+          ci = 3
0fe1ac
+          cr = 3.0
0fe1ac
+
0fe1ac
+          if (ai .ne. 1) stop 1
0fe1ac
+          if (abs(ar - 1.0) > 1.0D-6) stop 2
0fe1ac
+          if (bi .ne. 2) stop 3
0fe1ac
+          if (abs(br - 2.0) > 1.0D-6) stop 4
0fe1ac
+          if (ci .ne. 3) stop 5
0fe1ac
+          if (abs(cr - 3.0) > 1.0D-6) stop 6
0fe1ac
+          if (kind(ai) .ne. 1) stop 7
0fe1ac
+          if (kind(ar) .ne. 4) stop 8
0fe1ac
+          if (kind(bi) .ne. 4) stop 9
0fe1ac
+          if (kind(br) .ne. 8) stop 10
0fe1ac
+          if (kind(ci) .ne. 8) stop 11
0fe1ac
+          if (kind(cr) .ne. 4) stop 12
0fe1ac
+        end
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_spec_in_variable_3.f b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_3.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..5ff434e7466
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_3.f
0fe1ac
@@ -0,0 +1,31 @@
0fe1ac
+! { dg-do compile }
0fe1ac
+! { dg-options "-fdec -fno-dec-override-kind" }
0fe1ac
+!
0fe1ac
+! Test kind specification in variable not in type
0fe1ac
+!
0fe1ac
+! Contributed by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+        program spec_in_var
0fe1ac
+          integer*8  ai*1, bi*4, ci ! { dg-error "Syntax error" }
0fe1ac
+          real*4 ar*4, br*8, cr ! { dg-error "Syntax error" }
0fe1ac
+
0fe1ac
+          ai = 1
0fe1ac
+          ar = 1.0
0fe1ac
+          bi = 2
0fe1ac
+          br = 2.0
0fe1ac
+          ci = 3
0fe1ac
+          cr = 3.0
0fe1ac
+
0fe1ac
+          if (ai .ne. 1) stop 1
0fe1ac
+          if (abs(ar - 1.0) > 1.0D-6) stop 2
0fe1ac
+          if (bi .ne. 2) stop 3
0fe1ac
+          if (abs(br - 2.0) > 1.0D-6) stop 4
0fe1ac
+          if (ci .ne. 3) stop 5
0fe1ac
+          if (abs(cr - 3.0) > 1.0D-6) stop 6
0fe1ac
+          if (kind(ai) .ne. 1) stop 7
0fe1ac
+          if (kind(ar) .ne. 4) stop 8
0fe1ac
+          if (kind(bi) .ne. 4) stop 9
0fe1ac
+          if (kind(br) .ne. 8) stop 10
0fe1ac
+          if (kind(ci) .ne. 8) stop 11
0fe1ac
+          if (kind(cr) .ne. 4) stop 12
0fe1ac
+        end
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_spec_in_variable_4.f b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_4.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..c01980e8b9d
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_4.f
0fe1ac
@@ -0,0 +1,14 @@
0fe1ac
+! { dg-do compile }
0fe1ac
+!
0fe1ac
+! Test kind specification in variable not in type. The per variable
0fe1ac
+! kind specification is not enabled so these should fail
0fe1ac
+!
0fe1ac
+! Contributed by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+        program spec_in_var
0fe1ac
+          integer a
0fe1ac
+          parameter(a=2)
0fe1ac
+          integer b*(a) ! { dg-error "Syntax error" }
0fe1ac
+          real c*(8)    ! { dg-error "Syntax error" }
0fe1ac
+          logical d*1_1 ! { dg-error "Syntax error" }
0fe1ac
+        end
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_spec_in_variable_5.f b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_5.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..e2f39da3f4f
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_5.f
0fe1ac
@@ -0,0 +1,19 @@
0fe1ac
+! { dg-do run }
0fe1ac
+! { dg-options "-fdec-override-kind" }
0fe1ac
+!
0fe1ac
+! Test kind specification in variable not in type
0fe1ac
+!
0fe1ac
+! Contributed by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+        program spec_in_var
0fe1ac
+          integer a
0fe1ac
+          parameter(a=2)
0fe1ac
+          integer b*(a)
0fe1ac
+          real c*(8)
0fe1ac
+          logical d*(1_1)
0fe1ac
+          character e*(a)
0fe1ac
+          if (kind(b).ne.2) stop 1
0fe1ac
+          if (kind(c).ne.8) stop 2
0fe1ac
+          if (kind(d).ne.1) stop 3
0fe1ac
+          if (len(e).ne.2) stop 4
0fe1ac
+        end
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_spec_in_variable_6.f b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_6.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..569747874e3
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_6.f
0fe1ac
@@ -0,0 +1,19 @@
0fe1ac
+! { dg-do run }
0fe1ac
+! { dg-options "-fdec" }
0fe1ac
+!
0fe1ac
+! Test kind specification in variable not in type
0fe1ac
+!
0fe1ac
+! Contributed by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+        program spec_in_var
0fe1ac
+          integer a
0fe1ac
+          parameter(a=2)
0fe1ac
+          integer b*(a)
0fe1ac
+          real c*(8)
0fe1ac
+          logical d*(1_1)
0fe1ac
+          character e*(a)
0fe1ac
+          if (kind(b).ne.2) stop 1
0fe1ac
+          if (kind(c).ne.8) stop 2
0fe1ac
+          if (kind(d).ne.1) stop 3
0fe1ac
+          if (len(e).ne.2) stop 4
0fe1ac
+        end
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_spec_in_variable_7.f b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_7.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..b975bfd15c5
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_7.f
0fe1ac
@@ -0,0 +1,15 @@
0fe1ac
+! { dg-do compile }
0fe1ac
+! { dg-options "-fdec -fno-dec-override-kind" }
0fe1ac
+!
0fe1ac
+! Test kind specification in variable not in type as the per variable
0fe1ac
+! kind specification is not enables these should fail
0fe1ac
+!
0fe1ac
+! Contributed by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+        program spec_in_var
0fe1ac
+          integer a
0fe1ac
+          parameter(a=2)
0fe1ac
+          integer b*(a) ! { dg-error "Syntax error" }
0fe1ac
+          real c*(8)    ! { dg-error "Syntax error" }
0fe1ac
+          logical d*1_1 ! { dg-error "Syntax error" }
0fe1ac
+        end
0fe1ac
diff --git a/gcc/testsuite/gfortran.dg/dec_spec_in_variable_8.f b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_8.f
0fe1ac
new file mode 100644
0fe1ac
index 00000000000..85732e0bd85
0fe1ac
--- /dev/null
0fe1ac
+++ b/gcc/testsuite/gfortran.dg/dec_spec_in_variable_8.f
0fe1ac
@@ -0,0 +1,14 @@
0fe1ac
+! { dg-do compile }
0fe1ac
+! { dg-options "-fdec" }
0fe1ac
+!
0fe1ac
+! Check that invalid kind values are rejected.
0fe1ac
+!
0fe1ac
+! Contributed by Mark Eggleston <mark.eggleston@codethink.com>
0fe1ac
+!
0fe1ac
+        program spec_in_var
0fe1ac
+          integer a
0fe1ac
+          parameter(a=3)
0fe1ac
+          integer b*(a) ! { dg-error "Kind 3 not supported" }
0fe1ac
+          real c*(78)   ! { dg-error "Kind 78 not supported" }
0fe1ac
+          logical d*(*) ! { dg-error "Invalid character" }
0fe1ac
+        end
0fe1ac
-- 
0fe1ac
2.27.0
0fe1ac