From patchwork Fri May 30 23:08:54 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom de Vries X-Patchwork-Id: 354367 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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id D11C4140101 for ; Sat, 31 May 2014 09:09:12 +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 :message-id:date:from:mime-version:to:cc:subject:references :in-reply-to:content-type; q=dns; s=default; b=iQ+SFJqI5mE/UuAiL hJUfcQLzrWzqy4sbZiDUertHiPPgX/yLUPsubs4mB1bglylhdJ722RBSJcIwlhsK AC1qvSkj4wggCJ4GCH8rLZyQ3Dbl8Of3Ud5jW+YAmoCXou8YoC0bA6VEzSqBUw07 YbNG696AMZJuLWgCUObrF3JbSI= 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 :message-id:date:from:mime-version:to:cc:subject:references :in-reply-to:content-type; s=default; bh=nqUTuSdgRv0rKoZn6Of4A/d cHsY=; b=brq00T5JyjNS6+YevQRfDnbTi+zE3Hm7eRy5NnSeZtzU+JXuBGdkncX TzEhZz6SjzIFlevEWuGlXJ759QleyL+SynW9mqltWzQOme+vonPrW5qakjrmyQ3G lFOsUS555VcYfOqo0pv7yT1k/iDF0tMBdc0rh4eRRw8AnJmqy8ko= Received: (qmail 4864 invoked by alias); 30 May 2014 23:09:06 -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 4854 invoked by uid 89); 30 May 2014 23:09:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 30 May 2014 23:09:04 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1WqVv1-0007as-9h from Tom_deVries@mentor.com ; Fri, 30 May 2014 16:08:59 -0700 Received: from SVR-IES-FEM-01.mgc.mentorg.com ([137.202.0.104]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Fri, 30 May 2014 16:08:59 -0700 Received: from [127.0.0.1] (137.202.0.76) by SVR-IES-FEM-01.mgc.mentorg.com (137.202.0.104) with Microsoft SMTP Server id 14.2.247.3; Sat, 31 May 2014 00:08:56 +0100 Message-ID: <53890F86.9070105@mentor.com> Date: Sat, 31 May 2014 01:08:54 +0200 From: Tom de Vries User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Kai Tietz , Jeff Law CC: "H.J. Lu" , GCC Patches , Jakub Jelinek , Richard Henderson Subject: Re: [patch i386]: Expand sibling-tail-calls via accumulator register References: <356718653.5712706.1400794422397.JavaMail.zimbra@redhat.com> <537F8DC7.3090906@redhat.com> <777706000.8424762.1401128436051.JavaMail.zimbra@redhat.com> <20140526183208.GG10386@tucnak.redhat.com> <1487116948.8449887.1401132170121.JavaMail.zimbra@redhat.com> <20140526193543.GH10386@tucnak.redhat.com> <625132578.8474723.1401136339171.JavaMail.zimbra@redhat.com> <643791243.10265346.1401266636155.JavaMail.zimbra@redhat.com> In-Reply-To: <643791243.10265346.1401266636155.JavaMail.zimbra@redhat.com> On 28-05-14 10:43, Kai Tietz wrote: > Index: gcc/testsuite/gcc.target/i386/sibcall-4.c > =================================================================== > --- gcc/testsuite/gcc.target/i386/sibcall-4.c (revision 0) > +++ gcc/testsuite/gcc.target/i386/sibcall-4.c (working copy) > @@ -0,0 +1,15 @@ > +/* Testcase for PR target/46219. */ > +/* { dg-do compile { xfail { *-*-* } } */ Hi, I've committed this follow-up patch to add a missing closing brace. Thanks, - Tom 2014-05-31 Tom de Vries * gcc.target/i386/sibcall-4.c: Add missing closing brace. diff --git a/gcc/testsuite/gcc.target/i386/sibcall-4.c b/gcc/testsuite/gcc.target/i386/sibcall-4.c index e157338..e9ae939 100644 --- a/gcc/testsuite/gcc.target/i386/sibcall-4.c +++ b/gcc/testsuite/gcc.target/i386/sibcall-4.c @@ -1,5 +1,5 @@ /* Testcase for PR target/46219. */ -/* { dg-do compile { xfail { *-*-* } } */ +/* { dg-do compile { xfail { *-*-* } } } */ /* { dg-require-effective-target ia32 } */ /* { dg-options "-O2" } */ -- 1.9.1