[PATCH] PR Fortran/93263 Correct test case
authorMark Eggleston <markeggleston@gcc.gnu.org>
Mon, 20 Jan 2020 13:23:07 +0000 (13:23 +0000)
committerMark Eggleston <markeggleston@gcc.gnu.org>
Mon, 20 Jan 2020 13:23:20 +0000 (13:23 +0000)
Should've have checked for the existance of a non static integer
using scan-tree-dump instead of scan-tree-dump-not. A cut and paste
error.

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/pr93263_1.f90

index d8bf313..a526e32 100644 (file)
@@ -1,3 +1,8 @@
+2020-01-20  Mark Eggleston  <mark.eggleston@codethink.com>
+
+       * gfortran.dg/pr93263_1.f90: Change scan-tree-dump-not to
+       scan-tree-dump.
+
 2020-01-20  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR target/93319
index f96b358..3fa2247 100644 (file)
@@ -25,5 +25,5 @@ recursive subroutine check(n)
 end 
 
 ! { dg-final { scan-tree-dump-not "static integer\\(kind=4\\) a" "original" } }
-! { dg-final { scan-tree-dump-not "integer\\(kind=4\\) a" "original" } }
+! { dg-final { scan-tree-dump "integer\\(kind=4\\) a" "original" } }