From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.devel Subject: Re: (elisp)Numbers Date: Fri, 24 Oct 2003 15:50:41 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <9178-Fri24Oct2003155041+0200-eliz@elta.co.il> References: <200310210229.h9L2TGl12085@raven.dms.auburn.edu> <9743-Wed22Oct2003174239+0200-eliz@elta.co.il> Reply-To: Eli Zaretskii NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1067004046 27801 80.91.224.253 (24 Oct 2003 14:00:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 24 Oct 2003 14:00:46 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Fri Oct 24 16:00:44 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AD2Ue-0005cA-00 for ; Fri, 24 Oct 2003 16:00:44 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AD2Ue-0000ZD-00 for ; Fri, 24 Oct 2003 16:00:44 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AD2TA-0002Mf-C2 for emacs-devel@quimby.gnus.org; Fri, 24 Oct 2003 09:59:12 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AD2SB-0002FW-0b for emacs-devel@gnu.org; Fri, 24 Oct 2003 09:58:11 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AD2Ra-0001n4-UI for emacs-devel@gnu.org; Fri, 24 Oct 2003 09:58:07 -0400 Original-Received: from [192.114.186.24] (helo=legolas.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AD2QZ-0000zk-VS for emacs-devel@gnu.org; Fri, 24 Oct 2003 09:56:32 -0400 Original-Received: from zaretski (pns03-204-110.inter.net.il [80.230.204.110]) by legolas.inter.net.il (Mirapoint Messaging Server MOS 3.3.7-GR) with ESMTP id AOV85132; Fri, 24 Oct 2003 15:56:27 +0200 (IST) Original-To: Andreas Schwab X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 1.8.9 In-reply-to: (message from Andreas Schwab on Fri, 24 Oct 2003 10:43:06 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:17403 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:17403 > From: Andreas Schwab > Date: Fri, 24 Oct 2003 10:43:06 +0200 > > > > also, i compile with -O0. should that really open-code sqrt? > > Please check that sqrt is not a macro. Yes, it seems that sqrt is expanded into inline code that always issues the FSQRT instruction, and doesn't set errno. However, the glibc manual seems to say that this should only happen under "-ffast-math", and at least with GCC 2.95.4 on fencepost I cannot reproduce this problem, it generates a call to the library function under "-O0".