From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19182 invoked by alias); 23 Jun 2011 18:55:58 -0000 Received: (qmail 19174 invoked by uid 22791); 23 Jun 2011 18:55:58 -0000 X-SWARE-Spam-Status: No, hits=-6.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 23 Jun 2011 18:55:39 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p5NItdAA031090 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 23 Jun 2011 14:55:39 -0400 Received: from tyan-ft48-01.lab.bos.redhat.com (tyan-ft48-01.lab.bos.redhat.com [10.16.42.4]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p5NItcrF001822 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 23 Jun 2011 14:55:39 -0400 Received: from tyan-ft48-01.lab.bos.redhat.com (localhost.localdomain [127.0.0.1]) by tyan-ft48-01.lab.bos.redhat.com (8.14.4/8.14.4) with ESMTP id p5NItc2O029502 for ; Thu, 23 Jun 2011 20:55:38 +0200 Received: (from jakub@localhost) by tyan-ft48-01.lab.bos.redhat.com (8.14.4/8.14.4/Submit) id p5NItcBs029500 for gcc-patches@gcc.gnu.org; Thu, 23 Jun 2011 20:55:38 +0200 Date: Thu, 23 Jun 2011 19:02:00 -0000 From: Jakub Jelinek To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix tree-ssa/asm-1.c testcase (PR testsuite/49512) Message-ID: <20110623185537.GR16443@tyan-ft48-01.lab.bos.redhat.com> Reply-To: Jakub Jelinek MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2011-06/txt/msg01811.txt.bz2 Hi! This testcase checks whether two 2-digit numbers occur in *.optimized just once. They can from time to time match decl_uid=..... too though, so this patch ensures DECL_UID isn't printed. Regtested on x86_64-linux and i686-linux, committed as obvious. 2011-06-23 Jakub Jelinek PR testsuite/49512 * gcc.dg/tree-ssa/asm-1.c: Use -fdump-tree-optimized-nouid instead of -fdump-tree-optimized. --- gcc/testsuite/gcc.dg/tree-ssa/asm-1.c.jj 2008-09-05 12:54:29.000000000 +0200 +++ gcc/testsuite/gcc.dg/tree-ssa/asm-1.c 2011-06-23 10:19:09.000000000 +0200 @@ -2,7 +2,7 @@ as a def. */ /* { dg-do compile } */ -/* { dg-options "-O -fdump-tree-optimized" } */ +/* { dg-options "-O -fdump-tree-optimized-nouid" } */ void f() { Jakub