From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31090 invoked by alias); 7 Sep 2011 14:14:27 -0000 Received: (qmail 31080 invoked by uid 22791); 7 Sep 2011 14:14:25 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.44.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 07 Sep 2011 14:14:08 +0000 Received: from wpaz29.hot.corp.google.com (wpaz29.hot.corp.google.com [172.24.198.93]) by smtp-out.google.com with ESMTP id p87EE7fi012172 for ; Wed, 7 Sep 2011 07:14:07 -0700 Received: from ywf7 (ywf7.prod.google.com [10.192.6.7]) by wpaz29.hot.corp.google.com with ESMTP id p87ECkfJ011514 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Wed, 7 Sep 2011 07:14:06 -0700 Received: by ywf7 with SMTP id 7so257334ywf.5 for ; Wed, 07 Sep 2011 07:14:06 -0700 (PDT) Received: by 10.151.77.13 with SMTP id e13mr4918154ybl.70.1315404846346; Wed, 07 Sep 2011 07:14:06 -0700 (PDT) MIME-Version: 1.0 Received: by 10.151.77.13 with SMTP id e13mr4918149ybl.70.1315404846173; Wed, 07 Sep 2011 07:14:06 -0700 (PDT) Received: by 10.151.142.15 with HTTP; Wed, 7 Sep 2011 07:14:06 -0700 (PDT) In-Reply-To: <20110907014433.229C9B21A6@azwildcat.mtv.corp.google.com> References: <20110907014433.229C9B21A6@azwildcat.mtv.corp.google.com> Date: Wed, 07 Sep 2011 14:16:00 -0000 Message-ID: Subject: Re: [google][main]Fix broken test cases in google/main branch (issue4961065) From: Diego Novillo To: Sriraman Tallam Cc: reply@codereview.appspotmail.com, gcc-patches@gcc.gnu.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-System-Of-Record: true 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-09/txt/msg00485.txt.bz2 On Tue, Sep 6, 2011 at 21:44, Sriraman Tallam wrote: > This patches fixes bugs that caused the multi-version tests to fail. > > =C2=A0 =C2=A0 =C2=A0 =C2=A0* mversn-dispatch.c (specialize_call): Rebuild= cgraph edges after > =C2=A0 =C2=A0 =C2=A0 =C2=A0specialization. > =C2=A0 =C2=A0 =C2=A0 =C2=A0(clone_and_dispatch_function): Rebuild cgraph = edges to compute > =C2=A0 =C2=A0 =C2=A0 =C2=A0inline parameters. > =C2=A0 =C2=A0 =C2=A0 =C2=A0(do_convert_builtin_dispatch): Ditto. > =C2=A0 =C2=A0 =C2=A0 =C2=A0(convert_builtin_dispatch): Remove call to mar= k_syms_for_renaming > =C2=A0 =C2=A0 =C2=A0 =C2=A0for phi nodes. > =C2=A0 =C2=A0 =C2=A0 =C2=A0* passes.c (init_optimization_passes): Remove = pass to rebuild > =C2=A0 =C2=A0 =C2=A0 =C2=A0cgraph edges after converting __builtin_dispat= ch. OK, thanks for the fix. Diego.