frontend-passes.c (optimize_assignment): Follow chains of concatenation operators...
authorThomas Koenig <tkoenig@gcc.gnu.org>
Sat, 11 Jun 2011 08:22:35 +0000 (08:22 +0000)
committerThomas Koenig <tkoenig@gcc.gnu.org>
Sat, 11 Jun 2011 08:22:35 +0000 (08:22 +0000)
2011-05-11  Thomas Koenig  <tkoenig@gcc.gnu.org>

* frontend-passes.c (optimize_assignment): Follow chains
of concatenation operators to the end for removing trailing
TRIMS for assignments.

2011-05-11  Thomas Koenig  <tkoenig@gcc.gnu.org>

* gfortran.dg/trim_optimize_7.f90:  New test.

From-SVN: r174944

gcc/fortran/ChangeLog
gcc/fortran/frontend-passes.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/trim_optimize_7.f90 [new file with mode: 0644]

index dbfaa7c..ac9f3ca 100644 (file)
@@ -1,3 +1,9 @@
+2011-05-11  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       * frontend-passes.c (optimize_assignment): Follow chains
+       of concatenation operators to the end for removing trailing
+       TRIMS for assignments.
+
 2011-06-10  Daniel Carrera  <dcarrera@gmail.com>
 
        * trans-decl.c (gfc_build_builtin_function_decls):
index f100e1f..d1cc229 100644 (file)
@@ -500,6 +500,14 @@ optimize_assignment (gfc_code * c)
 
   if (lhs->ts.type == BT_CHARACTER)
     {
+      /* Check for a // b // trim(c).  Looping is probably not
+        necessary because the parser usually generates
+        (// (// a b ) trim(c) ) , but better safe than sorry.  */
+
+      while (rhs->expr_type == EXPR_OP
+            && rhs->value.op.op == INTRINSIC_CONCAT)
+       rhs = rhs->value.op.op2;
+
       if (rhs->expr_type == EXPR_FUNCTION &&
          rhs->value.function.isym &&
          rhs->value.function.isym->id == GFC_ISYM_TRIM)
index ffbc9f3..f34cf19 100644 (file)
@@ -1,3 +1,7 @@
+2011-05-11  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       * gfortran.dg/trim_optimize_7.f90:  New test.
+
 2011-06-10  Wei Guozhi  <carrot@google.com>
 
        PR target/45335
diff --git a/gcc/testsuite/gfortran.dg/trim_optimize_7.f90 b/gcc/testsuite/gfortran.dg/trim_optimize_7.f90
new file mode 100644 (file)
index 0000000..26663c0
--- /dev/null
@@ -0,0 +1,19 @@
+! { dg-do run }
+! { dg-options "-O -fdump-tree-original" }
+! Check that trailing trims are also removed from assignment of
+! expressions involving concatenations of strings .
+program main
+  character(2) :: a,b,c
+  character(8) :: d
+  a = 'a '
+  b = 'b '
+  c = 'c '
+  d = a // b // a // trim(c)   ! This should be optimized away.
+  if (d /= 'a b a c ') call abort
+  d = a // trim(b) // c // a   ! This shouldn't.
+  if (d /= 'a bc a  ') call abort
+  d = a // b // a // trim(trim(c)) ! This should also be optimized away.
+  if (d /= 'a b a c ') call abort
+end
+! { dg-final { scan-tree-dump-times "string_len_trim" 1 "original" } }
+! { dg-final { cleanup-tree-dump "original" } }