From patchwork Tue Aug 17 09:46:09 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Fix PR45266 From: Richard Guenther X-Patchwork-Id: 61872 Message-Id: To: gcc-patches@gcc.gnu.org Date: Tue, 17 Aug 2010 11:46:09 +0200 (CEST) This fixes the pattern in gfortran.dg/array_memcpy_3.f90 - thanks Steve for figuring out a working one. Commited. Richard. 2010-08-17 Richard Guenther PR testsuite/45266 * gfortran.dg/array_memcpy_3.f90: Adjust pattern. Index: gcc/testsuite/gfortran.dg/array_memcpy_3.f90 =================================================================== --- gcc/testsuite/gfortran.dg/array_memcpy_3.f90 (revision 163281) +++ gcc/testsuite/gfortran.dg/array_memcpy_3.f90 (working copy) @@ -11,5 +11,5 @@ subroutine bar(x) x = (/ 3, 1, 4, 1 /) end subroutine -! { dg-final { scan-tree-dump-times "memcpy|(ref-all.*ref-all)" 2 "original" } } +! { dg-final { scan-tree-dump-times "memcpy|ref-all.*ref-all" 2 "original" } } ! { dg-final { cleanup-tree-dump "original" } }