From owner-svn-src-all@FreeBSD.ORG Mon Mar 30 14:28:32 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61CF93A3; Mon, 30 Mar 2015 14:28:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D03CA1B; Mon, 30 Mar 2015 14:28:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2UESW6m024214; Mon, 30 Mar 2015 14:28:32 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2UESWpo024213; Mon, 30 Mar 2015 14:28:32 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201503301428.t2UESWpo024213@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Mon, 30 Mar 2015 14:28:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r280853 - head/lib/libcompiler_rt X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 14:28:32 -0000 Author: emaste Date: Mon Mar 30 14:28:31 2015 New Revision: 280853 URL: https://svnweb.freebsd.org/changeset/base/280853 Log: compiler-rt: Build additional quad precision floating point builtins These are needed for arm64 Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D2160 Modified: head/lib/libcompiler_rt/Makefile Modified: head/lib/libcompiler_rt/Makefile ============================================================================== --- head/lib/libcompiler_rt/Makefile Mon Mar 30 14:13:01 2015 (r280852) +++ head/lib/libcompiler_rt/Makefile Mon Mar 30 14:28:31 2015 (r280853) @@ -37,6 +37,7 @@ SRCF= absvdi2 \ clzti2 \ cmpdi2 \ cmpti2 \ + comparetf2 \ ctzdi2 \ ctzsi2 \ ctzti2 \ @@ -50,6 +51,8 @@ SRCF= absvdi2 \ divxc3 \ enable_execute_stack \ eprintf \ + extenddftf2 \ + extendsftf2 \ ffsdi2 \ ffsti2 \ fixdfdi \ @@ -76,6 +79,7 @@ SRCF= absvdi2 \ floatdidf \ floatdisf \ floatdixf \ + floatsitf \ floattidf \ floattisf \ floattixf \ @@ -127,6 +131,8 @@ SRCF= absvdi2 \ subvsi3 \ subvti3 \ trampoline_setup \ + trunctfdf2 \ + trunctfsf2 \ ucmpdi2 \ ucmpti2 \ udivdi3 \