From owner-svn-src-projects@freebsd.org Thu Sep 24 21:39:32 2015 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E796AA08F5E for ; Thu, 24 Sep 2015 21:39:32 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.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 D67E3143A; Thu, 24 Sep 2015 21:39:32 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8OLdWrp054116; Thu, 24 Sep 2015 21:39:32 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8OLdW2U054115; Thu, 24 Sep 2015 21:39:32 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201509242139.t8OLdW2U054115@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 24 Sep 2015 21:39:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r288196 - projects/clang370-import/lib/msun/src X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Sep 2015 21:39:33 -0000 Author: dim Date: Thu Sep 24 21:39:31 2015 New Revision: 288196 URL: https://svnweb.freebsd.org/changeset/base/288196 Log: Revert r286421, now that the fix for LLVM PR24343 is in. Modified: projects/clang370-import/lib/msun/src/e_pow.c Modified: projects/clang370-import/lib/msun/src/e_pow.c ============================================================================== --- projects/clang370-import/lib/msun/src/e_pow.c Thu Sep 24 21:20:00 2015 (r288195) +++ projects/clang370-import/lib/msun/src/e_pow.c Thu Sep 24 21:39:31 2015 (r288196) @@ -162,13 +162,7 @@ __ieee754_pow(double x, double y) if(lx==0) { if(ix==0x7ff00000||ix==0||ix==0x3ff00000){ z = ax; /*x is +-0,+-inf,+-1*/ - if(hy<0) { -#ifdef __i386__ - /* XXX: Work around llvm PR 24343: */ - __compiler_membar(); -#endif - z = one/z; /* z = (1/|x|) */ - } + if(hy<0) z = one/z; /* z = (1/|x|) */ if(hx<0) { if(((ix-0x3ff00000)|yisint)==0) { z = (z-z)/(z-z); /* (-1)**non-int is NaN */