From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 95486 invoked by alias); 25 Mar 2015 13:52:12 -0000 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 Received: (qmail 95412 invoked by uid 89); 25 Mar 2015 13:52:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 25 Mar 2015 13:52:10 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id F3D4EC2E5F; Wed, 25 Mar 2015 13:52:08 +0000 (UTC) Received: from localhost.localdomain (ovpn-113-184.phx2.redhat.com [10.3.113.184]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t2PDq6H4002886; Wed, 25 Mar 2015 09:52:07 -0400 Message-ID: <5512A9B1.1080104@redhat.com> Date: Wed, 25 Mar 2015 13:52:00 -0000 From: Jeff Law User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Honggyu Kim , gcc-patches@gcc.gnu.org CC: kyrylo.tkachov@arm.com, segher@kernel.crashing.org, christophe.lyon@st.com Subject: Re: [PATCH v2] New testcase to check parameter passing bug References: <55096746.4080404@arm.com> <1426729244-12509-1-git-send-email-hong.gyu.kim@lge.com> In-Reply-To: <1426729244-12509-1-git-send-email-hong.gyu.kim@lge.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-03/txt/msg01303.txt.bz2 On 03/18/15 19:40, Honggyu Kim wrote: > Hi, > > I have modified the test-case to check parameter passing bug based on the > comments from Kyrill Tkachov, Christophe Lyon, and Segher Boessenkool > as follows: > 1. move from "gcc.target/arm" to "gcc.dg" > 2. change "dg-do compile" to "dg-do run" > > Please let me know if there's still something to fix more. > Thanks for your comment. > > Honggyu > --- > gcc/testsuite/ChangeLog | 4 ++++ > gcc/testsuite/gcc.dg/pr65358.c | 33 +++++++++++++++++++++++++++++++++ > 2 files changed, 37 insertions(+) > create mode 100644 gcc/testsuite/gcc.dg/pr65358.c > > diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog > index 77d24a1..218f908 100644 > --- a/gcc/testsuite/ChangeLog > +++ b/gcc/testsuite/ChangeLog > @@ -1,3 +1,7 @@ > +2015-03-19 Honggyu Kim > + > + * gcc.dg/pr65358.c: New test. This should be included as part of Kyrill's patch. If the test goes in without Kryill's fix, then it'll just create testsuite noise. Jeff