From: root@jacob.remcomp.fr (root)
Subject: Re: rint function (continued)
16 Dec 1998 06:35:59 -0800
Message-ID: <m0zq26d-0008SnC.cygnus.gnu-win32@jacob.remcomp.fr>
References: <4.1.19981214084527.035e9470@pop.ni.net>
Content-Type: text
To: jdeifik@weasel.com (Jeff Deifik)
Cc: gnu-win32@cygnus.com

In gnu assembler language rint is:

	.globl	_rint
_rint:
        fldl    4(%esp)	; load double argument in the fpu
        push    %eax	; make space in stack for result
        fistpl  (%esp)	; store the rounded value there as 32 bit int
        popl    %eax	; pop the result from the stack
        ret		; done

This takes the current rounding mode into account, as rint should. Using this
function makes your program pass all your tests.

Enjoy!

-- 
Jacob Navia	Logiciels/Informatique
41 rue Maurice Ravel			Tel 01 48.23.51.44
93430 Villetaneuse 			Fax 01 48.23.95.39
France
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
