From patchwork Fri Jun 7 17:10:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Hubicka X-Patchwork-Id: 249764 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]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 289E32C009D for ; Sat, 8 Jun 2013 03:10:25 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=BMLWanqA1+g8zgLS8w//yENvOLqW/okOvq41D8XpHAsafROo7rlhJ Wb+frtUyWq9iodbsloWeYFqQdEY+g4R6Mifrptlo32x1JTSnZFHqYL9bvsrMF+lG Xx6yH8OmP/gOtT9Wg3B22fCBLT6hMnSo80GK24zKZv51tNKrlkrLYE= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=GOni52fxdEiRM81kJikT8m40nLY=; b=OgUrQN8rJ3V0nKjk0ivU OcBdA6FYvrscJKAPFfGQuErybl7FTfinTEfOZqXIJNFd5kNi7mBUGMMe/etbBFn9 m5viqYIHg7gRaHmNamoskoJkknsZSIYJSJYHz0dq8roYQCy4RljHokK0NeYU9oXm 5H1FaEF58QFPY7XLefQUrZs= Received: (qmail 30782 invoked by alias); 7 Jun 2013 17:10:18 -0000 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 Received: (qmail 30773 invoked by uid 89); 7 Jun 2013 17:10:18 -0000 X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD autolearn=ham version=3.3.1 Received: from nikam.ms.mff.cuni.cz (HELO nikam.ms.mff.cuni.cz) (195.113.20.16) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Fri, 07 Jun 2013 17:10:17 +0000 Received: by nikam.ms.mff.cuni.cz (Postfix, from userid 16202) id 340C6540A49; Fri, 7 Jun 2013 19:10:15 +0200 (CEST) Date: Fri, 7 Jun 2013 19:10:15 +0200 From: Jan Hubicka To: gcc-patches@gcc.gnu.org Subject: Fix tree-ssa/attr-alias.c testcase Message-ID: <20130607171015.GB29599@kam.mff.cuni.cz> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) Hi, on some testers attr-alias.c fails because ( in the template is interpreted by dejagnu rather than part of the pattern. This patch fixes it by simply testing for indentation of the call (to not match the declaration nor function body dump header). Comitted as obvious. Honza Index: ChangeLog =================================================================== --- ChangeLog (revision 199820) +++ ChangeLog (working copy) @@ -1,3 +1,7 @@ +2013-06-07 Jan Hubicka + + * gcc.dg/tree-ssa/attr-alias.c: Remove brackets in template. + 2013-06-07 Tobias Burnus PR fortran/57549 Index: gcc.dg/tree-ssa/attr-alias.c =================================================================== --- gcc.dg/tree-ssa/attr-alias.c (revision 199820) +++ gcc.dg/tree-ssa/attr-alias.c (working copy) @@ -21,8 +21,8 @@ /* calls to test1 and test2 can be inlined and optmized away. Calls to test and test4 are overwritable. */ -/* { dg-final { scan-tree-dump-times "test (" 2 "optimized" } } */ -/* { dg-final { scan-tree-dump-times "test4 (" 1 "optimized" } } */ -/* { dg-final { scan-tree-dump-not "test1 (" "optimized" } } */ -/* { dg-final { scan-tree-dump-not "test2 (" "optimized" } } */ +/* { dg-final { scan-tree-dump-times " test " 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-times " test4 " 1 "optimized" } } */ +/* { dg-final { scan-tree-dump-not " test1 " "optimized" } } */ +/* { dg-final { scan-tree-dump-not " test2 " "optimized" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */