From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26024 invoked by alias); 3 Aug 2017 07:20:57 -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 24332 invoked by uid 89); 3 Aug 2017 07:20:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.6 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS,URIBL_RED autolearn=ham version=3.3.2 spammy= 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; Thu, 03 Aug 2017 07:20:54 +0000 Received: from nat-ies.mentorg.com ([192.94.31.2] helo=SVR-IES-MBX-04.mgc.mentorg.com) by relay1.mentorg.com with esmtp id 1ddARA-00024c-M2 from Tom_deVries@mentor.com for gcc-patches@gcc.gnu.org; Thu, 03 Aug 2017 00:20:52 -0700 Received: from [127.0.0.1] (137.202.0.87) by SVR-IES-MBX-04.mgc.mentorg.com (139.181.222.4) with Microsoft SMTP Server (TLS) id 15.0.1263.5; Thu, 3 Aug 2017 08:20:49 +0100 To: GCC Patches From: Tom de Vries Subject: [testsuite, committed] Require alias for gcc.dg/pr56727-2.c Message-ID: Date: Thu, 03 Aug 2017 07:20:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------46D2E1B758CAA49A2D6A92C8" X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To SVR-IES-MBX-04.mgc.mentorg.com (139.181.222.4) X-SW-Source: 2017-08/txt/msg00258.txt.bz2 --------------46D2E1B758CAA49A2D6A92C8 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Content-length: 90 Hi, this patch requires alias support for gcc.dg/pr56727-2.c. Committed. Thanks, - Tom --------------46D2E1B758CAA49A2D6A92C8 Content-Type: text/x-patch; name="0004-Require-alias-for-gcc.dg-pr56727-2.c.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="0004-Require-alias-for-gcc.dg-pr56727-2.c.patch" Content-length: 654 Require alias for gcc.dg/pr56727-2.c 2017-08-02 Tom de Vries * gcc.dg/pr56727-2.c: Require alias. --- gcc/testsuite/gcc.dg/pr56727-2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/testsuite/gcc.dg/pr56727-2.c b/gcc/testsuite/gcc.dg/pr56727-2.c index e47ee3c..62a74d1 100644 --- a/gcc/testsuite/gcc.dg/pr56727-2.c +++ b/gcc/testsuite/gcc.dg/pr56727-2.c @@ -1,5 +1,6 @@ /* { dg-do compile { target fpic } } */ /* { dg-options "-O2 -fPIC" } */ +/* { dg-require-alias "" } */ /* { dg-final { scan-assembler "@(PLT|plt)" { target i?86-*-* x86_64-*-* powerpc*-*-linux* } } } */ __attribute__((noinline, noclone)) --------------46D2E1B758CAA49A2D6A92C8--