From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8630 invoked by alias); 19 May 2011 09:15:06 -0000 Received: (qmail 8605 invoked by uid 22791); 19 May 2011 09:15:04 -0000 X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 19 May 2011 09:14:44 +0000 Received: (qmail 32527 invoked from network); 19 May 2011 09:14:44 -0000 Received: from unknown (HELO ?192.168.1.68?) (vries@127.0.0.2) by mail.codesourcery.com with ESMTPA; 19 May 2011 09:14:44 -0000 Message-ID: <4DD4DF42.6060503@codesourcery.com> Date: Thu, 19 May 2011 11:17:00 -0000 From: Tom de Vries User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110424 Lightning/1.0b2 Thunderbird/3.1.10 MIME-Version: 1.0 To: Rainer Orth , mikestump@comcast.net CC: Zdenek Dvorak , gcc-patches@gcc.gnu.org Subject: [PATCH PR45098, 1/10] Proc object-size fix References: <4DD21F6E.4050308@codesourcery.com> <4DD22043.1010009@codesourcery.com> In-Reply-To: <4DD22043.1010009@codesourcery.com> Content-Type: multipart/mixed; boundary="------------030700020109050505070208" 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-05/txt/msg01359.txt.bz2 This is a multi-part message in MIME format. --------------030700020109050505070208 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-length: 810 On 05/17/2011 09:14 AM, Tom de Vries wrote: > On 05/17/2011 09:10 AM, Tom de Vries wrote: >> Hi Zdenek, >> >> I have a patch set for for PR45098. >> >> 01_object-size-target.patch >> 02_pr45098-rtx-cost-set.patch >> 03_pr45098-computation-cost.patch >> 04_pr45098-iv-init-cost.patch >> 05_pr45098-bound-cost.patch >> 06_pr45098-bound-cost.test.patch >> 07_pr45098-nowrap-limits-iterations.patch >> 08_pr45098-nowrap-limits-iterations.test.patch >> 09_pr45098-shift-add-cost.patch >> 10_pr45098-shift-add-cost.test.patch >> >> I will sent out the patches individually. > > OK for trunk? > > Thanks, > - Tom Fixes bug in target selector handling of proc object-size. Committed as obvious. 2011-05-05 Tom de Vries * lib/lib/scanasm.exp (object-size): Fix target selector handling. --------------030700020109050505070208 Content-Type: text/x-patch; name="01_object-size-target.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="01_object-size-target.patch" Content-length: 470 Index: gcc/testsuite/lib/scanasm.exp =================================================================== --- gcc/testsuite/lib/scanasm.exp (revision 173734) +++ gcc/testsuite/lib/scanasm.exp (working copy) @@ -330,7 +330,7 @@ proc object-size { args } { return } if { [llength $args] >= 4 } { - switch [dg-process-target [lindex $args 1]] { + switch [dg-process-target [lindex $args 3]] { "S" { } "N" { return } "F" { setup_xfail "*-*-*" } --------------030700020109050505070208--