From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6125 invoked by alias); 30 Sep 2011 14:07:02 -0000 Received: (qmail 6105 invoked by uid 22791); 30 Sep 2011 14:07:00 -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; Fri, 30 Sep 2011 14:06:41 +0000 Received: from hpaq13.eem.corp.google.com (hpaq13.eem.corp.google.com [172.25.149.13]) by smtp-out.google.com with ESMTP id p8UE6eQ3022573 for ; Fri, 30 Sep 2011 07:06:40 -0700 Received: from yxn22 (yxn22.prod.google.com [10.190.4.86]) by hpaq13.eem.corp.google.com with ESMTP id p8UE6EU0014993 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Fri, 30 Sep 2011 07:06:38 -0700 Received: by yxn22 with SMTP id 22so1996355yxn.7 for ; Fri, 30 Sep 2011 07:06:38 -0700 (PDT) Received: by 10.150.164.15 with SMTP id m15mr11526290ybe.56.1317391598103; Fri, 30 Sep 2011 07:06:38 -0700 (PDT) Received: by 10.150.164.15 with SMTP id m15mr11526275ybe.56.1317391597929; Fri, 30 Sep 2011 07:06:37 -0700 (PDT) Received: from dhcp-172-29-42-217.tor.corp.google.com (dhcp-172-29-42-217.tor.corp.google.com [172.29.42.217]) by mx.google.com with ESMTPS id w16sm14305996anl.2.2011.09.30.07.06.36 (version=SSLv3 cipher=OTHER); Fri, 30 Sep 2011 07:06:37 -0700 (PDT) Message-ID: <4E85CCF1.4040109@google.com> Date: Fri, 30 Sep 2011 14:56:00 -0000 From: Diego Novillo User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:7.0) Gecko/20110922 Thunderbird/7.0 MIME-Version: 1.0 To: Jan Hubicka CC: gcc-patches@gcc.gnu.org, rguenther@suse.de, ak@linux.intel.com Subject: Re: Update testsuite to run with slim LTO References: <20110927172322.GA21068@kam.mff.cuni.cz> In-Reply-To: <20110927172322.GA21068@kam.mff.cuni.cz> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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/msg02040.txt.bz2 On 11-09-27 13:23 , Jan Hubicka wrote: > sync and pr34850 tests doesn't pass with slim LTO. The reason is that they > excpects diagnostics that is output too late in compilation (usually at > expansion time). These should be probably fixed as QOI issue but they are not > real bug - the diagnostics will be output at linktime. I will open PR tracking > this. We probably should output pretty much everything till end of early opts > except for stuff that really looks for optimization results. Especially now > when we handle always inline in early inlining. Could you add a link to the PR in these tests? > * lib/lto.exp: When linker plugin is available test both > plugin/non-plugin LTO paths as well as fat and slim LTO. > lib/c-torture.exp: Likewise. > lib/gcc-dg.exp: Likweise > * gcc.c-torture/compile/sync-1.c: Do not run with slim LTO. > * gcc.c-torture/compile/sync-2.c: Do not run with slim LTO. > * gcc.c-torture/compile/sync-3.c: Do not run with slim LTO. > * gcc.dg/noncompile/920507-1.c: Do not run with slim LTO. > * g++.dg/torture/pr34850.C: Do not run with slim LTO OK with the change above. Diego.