From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 78447 invoked by alias); 18 Mar 2015 11:53:50 -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 78430 invoked by uid 89); 18 Mar 2015 11:53:49 -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_PASS autolearn=ham version=3.3.2 X-HELO: service87.mimecast.com Received: from service87.mimecast.com (HELO service87.mimecast.com) (91.220.42.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 18 Mar 2015 11:53:48 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) by service87.mimecast.com; Wed, 18 Mar 2015 11:53:45 +0000 Received: from [10.2.207.50] ([10.1.2.79]) by cam-owa2.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 18 Mar 2015 11:53:42 +0000 Message-ID: <55096746.4080404@arm.com> Date: Wed, 18 Mar 2015 11:53:00 -0000 From: Kyrill Tkachov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: Honggyu Kim , 'Segher Boessenkool' , "christophe.lyon@st.com" CC: "gcc-patches@gcc.gnu.org" Subject: Re: [PATCH][ARM] New testcase to check parameter passing bug References: <1426212518-14867-1-git-send-email-hong.gyu.kim@lge.com> <000801d05d85$dbcb9450$9362bcf0$@arm.com> <20150313141229.GC7174@gate.crashing.org> <051201d05f83$ae23a330$0a6ae990$@lge.com> In-Reply-To: <051201d05f83$ae23a330$0a6ae990$@lge.com> X-MC-Unique: 115031811534500301 Content-Type: text/plain; charset=WINDOWS-1252; format=flowed Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2015-03/txt/msg00916.txt.bz2 Hi Honggyu, On 16/03/15 00:53, Honggyu Kim wrote: > new file mode 100644 > index 0000000..3790764 > --- /dev/null > +++ b/gcc/testsuite/gcc.dg/pr65358.c > @@ -0,0 +1,33 @@ > +/* { dg-do run */ Forgot to close the brace here after 'run' Dejagnu happily ignores that and transforms this into a compile-only=20 testcase without that. Otherwise looks good to me. Kyrill > +/* { dg-options "-O2" } */ > + > +struct pack > +{ > + int fine; > + int victim; > + int killer; > +}; > +