Blame SOURCES/0007-Allow-more-than-one-character-as-argument-to-ICHAR.patch

9805c9
From d15e5e207e2a6b46edee2f2b5d3e4c1cc7cdb80f Mon Sep 17 00:00:00 2001
9805c9
From: Jim MacArthur <jim.macarthur@codethink.co.uk>
9805c9
Date: Mon, 5 Oct 2015 13:45:15 +0100
9805c9
Subject: [PATCH 07/16] Allow more than one character as argument to ICHAR
9805c9
9805c9
Use -fdec to enable..
9805c9
---
9805c9
 gcc/fortran/check.c                                 |  2 +-
9805c9
 gcc/fortran/simplify.c                              |  4 ++--
9805c9
 gcc/testsuite/gfortran.dg/dec_ichar_with_string_1.f | 21 +++++++++++++++++++++
9805c9
 3 files changed, 24 insertions(+), 3 deletions(-)
9805c9
 create mode 100644 gcc/testsuite/gfortran.dg/dec_ichar_with_string_1.f
9805c9
9805c9
diff --git a/gcc/fortran/check.c b/gcc/fortran/check.c
9805c9
index a04f0d66655..0ba4d0a031f 100644
9805c9
--- a/gcc/fortran/check.c
9805c9
+++ b/gcc/fortran/check.c
9805c9
@@ -2603,7 +2603,7 @@ gfc_check_ichar_iachar (gfc_expr *c, gfc_expr *kind)
9805c9
   else
9805c9
     return true;
9805c9
 
9805c9
-  if (i != 1)
9805c9
+  if (i != 1 && !flag_dec)
9805c9
     {
9805c9
       gfc_error ("Argument of %s at %L must be of length one",
9805c9
 		 gfc_current_intrinsic, &c->where);
9805c9
diff --git a/gcc/fortran/simplify.c b/gcc/fortran/simplify.c
9805c9
index 7d7e3f22f73..7aff256c6b3 100644
9805c9
--- a/gcc/fortran/simplify.c
9805c9
+++ b/gcc/fortran/simplify.c
9805c9
@@ -3229,7 +3229,7 @@ gfc_simplify_iachar (gfc_expr *e, gfc_expr *kind)
9805c9
   if (e->expr_type != EXPR_CONSTANT)
9805c9
     return NULL;
9805c9
 
9805c9
-  if (e->value.character.length != 1)
9805c9
+  if (e->value.character.length != 1 && !flag_dec)
9805c9
     {
9805c9
       gfc_error ("Argument of IACHAR at %L must be of length one", &e->where);
9805c9
       return &gfc_bad_expr;
9805c9
@@ -3427,7 +3427,7 @@ gfc_simplify_ichar (gfc_expr *e, gfc_expr *kind)
9805c9
   if (e->expr_type != EXPR_CONSTANT)
9805c9
     return NULL;
9805c9
 
9805c9
-  if (e->value.character.length != 1)
9805c9
+  if (e->value.character.length != 1 && !flag_dec)
9805c9
     {
9805c9
       gfc_error ("Argument of ICHAR at %L must be of length one", &e->where);
9805c9
       return &gfc_bad_expr;
9805c9
diff --git a/gcc/testsuite/gfortran.dg/dec_ichar_with_string_1.f b/gcc/testsuite/gfortran.dg/dec_ichar_with_string_1.f
9805c9
new file mode 100644
9805c9
index 00000000000..85efccecc0f
9805c9
--- /dev/null
9805c9
+++ b/gcc/testsuite/gfortran.dg/dec_ichar_with_string_1.f
9805c9
@@ -0,0 +1,21 @@
9805c9
+! { dg-do run }
9805c9
+! { dg-options "-fdec" }
9805c9
+!
9805c9
+! Test ICHAR and IACHAR with more than one character as argument
9805c9
+!
9805c9
+! Test case contributed by Jim MacArthur <jim.macarthur@codethink.co.uk>
9805c9
+! Modified by Mark Eggleston <mark.eggleston@codethink.com>
9805c9
+!
9805c9
+        PROGRAM ichar_more_than_one_character
9805c9
+          CHARACTER*4 st/'Test'/
9805c9
+          INTEGER i
9805c9
+
9805c9
+          i = ICHAR(st)
9805c9
+          if (i.NE.84) STOP 1
9805c9
+          i = IACHAR(st)
9805c9
+          if (i.NE.84) STOP 2
9805c9
+          i = ICHAR('Test')
9805c9
+          if (i.NE.84) STOP 3
9805c9
+          i = IACHAR('Test')
9805c9
+          if (i.NE.84) STOP 4
9805c9
+        END
9805c9
-- 
9805c9
2.11.0
9805c9