From patchwork Tue Aug 17 09:46:09 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Biener X-Patchwork-Id: 61872 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 835DBB6F0E for ; Tue, 17 Aug 2010 19:46:20 +1000 (EST) Received: (qmail 7520 invoked by alias); 17 Aug 2010 09:46:18 -0000 Received: (qmail 7506 invoked by uid 22791); 17 Aug 2010 09:46:17 -0000 X-SWARE-Spam-Status: No, hits=-3.4 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from cantor2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 17 Aug 2010 09:46:11 +0000 Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.221.2]) by mx2.suse.de (Postfix) with ESMTP id 80A228765C for ; Tue, 17 Aug 2010 11:46:09 +0200 (CEST) Date: Tue, 17 Aug 2010 11:46:09 +0200 (CEST) From: Richard Guenther To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix PR45266 Message-ID: User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org 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" } }