From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26599 invoked by alias); 16 Oct 2014 12:34:36 -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 26587 invoked by uid 89); 16 Oct 2014 12:34:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mailout05.t-online.de Received: from mailout05.t-online.de (HELO mailout05.t-online.de) (194.25.134.82) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 16 Oct 2014 12:34:35 +0000 Received: from fwd12.aul.t-online.de (fwd12.aul.t-online.de [172.20.26.241]) by mailout05.t-online.de (Postfix) with SMTP id BE53F3B7658 for ; Thu, 16 Oct 2014 14:34:31 +0200 (CEST) Received: from [192.168.0.103] (TDsZc6ZEghje3vITJI-AGQxZFM7ZzNMizaoy9FR7cRprkmnTxuWbkhVjbZ6QXxCgT+@[84.183.238.31]) by fwd12.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1XekG6-3C7jk00; Thu, 16 Oct 2014 14:34:22 +0200 Message-ID: <1413462843.31394.123.camel@yam-132-YW-E178-FTW> Subject: [SH][committed] Fix typo in PR 63260 testcase From: Oleg Endo To: gcc-patches Date: Thu, 16 Oct 2014 12:40:00 -0000 Content-Type: multipart/mixed; boundary="=-OaOMJOXtooPMLkA2b4qv" Mime-Version: 1.0 X-IsSubscribed: yes X-SW-Source: 2014-10/txt/msg01556.txt.bz2 --=-OaOMJOXtooPMLkA2b4qv Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Content-length: 187 Hi, I've committed the attached obvious patch as r216317. Cheers, Oleg gcc/testsuite/ChangeLog: PR target/63260 * gcc.target/sh/pr63260.c: Fix typo __builtin_fabs vs. __builtin_abs. --=-OaOMJOXtooPMLkA2b4qv Content-Disposition: attachment; filename="sh_pr63260_1.patch" Content-Type: text/x-patch; name="sh_pr63260_1.patch"; charset="UTF-8" Content-Transfer-Encoding: 7bit Content-length: 340 Index: gcc/testsuite/gcc.target/sh/pr63260.c =================================================================== --- gcc/testsuite/gcc.target/sh/pr63260.c (revision 216313) +++ gcc/testsuite/gcc.target/sh/pr63260.c (working copy) @@ -26,5 +26,5 @@ double test_3 (double x) { - return __builtin_abs (x); + return __builtin_fabs (x); } --=-OaOMJOXtooPMLkA2b4qv--